Home
last modified time | relevance | path

Searched refs:typeValue (Results 1 – 7 of 7) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/json/
DCldrItem.java183 String typeValue = node.getDistinguishingAttributes().get("type"); in getNodesInPath() local
184 typeValue = typeValue.replaceAll("Asia:Taipei", "Asia/Taipei"); in getNodesInPath()
185 String[] segments = typeValue.split("/"); in getNodesInPath()
/external/smali/examples/AnnotationValues/
DAnnotationWithValues.smali35 .method public abstract typeValue()Ljava/lang/Class;
62 typeValue = L10;
DMain.smali5 … shortValue=3, stringValue=8, subAnnotationValue=@SubAnnotation(stringValue=9), typeValue=class 10)
/external/icu/icu4c/source/i18n/
Ddtptngen.cpp1486 int32_t typeValue = row->field; in adjustFieldTypes() local
1490 if ((flags & kDTPGFixFractionalSeconds) != 0 && typeValue == UDATPG_SECOND_FIELD) { in adjustFieldTypes()
1493 } else if (dtMatcher->skeleton.type[typeValue]!=0) { in adjustFieldTypes()
1516 UChar reqFieldChar = dtMatcher->skeleton.original.getFieldChar(typeValue); in adjustFieldTypes()
1517 int32_t reqFieldLen = dtMatcher->skeleton.original.getFieldLength(typeValue); in adjustFieldTypes()
1521 … if ( (typeValue==UDATPG_HOUR_FIELD && (options & UDATPG_MATCH_HOUR_FIELD_LENGTH)==0) || in adjustFieldTypes()
1522 … (typeValue==UDATPG_MINUTE_FIELD && (options & UDATPG_MATCH_MINUTE_FIELD_LENGTH)==0) || in adjustFieldTypes()
1523 … (typeValue==UDATPG_SECOND_FIELD && (options & UDATPG_MATCH_SECOND_FIELD_LENGTH)==0) ) { in adjustFieldTypes()
1526 … int32_t skelFieldLen = specifiedSkeleton->original.getFieldLength(typeValue); in adjustFieldTypes()
1528 UBool skelFieldIsNumeric = (specifiedSkeleton->type[typeValue] > 0); in adjustFieldTypes()
[all …]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DConfigurationAnnotations.java129 public TypeMirror apply(AnnotationValue typeValue) {
130 return TO_TYPE.visit(typeValue);
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestPaths.java356 String typeValue = pathParts.getAttributeValue(-1, "type"); in TestNonLdml() local
357 if ("TODO".equals(typeValue) in TestNonLdml()
358 || "locale".equals(typeValue)) { in TestNonLdml()
/external/clang/lib/CodeGen/
DCGException.cpp949 llvm::Value *typeValue = handler.Type.RTTI; in emitCatchDispatchBlock() local
952 assert(typeValue && "fell into catch-all case!"); in emitCatchDispatchBlock()
953 typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy); in emitCatchDispatchBlock()
979 CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue); in emitCatchDispatchBlock()