Home
last modified time | relevance | path

Searched refs:thisType (Results 1 – 17 of 17) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DTypedReferenceValue.java86 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/
Dparttypes.cc519 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/
DFullFrame.java138 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()
DMoreZeroFrame.java120 VerificationType thisType = this.additionalVariables[index]; in equals() local
123 if (!thisType.equals(otherType)) in equals()
/external/python/cpython2/Lib/
Dcsv.py417 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/
DBuilders.cpp134 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/
DStdConverter.java36 JavaType thisType = tf.constructType(getClass()); in _findConverterType() local
37 JavaType convType = thisType.findSuperType(Converter.class); in _findConverterType()
/external/skia/modules/particles/include/
DSkReflected.h74 const Type* thisType = this->getType(); in isOfType() local
75 return thisType == t || thisType->isDerivedFrom(t); in isOfType()
/external/python/cpython3/Lib/
Dcsv.py413 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/
DInvokeDynamicClassInstrumentor.java101 String thisType = type.getDescriptor(); in interceptInvokeVirtualMethodWithInvokeDynamic() local
102 description = "(" + thisType + description.substring(1); in interceptInvokeVirtualMethodWithInvokeDynamic()
DMethodCallSite.java29 public Class<?> thisType() { in thisType() method in MethodCallSite
DInvokeDynamicSupport.java133 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/
DResTable.java603 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/
DDexMaker.java577 CstType thisType = type.constant; in toClassDefItem() local
580 classDefItem = new ClassDefItem(thisType, flags, supertype.constant, in toClassDefItem()
/external/clang/lib/CodeGen/
DCGBlocks.cpp350 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/
DCGBlocks.cpp555 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/
DOpBase.td1448 class StructFieldAttr<string thisName, Attr thisType> {
1453 Attr type = thisType;