Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 2 | 2 | 0.951 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 3323 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
2 | 2 | 3350 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
| |||||
/** * Determine whether a char is a URI character (reserved or * unreserved, not including '%' for escaped octets). * * @return true if the char is a URI character, false otherwise */ private static boolean isURICharacter(char p_char) { return (p_char <= '~' && (fgLookupTable[p_char]&MASK_URI_CHARACTER) != 0); } |
| |||||
/** * Determine whether a char is a path character. * * @return true if the char is a path character, false otherwise */ private static boolean isPathCharacter(char p_char) { return (p_char <= '~' && (fgLookupTable[p_char]&MASK_PATH_CHARACTER) != 0); } |
| |||
/** * Determine whether a char is a path character. * * @return true if the char is a path character, false otherwise */ /** * Determine whether a char is a URI character (reserved or * unreserved, not including '%' for escaped octets). * * @return true if the char is a URI character, false otherwise */ private static boolean [[#variable17629320]](char p_char) { return (p_char <= '~' && (fgLookupTable[p_char]& [[#variable176292c0]]) != 0); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#17629320]] | isURICharacter |
1 | 2 | [[#17629320]] | isPathCharacter |
2 | 1 | [[#176292c0]] | MASK_URI_CHARACTER |
2 | 2 | [[#176292c0]] | MASK_PATH_CHARACTER |