Home
last modified time | relevance | path

Searched full:thistype (Results 1 – 25 of 94) sorted by relevance

1234

/external/swiftshader/tests/VulkanWrapper/
DDrawTester.hpp34 using ThisType = DrawTester; typedef in DrawTester
49 void onCreateVertexBuffers(std::function<void(ThisType &tester)> callback);
54 …torSetLayouts(std::function<std::vector<vk::DescriptorSetLayoutBinding>(ThisType &tester)> callbac…
58 void onCreateVertexShader(std::function<vk::ShaderModule(ThisType &tester)> callback);
62 void onCreateFragmentShader(std::function<vk::ShaderModule(ThisType &tester)> callback);
67 …void onUpdateDescriptorSet(std::function<void(ThisType &tester, vk::CommandPool &commandPool, vk::…
125 std::function<void(ThisType &tester)> createVertexBuffers = [](auto &) {}; in __anoncf6d42890102()
126 …std::function<std::vector<vk::DescriptorSetLayoutBinding>(ThisType &tester)> createDescriptorSetLa… in __anoncf6d42890202()
127 …std::function<vk::ShaderModule(ThisType &tester)> createVertexShader = [](auto &) { return vk::Sha… in __anoncf6d42890302()
128 …std::function<vk::ShaderModule(ThisType &tester)> createFragmentShader = [](auto &) { return vk::S… in __anoncf6d42890402()
[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/tensorflow/tensorflow/core/lib/gtl/
Dint_type.h191 typedef IntType<IntTypeName, ValueType> ThisType; // Syntactic sugar. typedef
227 ThisType& operator++() { // prefix ++
231 const ThisType operator++(int v) { // postfix ++
232 ThisType temp(*this);
236 ThisType& operator--() { // prefix --
240 const ThisType operator--(int v) { // postfix --
241 ThisType temp(*this);
247 constexpr const ThisType operator+() const { return ThisType(value_); }
248 constexpr const ThisType operator-() const { return ThisType(-value_); }
249 constexpr const ThisType operator~() const { return ThisType(~value_); }
[all …]
/external/llvm-project/lld/test/COFF/
Dpdb-thunk.yaml397 ThisType: 4097
414 ThisType: 4097
435 ThisType: 4097
445 ThisType: 4097
474 ThisType: 4097
484 ThisType: 4097
571 ThisType: 4121
588 ThisType: 4121
609 ThisType: 4121
619 ThisType: 4121
[all …]
Dpdb-heapsite.yaml396 ThisType: 4116
409 ThisType: 4116
419 ThisType: 4116
607 ThisType: 4130
620 ThisType: 4130
630 ThisType: 4130
740 ThisType: 4144
750 ThisType: 4144
860 ThisType: 4156
870 ThisType: 4156
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DParentVirtualCallCheck.cpp93 type(anything()).bind("thisType"))))))) in registerMatchers()
108 const auto *ThisTypePtr = Result.Nodes.getNodeAs<PointerType>("thisType"); in check()
111 const auto *ThisType = ThisTypePtr->getPointeeCXXRecordDecl(); in check() local
112 assert(ThisType); in check()
120 if (isParentOf(*CastToType, *ThisType)) in check()
124 getParentsByGrandParent(*CastToType, *ThisType, *MemberDecl); in check()
/external/llvm-project/llvm/test/DebugInfo/PDB/
Dpdbdump-yaml-types.test82 YAML: ThisType: 4101
92 YAML: ThisType: 4101
182 YAML: ThisType: 4111
195 YAML: ThisType: 4111
205 YAML: ThisType: 4111
305 YAML: ThisType: 4123
315 YAML: ThisType: 4123
408 YAML: ThisType: 4134
418 YAML: ThisType: 4134
548 YAML: ThisType: 4144
[all …]
/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/llvm-project/lld/test/COFF/Inputs/
Dpdb-file-statics-b.yaml223 ThisType: 4108
236 ThisType: 4108
249 ThisType: 4108
437 ThisType: 4123
450 ThisType: 4123
460 ThisType: 4123
570 ThisType: 4137
580 ThisType: 4137
690 ThisType: 4149
700 ThisType: 4149
[all …]
Dpdb-file-statics-a.yaml248 ThisType: 4112
261 ThisType: 4112
274 ThisType: 4112
462 ThisType: 4127
475 ThisType: 4127
485 ThisType: 4127
595 ThisType: 4141
605 ThisType: 4141
715 ThisType: 4153
725 ThisType: 4153
[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/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/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/clang/test/CodeGenCXX/
Ddebug-info-method.cpp5 // CHECK: ![[THISTYPE:[0-9]+]] = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: ![[A]]
10 // CHECK: ![[MEMFUNARGS]] = {{.*}}, ![[THISTYPE]],
/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/llvm-project/clang/test/CodeGenCXX/
Ddebug-info-method.cpp6 // CHECK: ![[THISTYPE:[0-9]+]] = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: ![[A]]
10 // CHECK: ![[MEMFUNARGS]] = {{.*}}, ![[THISTYPE]],
/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/clang/lib/CodeGen/
DCGVTables.cpp216 QualType ThisType = MD->getThisType(getContext()); in StartThunk() local
219 ? ThisType in StartThunk()
280 QualType ThisType = MD->getThisType(getContext()); in EmitCallAndReturnForThunk() local
281 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk()
311 ? ThisType in EmitCallAndReturnForThunk()
357 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local
358 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
359 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk()
364 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local
365 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
[all …]
/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()
/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/llvm-project/clang/lib/CodeGen/
DCGVTables.cpp245 QualType ThisType = MD->getThisType(); in StartThunk() local
250 ResultType = ThisType; in StartThunk()
326 QualType ThisType = MD->getThisType(); in EmitCallAndReturnForThunk() local
327 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk()
360 ? ThisType in EmitCallAndReturnForThunk()
408 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local
409 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
410 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk()
415 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local
416 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
[all …]
/external/llvm/test/DebugInfo/COFF/
Dtypes-non-virtual-methods.ll79 ; CHECK: ThisType: A* (0x1004)
160 ; CHECK: ThisType: B* (0x100B)
179 ; CHECK: ThisType: B* (0x100B)
198 ; CHECK: ThisType: B* (0x100B)
/external/llvm-project/llvm/test/DebugInfo/COFF/
Dtypes-non-virtual-methods.ll79 ; CHECK: ThisType: A* const (0x1004)
159 ; CHECK: ThisType: B* const (0x100B)
178 ; CHECK: ThisType: B* const (0x100B)
197 ; CHECK: ThisType: B* const (0x100B)
Dstatic-methods.ll20 ; CHECK-NEXT: ThisType: 0x0
32 ; CHECK-NEXT: ThisType: A* const ({{.*}})
44 ; CHECK-NEXT: ThisType: 0x0

1234