/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/gptfdisk/ |
D | parttypes.cc | 519 AType* thisType = allTypes; in ShowAllTypes() local 528 while (thisType != NULL) { in ShowAllTypes() 529 found = thisType->name.find(matchString); in ShowAllTypes() 530 if ((thisType->display == 1) && (found != string::npos)) { // show it in ShowAllTypes() 533 cout << hex << thisType->MBRType << " "; in ShowAllTypes() 534 cout << thisType->name.substr(0, DESC_LENGTH); in ShowAllTypes() 535 for (i = 0; i < (DESC_LENGTH - (thisType->name.substr(0, DESC_LENGTH).length())); i++) in ShowAllTypes() 538 if (thisType->next) { in ShowAllTypes() 550 thisType = thisType->next; in ShowAllTypes() 558 AType* thisType = allTypes; in Valid() local [all …]
|
/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/llvm-project/mlir/lib/Dialect/Affine/EDSC/ |
D | Builders.cpp | 134 auto thisType = lhs.getType(); in createBinaryHandle() local 136 assert(thisType == thatType && "cannot mix types in operators"); in createBinaryHandle() 137 (void)thisType; in createBinaryHandle() 139 if (thisType.isIndex()) { in createBinaryHandle() 141 } else if (thisType.isSignlessInteger()) { in createBinaryHandle() 143 } else if (thisType.isa<FloatType>()) { in createBinaryHandle() 145 } else if (thisType.isa<VectorType, TensorType>()) { in createBinaryHandle() 146 auto aggregateType = thisType.cast<ShapedType>(); in createBinaryHandle()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | StdConverter.java | 36 JavaType thisType = tf.constructType(getClass()); in _findConverterType() local 37 JavaType convType = thisType.findSuperType(Converter.class); in _findConverterType()
|
/external/skia/modules/particles/include/ |
D | SkReflected.h | 74 const Type* thisType = this->getType(); in isOfType() local 75 return thisType == t || thisType->isDerivedFrom(t); in isOfType()
|
/external/python/cpython3/Lib/ |
D | csv.py | 413 for thisType in [int, float, complex]: 415 thisType(row[col]) 421 thisType = len(row[col]) 423 if thisType != columnTypes[col]: 425 columnTypes[col] = thisType
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | InvokeDynamicClassInstrumentor.java | 101 String thisType = type.getDescriptor(); in interceptInvokeVirtualMethodWithInvokeDynamic() local 102 description = "(" + thisType + description.substring(1); in interceptInvokeVirtualMethodWithInvokeDynamic()
|
D | MethodCallSite.java | 29 public Class<?> thisType() { in thisType() method in MethodCallSite
|
D | InvokeDynamicSupport.java | 133 mh = filterArguments(mh, 0, GET_SHADOW.asType(methodType(shadowType, site.thisType()))); in bindCallSite() 158 throw new RuntimeException("failed to bind " + methodCallSite.thisType() + "." in bindWithFallback()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | ResTable.java | 603 final ResTable_type thisType = candidateConfigs.get(c); 604 if (thisType == NULL) { 610 thisConfig = ResTable_config.fromDtoH(thisType.config); 620 final int eindex = thisType.myOffset() + dtohs(thisType.header.headerSize); 625 if (isTruthy(thisType.flags & ResTable_type.FLAG_SPARSE)) { 627 final ByteBuffer buf = thisType.myBuf(); 631 … new ResTable_sparseTypeEntry(buf, sparseIndices.myOffset() + dtohl(thisType.entryCount)), 636 if (result.myOffset() == sparseIndices.myOffset() + dtohl(thisType.entryCount) 646 if (realEntryIndex >= dtohl(thisType.entryCount)) { 651 thisOffset = thisType.entryOffset(realEntryIndex); [all …]
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | DexMaker.java | 577 CstType thisType = type.constant; in toClassDefItem() local 580 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()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGBlocks.cpp | 555 QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType(); in computeBlockInfo() local 559 llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType); in computeBlockInfo() 560 auto TInfo = CGM.getContext().getTypeInfoInChars(thisType); in computeBlockInfo() 565 nullptr, llvmType, thisType)); in computeBlockInfo()
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | OpBase.td | 1448 class StructFieldAttr<string thisName, Attr thisType> { 1453 Attr type = thisType;
|