Home
last modified time | relevance | path

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

/external/gptfdisk/
Dparttypes.cc388 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/
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/v8/tools/clang/rewrite_to_chrome_style/tests/
Dmacros-expected.cc5 #define DEFINE_TYPE_CASTS(thisType, argumentType, argumentName, predicate) \ argument
6 inline thisType* To##thisType(argumentType* argumentName) { \
9 return static_cast<thisType*>(argumentName); \
Dmacros-original.cc5 #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/
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/python/cpython3/Lib/
Dcsv.py414 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/skia/modules/particles/include/
DSkReflected.h74 const Type* thisType = this->getType(); in isOfType() local
75 return thisType == t || thisType->isDerivedFrom(t); in isOfType()
/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()