Home
last modified time | relevance | path

Searched refs:myType (Results 1 – 12 of 12) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/test/
DCheckDisplayCollisions.java298 Type myType = Type.getType(path); in handleCheck() local
299 if (myType == null || myType == Type.UNITS_IGNORE) { in handleCheck()
302 String myPrefix = myType.getPrefix(); in handleCheck()
304 if (exclusions.reset(path).find() && myType != Type.UNITS_COORDINATE) { in handleCheck()
313 if (myType == Type.DECIMAL_FORMAT) { in handleCheck()
324 …paths = getPathsWithValue(getResolvedCldrFileToCheck(), path, value, myType, myPrefix, matcher, cu… in handleCheck()
325 } else if (myType == Type.UNITS || myType == Type.UNIT_PREFIX) { in handleCheck()
327 …paths = getPathsWithValue(getResolvedCldrFileToCheck(), path, value, myType, myPrefix, matcher, cu… in handleCheck()
328 } else if (myType == Type.CARDINAL_MINIMAL || myType == Type.ORDINAL_MINIMAL) { in handleCheck()
333 …paths = getPathsWithValue(getResolvedCldrFileToCheck(), path, value, myType, myPrefix, matcher, cu… in handleCheck()
[all …]
DCheckDates.java436 String myType = getLastType(path); in handleCheck() local
437 if (myType == null) { in handleCheck()
477 … if (myType.equals(otherType)) { // we don't care about items with the same type value in handleCheck()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DRawValueTest.java91 RawValue myType = new RawValue("Jackson"); in testRawFromMapToTree() local
94 object.put("key", myType); in testRawFromMapToTree()
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp120 struct myType struct
136 myType<Arg, sizeof...(Args)>* make_array_with_type(const Args&... args) in make_array_with_type()
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp120 struct myType struct
136 myType<Arg, sizeof...(Args)>* make_array_with_type(const Args&... args) in make_array_with_type()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateValidityXml.java100 static Info getInfo(String myType) { in getInfo() argument
101 Info info = types.get(myType); in getInfo()
103 types.put(myType, info = new Info()); in getInfo()
/external/doclava/src/com/google/doclava/
DMethodInfo.java578 TypeInfo myType = mine.type(); in matchesParams() local
579 String qualifiedName = myType.qualifiedTypeName(); in matchesParams()
580 String realType = myType.isPrimitive() ? "" : myType.asClassInfo().qualifiedName(); in matchesParams()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DObjectReferenceImpl.java609 ReferenceTypeImpl myType = (ReferenceTypeImpl)referenceType(); in validateAssignment() local
610 if (!myType.isAssignableTo(destType)) { in validateAssignment()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestDTDAttributes.java496 final DtdType myType; field in TestDTDAttributes.CurrentData.NodeData
508 myType = type; in NodeData()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateTimePatternGenerator.java2815 int myType = (includeMask & (1<<i)) == 0 ? 0 : type[i]; in getDistance() local
2817 if (myType == otherType) continue; // identical (maybe both zero) add 0 in getDistance()
2818 if (myType == 0) { // and other is not in getDistance()
2825 result += Math.abs(myType - otherType); // square of mismatch in getDistance()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateTimePatternGenerator.java2844 int myType = (includeMask & (1<<i)) == 0 ? 0 : type[i]; in getDistance() local
2846 if (myType == otherType) continue; // identical (maybe both zero) add 0 in getDistance()
2847 if (myType == 0) { // and other is not in getDistance()
2854 result += Math.abs(myType - otherType); // square of mismatch in getDistance()
/external/icu/icu4c/source/i18n/
Ddtptngen.cpp2332 int32_t myType = (includeMask&(1<<i))==0 ? 0 : skeleton.type[i]; in getDistance() local
2334 if (myType==otherType) { in getDistance()
2337 if (myType==0) {// and other is not in getDistance()
2347 result += abs(myType - otherType); in getDistance()