/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p12.cpp | 11 template <unsigned n> struct Opaque {}; struct 12 template <unsigned n> void expect(Opaque<n> _) {} in expect() 30 Opaque<0> foo(Opaque<0>); 31 Opaque<0> foo(Opaque<1>); 32 Opaque<0> foo(Opaque<2>); 38 Opaque<1> foo(Opaque<1>); 39 Opaque<1> foo(Opaque<3>); 41 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() 42 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() 43 void test2() { Opaque<0> _ = foo(Opaque<2>()); } in test2() [all …]
|
/external/clang/test/Index/ |
D | comment-cplus11-specific.cpp | 9 struct Opaque; 15 typedef inner::Opaque Typedef; 19 using Alias = inner::Opaque; 22 typedef inner::Opaque NoDocTypedef; 25 using NoDocAlias = inner::Opaque;
|
/external/skia/src/gpu/ |
D | GrProcessorAnalysis.h | 18 enum class Opaque { enum 23 constexpr GrProcessorAnalysisColor(Opaque opaque = Opaque::kNo) 24 : fFlags(opaque == Opaque::kYes ? kIsOpaque_Flag : 0) 140 return fIsOpaque ? GrProcessorAnalysisColor::Opaque::kYes in outputColor() 141 : GrProcessorAnalysisColor::Opaque::kNo; in outputColor()
|
/external/skqp/src/gpu/ |
D | GrProcessorAnalysis.h | 18 enum class Opaque { enum 23 constexpr GrProcessorAnalysisColor(Opaque opaque = Opaque::kNo) 24 : fFlags(opaque == Opaque::kYes ? kIsOpaque_Flag : 0) 140 return fIsOpaque ? GrProcessorAnalysisColor::Opaque::kYes in outputColor() 141 : GrProcessorAnalysisColor::Opaque::kNo; in outputColor()
|
/external/tcpdump/tests/ |
D | ospf-gmpls.out | 6 Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 8 31 Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 9 56 Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 3
|
D | ospf2-seg-fault-1-v.out | 6 Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 9
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 326 void *Opaque); 341 void *Opaque; member in __anon33a9a7fb0111::SimpleBindingMemoryManager 346 void *Opaque) in SimpleBindingMemoryManager() argument 347 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager() 359 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager() 365 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection() 372 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, in allocateDataSection() 379 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); in finalizeMemory() 393 void *Opaque, in LLVMCreateSimpleMCJITMemoryManager() argument 408 return wrap(new SimpleBindingMemoryManager(functions, Opaque)); in LLVMCreateSimpleMCJITMemoryManager()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 323 void *Opaque); 338 void *Opaque; member in __anonf56920c30111::SimpleBindingMemoryManager 343 void *Opaque) in SimpleBindingMemoryManager() argument 344 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager() 356 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager() 362 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection() 369 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, in allocateDataSection() 376 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); in finalizeMemory() 390 void *Opaque, in LLVMCreateSimpleMCJITMemoryManager() argument 405 return wrap(new SimpleBindingMemoryManager(functions, Opaque)); in LLVMCreateSimpleMCJITMemoryManager()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 156 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 159 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 162 void *Opaque, char **ErrMsg); 163 typedef void (*LLVMMemoryManagerDestroyCallback)(void *Opaque); 177 void *Opaque,
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 156 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 159 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 162 void *Opaque, char **ErrMsg); 163 typedef void (*LLVMMemoryManagerDestroyCallback)(void *Opaque); 177 void *Opaque,
|
/external/libcxx/benchmarks/ |
D | string.bench.cpp | 65 enum class Opacity { Opaque, Transparent }; enumerator 127 return maybeOpaque("", O == Opacity::Opaque); in makeString() 129 return maybeOpaque(getSmallString(D), O == Opacity::Opaque); in makeString() 131 return maybeOpaque(getLargeString(D), O == Opacity::Opaque); in makeString() 133 return maybeOpaque(getHugeString(D), O == Opacity::Opaque); in makeString() 137 template <class Length, class Opaque> 142 makeString(Length(), DiffType::Control, Opaque())); in run() 147 return "BM_StringConstructDestroyCStr" + Length::name() + Opaque::name(); in name()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | types.h | 48 class Opaque; variable 164 DeclareCastMethod(Opaque); 449 class Opaque : public Type { 451 Opaque(std::string n) : Type(kOpaque), name_(std::move(n)) {} in Opaque() function 452 Opaque(const Opaque&) = default; 456 Opaque* AsOpaque() override { return this; } in AsOpaque() 457 const Opaque* AsOpaque() const override { return this; } in AsOpaque()
|
D | types.cpp | 115 DeclareKindCase(Opaque); in Clone() 159 DeclareKindCase(Opaque); in operator ==() 208 DeclareKindCase(Opaque); in GetHashWords() 505 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() 506 const Opaque* ot = that->AsOpaque(); in IsSameImpl() 511 std::string Opaque::str() const { in str() 517 void Opaque::GetExtraHashWords(std::vector<uint32_t>* words, in GetExtraHashWords()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | types.h | 48 class Opaque; variable 164 DeclareCastMethod(Opaque); 449 class Opaque : public Type { 451 Opaque(std::string n) : Type(kOpaque), name_(std::move(n)) {} in Opaque() function 452 Opaque(const Opaque&) = default; 456 Opaque* AsOpaque() override { return this; } in AsOpaque() 457 const Opaque* AsOpaque() const override { return this; } in AsOpaque()
|
D | types.cpp | 115 DeclareKindCase(Opaque); in Clone() 159 DeclareKindCase(Opaque); in operator ==() 208 DeclareKindCase(Opaque); in GetHashWords() 505 bool Opaque::IsSameImpl(const Type* that, IsSameCache*) const { in IsSameImpl() 506 const Opaque* ot = that->AsOpaque(); in IsSameImpl() 511 std::string Opaque::str() const { in str() 517 void Opaque::GetExtraHashWords(std::vector<uint32_t>* words, in GetExtraHashWords()
|
/external/zlib/src/contrib/ada/ |
D | zlib-thin.adb | 101 Opaque : in Voidp; 105 Strm.opaque := Opaque;
|
/external/catch2/projects/SelfTest/UsageTests/ |
D | Tricky.tests.cpp | 52 struct Opaque struct 55 bool operator ==( const Opaque& o ) const in operator ==() argument 69 Opaque o1, o2;
|
/external/python/pyasn1-modules/pyasn1_modules/ |
D | rfc1155.py | 76 class Opaque(univ.OctetString): class 88 namedtype.NamedType('arbitrary', Opaque())
|
D | rfc1902.py | 81 class Opaque(univ.OctetString): class 117 namedtype.NamedType('arbitrary-value', Opaque()),
|
/external/clang/test/CodeGenObjC/ |
D | fragile-arc.m | 4 @class Opaque; 12 Opaque *strong; 13 __weak Opaque *weak; 43 Opaque *x = strong; 70 Opaque *x = weak;
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | types_test.cpp | 79 TestMultipleInstancesOfTheSameType(Opaque, "testing rocks"); 172 types.emplace_back(new Opaque("")); in GenerateAllTypes() 173 types.emplace_back(new Opaque("hello")); in GenerateAllTypes() 174 types.emplace_back(new Opaque("world")); in GenerateAllTypes()
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | types_test.cpp | 79 TestMultipleInstancesOfTheSameType(Opaque, "testing rocks"); 172 types.emplace_back(new Opaque("")); in GenerateAllTypes() 173 types.emplace_back(new Opaque("hello")); in GenerateAllTypes() 174 types.emplace_back(new Opaque("world")); in GenerateAllTypes()
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.shaders.opaque_type_indexing.txt | 19 Opaque Type Indexing 50 Opaque type indexing tests generate a shader that does multiple reads from a
|
/external/clang/test/Analysis/ |
D | reinterpret-cast.cpp | 5 typedef struct Opaque *Data;
|
/external/skqp/tests/ |
D | AdvancedBlendTest.cpp | 16 static constexpr auto opaque = GrProcessorAnalysisColor::Opaque::kYes; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|