/tools/tradefederation/core/src/com/android/tradefed/config/ |
GlobalConfiguration.java | 362 ObjTypeInfo typeInfo = getObjTypeMap().get(typeName); 363 if (typeInfo != null && typeInfo.mIsListSupported) { 545 ObjTypeInfo typeInfo = getObjTypeMap().get(typeName); 546 if (typeInfo != null && !typeInfo.mExpectedType.isInstance(configObject)) { 549 typeName, typeInfo.mExpectedType.getCanonicalName(), 552 if (typeInfo != null && !typeInfo.mIsListSupported && objList.size() > 0) {
|
Configuration.java | 432 ObjTypeInfo typeInfo = getObjTypeMap().get(typeName); 433 if (typeInfo != null && typeInfo.mIsListSupported) { 824 ObjTypeInfo typeInfo = getObjTypeMap().get(typeName); 825 if (typeInfo != null && !typeInfo.mExpectedType.isInstance(configObject)) { 828 typeName, typeInfo.mExpectedType.getCanonicalName(), 831 if (typeInfo != null && !typeInfo.mIsListSupported && objList.size() > 0) { [all...] |
/external/javassist/src/main/javassist/bytecode/ |
StackMap.java | 196 typeInfo(pos, tag); 208 public void typeInfo(int pos, byte tag) {} 252 public void typeInfo(int pos, byte tag) { 323 public void typeInfo(int pos, byte tag) { 460 typeInfo(pos, tag);
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
typeinfo.go | 14 // typeInfo holds details for the xml representation of a type. 15 type typeInfo struct { 45 var tinfoMap = make(map[reflect.Type]*typeInfo) 50 // getTypeInfo returns the typeInfo structure with details necessary 52 func getTypeInfo(typ reflect.Type) (*typeInfo, error) { 59 tinfo = &typeInfo{} 270 func addFieldInfo(typ reflect.Type, tinfo *typeInfo, newf *fieldInfo) error {
|
read.go | 364 tinfo *typeInfo 650 func (p *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, parents []string, start *StartElement) (consumed bool, err error) {
|
/prebuilts/go/linux-x86/src/encoding/xml/ |
typeinfo.go | 14 // typeInfo holds details for the xml representation of a type. 15 type typeInfo struct { 45 var tinfoMap = make(map[reflect.Type]*typeInfo) 50 // getTypeInfo returns the typeInfo structure with details necessary 52 func getTypeInfo(typ reflect.Type) (*typeInfo, error) { 59 tinfo = &typeInfo{} 270 func addFieldInfo(typ reflect.Type, tinfo *typeInfo, newf *fieldInfo) error {
|
read.go | 364 tinfo *typeInfo 650 func (p *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, parents []string, start *StartElement) (consumed bool, err error) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
NewXmlFileWizard.java | 35 import com.android.ide.eclipse.adt.internal.wizards.newxmlfile.NewXmlFileCreationPage.TypeInfo; 171 TypeInfo type = mValues.type; 308 TypeInfo typeInfo = NewXmlFileCreationPage.getTypeInfo(folderType); 309 return typeInfo != null && (typeInfo.getDefaultRoot(null /*project*/) != null || 310 typeInfo.getRootSeed() instanceof String); 323 TypeInfo type = NewXmlFileCreationPage.getTypeInfo(folderType); 384 public TypeInfo type;
|
NewXmlFileCreationPage.java | 113 static class TypeInfo { 124 public TypeInfo(String uiName, 242 * TypeInfo, information for each "type" of file that can be created. 244 private static final TypeInfo[] sTypes = { 245 new TypeInfo( 313 new TypeInfo("Values", // UI name 322 new TypeInfo("Drawable", // UI name 331 new TypeInfo("Menu", // UI name 340 new TypeInfo("Color List", // UI name 349 new TypeInfo("Property Animation", // UI nam [all...] |
/external/doclava/src/com/google/doclava/apicheck/ |
ApiFile.java | 27 import com.google.doclava.TypeInfo; 168 final TypeInfo typeInfo = Converter.obtainTypeFromString(qname); 170 final TypeInfo simpleTypeInfo = Converter.obtainTypeFromString(name); 175 fin, false/*isIncluded*/, simpleTypeInfo.qualifiedTypeName(), typeInfo.qualifiedTypeName(), 177 cl.setTypeInfo(typeInfo); 258 method = new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/, 290 ArrayList<TypeInfo> typeParameters = new ArrayList<>(); 291 TypeInfo returnType; 336 typeVariableNames = TypeInfo.typeVariables(typeParameters) [all...] |
XmlApiFile.java | 27 import com.google.doclava.TypeInfo; 121 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ; 122 mCurrentClass.setTypeInfo(typeInfo); 126 ArrayList<TypeInfo> typeParameters = new ArrayList<TypeInfo>(); 147 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return")); 166 new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/, 183 TypeInfo type = Converter.obtainTypeFromString(typeName); 205 TypeInfo type = Converter.obtainTypeFromString(typeName) [all...] |
/external/pdfium/xfa/fxbarcode/qrcode/ |
BC_QRCoderMatrixUtil.cpp | 268 int32_t typeInfo = (ecLevel->GetBits() << 3) | maskPattern; 271 bits->AppendBits(typeInfo, 5, e); 272 int32_t bchCode = CalculateBCHCode(typeInfo, TYPE_INFO_POLY);
|
/prebuilts/go/darwin-x86/src/encoding/gob/ |
type.go | 683 type typeInfo struct { 690 // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo. 698 func lookupTypeInfo(rt reflect.Type) *typeInfo { 699 m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo) 703 func getTypeInfo(ut *userTypeInfo) (*typeInfo, error) { 717 func buildTypeInfo(ut *userTypeInfo, rt reflect.Type) (*typeInfo, error) { 729 info := &typeInfo{id: gt.id()} 764 newm := make(map[reflect.Type]*typeInfo) 765 m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo) 775 func mustGetTypeInfo(rt reflect.Type) *typeInfo { [all...] |
encode.go | 522 func encOpFor(rt reflect.Type, inProgress map[reflect.Type]*encOp, building map[*typeInfo]bool) (*encOp, int) { 634 func compileEnc(ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 665 func getEncEngine(ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 677 func buildEncEngine(info *typeInfo, ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 687 building = make(map[*typeInfo]bool)
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
type.go | 683 type typeInfo struct { 690 // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo. 698 func lookupTypeInfo(rt reflect.Type) *typeInfo { 699 m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo) 703 func getTypeInfo(ut *userTypeInfo) (*typeInfo, error) { 717 func buildTypeInfo(ut *userTypeInfo, rt reflect.Type) (*typeInfo, error) { 729 info := &typeInfo{id: gt.id()} 764 newm := make(map[reflect.Type]*typeInfo) 765 m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo) 775 func mustGetTypeInfo(rt reflect.Type) *typeInfo { [all...] |
encode.go | 522 func encOpFor(rt reflect.Type, inProgress map[reflect.Type]*encOp, building map[*typeInfo]bool) (*encOp, int) { 634 func compileEnc(ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 665 func getEncEngine(ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 677 func buildEncEngine(info *typeInfo, ut *userTypeInfo, building map[*typeInfo]bool) *encEngine { 687 building = make(map[*typeInfo]bool)
|
/external/doclava/src/com/google/doclava/ |
ClassInfo.java | 39 * Contains a ClassInfo and a TypeInfo. 46 private final TypeInfo mTypeInfo; 48 public ClassTypePair(ClassInfo cl, TypeInfo t) { 57 public TypeInfo typeInfo() { 61 public Map<String, TypeInfo> getTypeArgumentMapping() { 62 return TypeInfo.getTypeArgumentMapping(classInfo(), typeInfo()); 140 public void init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
KeyTypeData.java | 221 getTypeInfo(keyTypeDataRes.get("typeInfo")); 448 typeInfo{ 464 TypeInfoType typeInfo = TypeInfoType.valueOf(key); 472 switch (typeInfo) { // allow for expansion
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
KeyTypeData.java | 219 getTypeInfo(keyTypeDataRes.get("typeInfo")); 446 typeInfo{ 462 TypeInfoType typeInfo = TypeInfoType.valueOf(key); 470 switch (typeInfo) { // allow for expansion
|
/frameworks/av/media/vndk/xmlparser/1.0/ |
MediaCodecsXmlParser.cpp | 63 // Find TypeInfo by name. 64 std::vector<TypeInfo>::iterator findTypeInfo( 68 [typeName](const auto &typeInfo) { 69 return typeInfo.mName == typeName;
|
/libcore/luni/src/test/java/libcore/xml/ |
DomTest.java | 59 import org.w3c.dom.TypeInfo; [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 792 int typeInfo = iter.byteAt(pos + 1); 793 switch (typeInfo) { 819 throw new BadBytecode("Invalid array type [pos = " + pos + "]: " + typeInfo); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
callobj.h | 477 HRESULT WINAPI CoGetInterceptorFromTypeInfo(REFIID iidIntercepted,IUnknown *punkOuter,ITypeInfo *typeInfo,REFIID iid,void **ppv);
|
/frameworks/opt/setupwizard/tools/docs/ |
doclava.jar | |
/prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-simpleworkflow/1.11.18/ |
aws-java-sdk-simpleworkflow-1.11.18.jar | |