/external/gptfdisk/ |
D | parttypes.cc | 388 AType* thisType = allTypes; in ShowAllTypes() local 392 while (thisType != NULL) { in ShowAllTypes() 393 if (thisType->display == 1) { // show it in ShowAllTypes() 396 cout << hex << thisType->MBRType << " "; in ShowAllTypes() 397 cout << thisType->name.substr(0, 20); in ShowAllTypes() 398 for (i = 0; i < (20 - (thisType->name.substr(0, 20).length())); i++) in ShowAllTypes() 401 if (thisType->next) { in ShowAllTypes() 413 thisType = thisType->next; in ShowAllTypes() 421 AType* thisType = allTypes; in Valid() local 424 while ((thisType != NULL) && (!found)) { in Valid() [all …]
|
/external/proguard/src/proguard/evaluation/value/ |
D | TypedReferenceValue.java | 86 String thisType = this.type; in instanceOf() local 89 if (thisType == null) in instanceOf() 95 int thisDimensionCount = ClassUtil.internalArrayTypeDimensionCount(thisType); in instanceOf() 100 thisType = thisType.substring(commonDimensionCount); in instanceOf() 105 (ClassUtil.isInternalPrimitiveType(thisType.charAt(0)) || in instanceOf() 108 return !thisType.equals(otherType) ? NEVER : in instanceOf() 116 thisType = ClassUtil.internalClassNameFromClassType(thisType); in instanceOf() 138 !ClassUtil.isInternalArrayInterfaceName(thisType)) in instanceOf() 151 if (thisType.equals(otherType) || in instanceOf() 222 String thisType = this.type; in generalize() local [all …]
|
/external/v8/tools/clang/rewrite_to_chrome_style/tests/ |
D | macros-original.cc | 5 #define DEFINE_TYPE_CASTS(thisType, argumentType, argumentName, predicate) \ argument 6 inline thisType* to##thisType(argumentType* argumentName) { \ 9 return static_cast<thisType*>(argumentName); \
|
D | macros-expected.cc | 5 #define DEFINE_TYPE_CASTS(thisType, argumentType, argumentName, predicate) \ argument 6 inline thisType* To##thisType(argumentType* argumentName) { \ 9 return static_cast<thisType*>(argumentName); \
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
D | FullFrame.java | 138 VerificationType thisType = this.variables[index]; in equals() local 141 if (!thisType.equals(otherType)) in equals() 149 VerificationType thisType = this.stack[index]; in equals() local 152 if (!thisType.equals(otherType)) in equals()
|
D | MoreZeroFrame.java | 120 VerificationType thisType = this.additionalVariables[index]; in equals() local 123 if (!thisType.equals(otherType)) in equals()
|
/external/python/cpython2/Lib/ |
D | csv.py | 417 for thisType in [int, long, float, complex]: 419 thisType(row[col]) 425 thisType = len(row[col]) 428 if thisType == long: 429 thisType = int 431 if thisType != columnTypes[col]: 433 columnTypes[col] = thisType
|
/external/python/cpython3/Lib/ |
D | csv.py | 414 for thisType in [int, float, complex]: 416 thisType(row[col]) 422 thisType = len(row[col]) 424 if thisType != columnTypes[col]: 426 columnTypes[col] = thisType
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | MethodCallSite.java | 29 public Class<?> thisType() { in thisType() method in MethodCallSite
|
D | InvokeDynamicSupport.java | 130 mh = filterArguments(mh, 0, GET_SHADOW.asType(methodType(shadowType, site.thisType()))); in bindCallSite()
|
D | SandboxClassLoader.java | 1352 String thisType = type.getDescriptor(); in interceptInvokeVirtualMethodWithInvokeDynamic() local 1353 description = "(" + thisType + description.substring(1, description.length()); in interceptInvokeVirtualMethodWithInvokeDynamic()
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | DexMaker.java | 537 CstType thisType = type.constant; in toClassDefItem() local 540 classDefItem = new ClassDefItem(thisType, flags, supertype.constant, in toClassDefItem()
|
/external/clang/lib/CodeGen/ |
D | CGBlocks.cpp | 350 QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType(C); in computeBlockInfo() local 354 llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType); in computeBlockInfo() 356 = CGM.getContext().getTypeInfoInChars(thisType); in computeBlockInfo()
|