/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | APIInfo.java | 86 public void setDraft() { setType(STA, STA_DRAFT); } in setDraft() 87 public void setStable() { setType(STA, STA_STABLE); } in setStable() 88 public void setDeprecated() { setType(STA, STA_DEPRECATED); } in setDeprecated() 89 public void setObsolete() { setType(STA, STA_OBSOLETE); } in setObsolete() 90 public void setInternal() { setType(STA, STA_INTERNAL); } in setInternal() 91 public void setPackage() { setType(VIS, VIS_PACKAGE); } in setPackage() 92 public void setPublic() { setType(VIS, VIS_PUBLIC); } in setPublic() 93 public void setProtected() { setType(VIS, VIS_PROTECTED); } in setProtected() 94 public void setPrivate() { setType(VIS, VIS_PRIVATE); } in setPrivate() 95 public void setStatic() { setType(STK, STK_STATIC); } in setStatic() [all …]
|
D | CheckAPI.java | 131 private void setType(int typ, int val) { in setType() method in CheckAPI.Info 137 private void setType(int typ, String val) { in setType() method in CheckAPI.Info 258 setType(i, readToken(r)); in read() 291 setType(STA, tagStatus(doc)); in read() 295 setType(VIS, VIS_PUBLIC); in read() 297 setType(VIS, VIS_PROTECTED); in read() 299 setType(VIS, VIS_PRIVATE); in read() 306 setType(STK, STK_STATIC); in read() 313 setType(FIN, FIN_FINAL); in read() 320 setType(CAT, CAT_FIELD); in read() [all …]
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeData.java | 42 static void setType(TypeData td, String className, ClassPool cp) throws BadBytecode { in setType() method in TypeData 46 td.setType(className, cp); in setType() 69 protected abstract void setType(String s, ClassPool cp) throws BadBytecode; in setType() method in TypeData 115 protected void setType(String s, ClassPool cp) throws BadBytecode { in setType() method in TypeData.BasicType 202 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() method in TypeData.TypeName 402 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() method in TypeData.ArrayElement 403 super.setType(typeName, cp); in setType() 404 array.setType(getArrayType(typeName), cp); in setType() 480 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() method in TypeData.UninitData
|
D | Tracer.java | 378 TypeData.setType(stackTypes[stackTop - 1], in doOpcode54_95() 604 TypeData.setType(stackTypes[--stackTop], returnType, classPool); in doOpcode148_201() 646 TypeData.setType(stackTypes[stackTop - 1], "[Ljava.lang.Object;", classPool); in doOpcode148_201() 650 TypeData.setType(stackTypes[--stackTop], "java.lang.Throwable", classPool); in doOpcode148_201() 750 TypeData.setType(stackTypes[stackTop], getFieldClassName(desc, 0), classPool); in doPutField() 752 TypeData.setType(stackTypes[stackTop], desc, classPool); in doPutField() 769 TypeData.setType(stackTypes[--stackTop], className, classPool); in setFieldTarget() 825 TypeData.setType(stackTypes[--stackTop], className, classPool); in doInvokeMethod() 837 TypeData.setType(stackTypes[--stackTop], className, classPool); in doInvokeIntfMethod() 914 TypeData.setType(stackTypes[stackTop], in checkParamTypes() [all …]
|
/external/javassist/src/main/javassist/compiler/ |
D | JvstTypeChecker.java | 211 setType(p); in atMethodArgs() 251 setType(type); in compileUnwrapValue() 257 public void setType(CtClass type) throws CompileError { in setType() method in JvstTypeChecker 258 setType(type, 0); in setType() 261 private void setType(CtClass type, int dim) throws CompileError { in setType() method in JvstTypeChecker 270 setType(type.getComponentType(), dim + 1); in setType()
|
D | JvstCodeGen.java | 348 setType(p); in atMethodArgs() 557 setType(cc); in recordVar() 661 setType(type); in compileUnwrapValue() 665 setType(type); in compileUnwrapValue() 672 public void setType(CtClass type) throws CompileError { in setType() method in JvstCodeGen 673 setType(type, 0); in setType() 676 private void setType(CtClass type, int dim) throws CompileError { in setType() method in JvstCodeGen 685 setType(type.getComponentType(), dim + 1); in setType()
|
/external/llvm/lib/MC/ |
D | MCELFStreamer.cpp | 106 Symbol->setType(ELF::STT_TLS); in EmitLabel() 158 Begin->setType(ELF::STT_SECTION); in ChangeSection() 229 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT)); in EmitSymbolAttribute() 251 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_FUNC)); in EmitSymbolAttribute() 255 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_GNU_IFUNC)); in EmitSymbolAttribute() 259 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT)); in EmitSymbolAttribute() 263 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_TLS)); in EmitSymbolAttribute() 268 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT)); in EmitSymbolAttribute() 272 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_NOTYPE)); in EmitSymbolAttribute() 301 Symbol->setType(ELF::STT_OBJECT); in EmitCommonSymbol() [all …]
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/writer/ |
D | TypeNamesTest.java | 56 DeclaredType setType = in forTypeMirror_parameterizedType() local 58 assertThat(TypeNames.forTypeMirror(setType)) in forTypeMirror_parameterizedType() 64 TypeMirror setType = getType(Set.class); in forTypeMirror_typeVariables() local 65 assertThat(TypeNames.forTypeMirror(setType)) in forTypeMirror_typeVariables()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/ |
D | MappingNode.java | 66 nodes.getKeyNode().setType(keyType); in setOnlyKeyType() 72 nodes.getValueNode().setType(valueType); in setTypes() 73 nodes.getKeyNode().setType(keyType); in setTypes()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
D | SimpleCLexer.m | 235 [state setType:_type]; 265 [state setType:_type]; 295 [state setType:_type]; 325 [state setType:_type]; 355 [state setType:_type]; 385 [state setType:_type]; 415 [state setType:_type]; 445 [state setType:_type]; 475 [state setType:_type]; 505 [state setType:_type]; [all …]
|
/external/snakeyaml/src/test/java/examples/staticstate/ |
D | StaticFieldsWrapperTest.java | 38 JavaBeanWithStaticState.setType("Type3"); in testWrapper() 60 JavaBeanWithStaticState.setType("Type3"); in testLocalTag() 86 JavaBeanWithStaticState.setType("Type3"); in testRootBean()
|
D | Wrapper.java | 29 JavaBeanWithStaticState.setType(type); in createBean() 72 public void setType(String type) { in setType() method in Wrapper
|
D | StaticFieldsTest.java | 42 JavaBeanWithStaticState.setType("Represent"); in testAsJavaBean() 59 JavaBeanWithStaticState.setType("Represent"); in testCustomDump() 107 JavaBeanWithStaticState.setType(valueNode.getValue()); in constructObject()
|
/external/protobuf/examples/ |
D | AddPerson.java | 44 phoneNumber.setType(Person.PhoneType.MOBILE); in PromptForAddress() 46 phoneNumber.setType(Person.PhoneType.HOME); in PromptForAddress() 48 phoneNumber.setType(Person.PhoneType.WORK); in PromptForAddress()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | IntentTest.java | 180 intent.setType("abc"); in testSetData() 190 assertSame(intent, intent.setType("def")); in testSetType() 321 .setType("image/*") in equals_shouldTestActionComponentNameDataAndExtras() 329 .setType("image/*") in equals_shouldTestActionComponentNameDataAndExtras() 350 intentB.setType("other/*"); in equals_shouldTestActionComponentNameDataAndExtras() 353 intentB.setType("image/*"); in equals_shouldTestActionComponentNameDataAndExtras() 411 intent.setType("type"); in testParcelIo_actionTypeCategory() 419 expected.setType("type"); in shouldHaveCreator()
|
D | ActivityTest.java | 73 activity.startActivityForResult(new Intent().setType("audio/*"), 123); in startActivityForResultAndReceiveResult_shouldSendResponsesBackToActivity() 74 activity.startActivityForResult(new Intent().setType("image/*"), 456); in startActivityForResultAndReceiveResult_shouldSendResponsesBackToActivity() 76 shadowOf(activity).receiveResult(new Intent().setType("image/*"), Activity.RESULT_OK, in startActivityForResultAndReceiveResult_shouldSendResponsesBackToActivity() 89 activity.startActivityForResult(new Intent().setType("audio/*"), 123); in startActivityForResultAndReceiveResult_whenNoIntentMatches_shouldThrowException() 90 activity.startActivityForResult(new Intent().setType("image/*"), 456); in startActivityForResultAndReceiveResult_whenNoIntentMatches_shouldThrowException() 92 Intent requestIntent = new Intent().setType("video/*"); in startActivityForResultAndReceiveResult_whenNoIntentMatches_shouldThrowException()
|
/external/skia/src/views/ |
D | SkEvent.cpp | 15 setType(type, typeLen); in initialize() 34 setType(src.fType); in SkEvent() 94 void SkEvent::setType(const char type[], size_t typeLen) in setType() function in SkEvent 115 void SkEvent::setType(const SkString& type) in setType() function in SkEvent 117 setType(type.c_str()); in setType() 128 this->setType(name); in inflate()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
D | SymbolTableLexer.m | 209 [state setType:_type]; 239 [state setType:_type]; 269 [state setType:_type]; 299 [state setType:_type]; 329 [state setType:_type]; 359 [state setType:_type]; 389 [state setType:_type]; 419 [state setType:_type]; 476 [state setType:_type]; 533 [state setType:_type]; [all …]
|
/external/javassist/src/main/javassist/expr/ |
D | FieldAccess.java | 259 gen.setType(fieldType); in doit() 265 c.setType(fieldType); in setReturnType() 310 gen.setType(CtClass.voidType); in doit() 318 c.setType(CtClass.voidType); in setReturnType()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.js | 149 fromToken.setType(tokenType); 156 fromToken.setType(tokenType); 168 setType: function(t, type) {
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.java | 185 fromToken.setType(tokenType); in create() 193 fromToken.setType(tokenType); in create() 209 public void setType(Object t, int type) { in setType() method in BaseTreeAdaptor
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3commontoken.c | 44 static void setType (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type); 83 token->setType(token, ttype); in antlr3CommonTokenNew() 332 token->setType = setType; in antlr3SetTokenAPI() 469 static void setType (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type) in setType() function
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | ContentType.java | 176 mediaRange.setType(contentType); in setContentType() 190 mediaRange.setType(contentType); in setContentType()
|
/external/llvm/include/llvm/Support/ |
D | ELF.h | 808 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType() function 828 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType() function 903 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() function 920 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() function 938 void setType(Elf64_Word t) { setSymbolAndType(getSymbol(), t); } in setType() function 957 void setType(Elf64_Word t) { setSymbolAndType(getSymbol(), t); } in setType() function
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | tokens.py | 66 def setType(self, ttype): member in Token 244 def setType(self, ttype): member in CommonToken 353 def setType(self, ttype): member in ClassicToken
|