Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 5 | 2 | 0.950 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 4309 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
2 | 2 | 4320 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
3 | 2 | 4331 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
4 | 2 | 4342 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
5 | 2 | 4353 | E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java |
| |||||
/** * Returns true if the specified character is a valid name start * character as defined by production [5] in the XML 1.0 * specification. * * @param c The character to check. */ public static boolean isNameStart(int c) { return c < 0x10000 && (CHARS[c]&MASK_NAME_START) != 0; } // isNameStart(int):boolean |
| |||||
/** * Returns true if the specified character is a valid name * character as defined by production [4] in the XML 1.0 * specification. * * @param c The character to check. */ public static boolean isName(int c) { return c < 0x10000 && (CHARS[c]&MASK_NAME) != 0; } // isName(int):boolean |
| |||||
/** * Returns true if the specified character is a valid NCName start * character as defined by production [4] in Namespaces in XML * recommendation. * * @param c The character to check. */ public static boolean isNCNameStart(int c) { return c < 0x10000 && (CHARS[c]&MASK_NCNAME_START) != 0; } // isNCNameStart(int):boolean |
| |||||
/** * Returns true if the specified character is a valid NCName * character as defined by production [5] in Namespaces in XML * recommendation. * * @param c The character to check. */ public static boolean isNCName(int c) { return c < 0x10000 && (CHARS[c]&MASK_NCNAME) != 0; } // isNCName(int):boolean |
| |||||
/** * Returns true if the specified character is a valid Pubid * character as defined by production [13] in the XML 1.0 * specification. * * @param c The character to check. */ public static boolean isPubid(int c) { return c < 0x10000 && (CHARS[c]&MASK_PUBID) != 0; } // isPubid(int):boolean |
| |||
/** * Returns true if the specified character is a valid Pubid * character as defined by production [13] in the XML 1.0 * specification. * * @param c The character to check. */ /** * Returns true if the specified character is a valid NCName * character as defined by production [5] in Namespaces in XML * recommendation. * * @param c The character to check. */ /** * Returns true if the specified character is a valid NCName start * character as defined by production [4] in Namespaces in XML * recommendation. * * @param c The character to check. */ /** * Returns true if the specified character is a valid name * character as defined by production [4] in the XML 1.0 * specification. * * @param c The character to check. */ /** * Returns true if the specified character is a valid name start * character as defined by production [5] in the XML 1.0 * specification. * * @param c The character to check. */ public static boolean [[#variable17349560]](int c) { return c < 0x10000 && (CHARS[c]& [[#variable173494c0]]) != 0; } // isPubid(int):boolean // isNCName(int):boolean // isNCNameStart(int):boolean // isName(int):boolean // isNameStart(int):boolean |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#17349560]] | isNameStart |
1 | 2 | [[#17349560]] | isName |
1 | 3 | [[#17349560]] | isNCNameStart |
1 | 4 | [[#17349560]] | isNCName |
1 | 5 | [[#17349560]] | isPubid |
2 | 1 | [[#173494c0]] | MASK_NAME_START |
2 | 2 | [[#173494c0]] | MASK_NAME |
2 | 3 | [[#173494c0]] | MASK_NCNAME_START |
2 | 4 | [[#173494c0]] | MASK_NCNAME |
2 | 5 | [[#173494c0]] | MASK_PUBID |