CloneSet564


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2520.950method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
124309
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java
224320
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java
324331
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java
424342
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java
524353
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/ecore/xml/type/internal/DataValue.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
4309
Source File
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


Next
Previous
Clone Instance
2
Line Count
2
Source Line
4320
Source File
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
 * 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


Next
Previous
Clone Instance
3
Line Count
2
Source Line
4331
Source File
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 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


Next
Previous
Clone Instance
4
Line Count
2
Source Line
4342
Source File
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 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


First
Previous
Clone Instance
5
Line Count
2
Source Line
4353
Source File
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 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


Clone AbstractionParameter Count: 2Parameter Bindings

/**
      * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#17349560]]
isNameStart 
12[[#17349560]]
isName 
13[[#17349560]]
isNCNameStart 
14[[#17349560]]
isNCName 
15[[#17349560]]
isPubid 
21[[#173494c0]]
MASK_NAME_START 
22[[#173494c0]]
MASK_NAME 
23[[#173494c0]]
MASK_NCNAME_START 
24[[#173494c0]]
MASK_NCNAME 
25[[#173494c0]]
MASK_PUBID