/external/eigen/unsupported/test/ |
D | alignedvector3.cpp | 28 typedef Matrix<Scalar,3,1> RefType; in alignedvector3() typedef 31 RefType r1(RefType::Random()), r2(RefType::Random()), r3(RefType::Random()), in alignedvector3() 32 r4(RefType::Random()), r5(RefType::Random()); in alignedvector3() 64 FastType f6 = RefType::Zero(); in alignedvector3()
|
/external/libchrome/base/threading/ |
D | platform_thread.h | 46 typedef DWORD RefType; typedef 48 typedef pthread_t RefType; 54 explicit PlatformThreadRef(RefType id) in PlatformThreadRef() 66 RefType id_;
|
/external/llvm/test/tools/dsymutil/X86/ |
D | dsym-companion.test | 246 CHECK: RefType: UndefinedNonLazy (0x0) 256 CHECK: RefType: UndefinedNonLazy (0x0) 266 CHECK: RefType: UndefinedNonLazy (0x0) 276 CHECK: RefType: UndefinedNonLazy (0x0) 287 CHECK: RefType: UndefinedNonLazy (0x0) 299 CHECK: RefType: UndefinedNonLazy (0x0) 310 CHECK: RefType: UndefinedNonLazy (0x0) 321 CHECK: RefType: UndefinedNonLazy (0x0) 332 CHECK: RefType: UndefinedNonLazy (0x0)
|
/external/llvm/test/MC/MachO/ARM/ |
D | darwin-ARM-reloc.s | 115 @ CHECK: RefType: UndefinedNonLazy (0x0) 124 @ CHECK: RefType: UndefinedNonLazy (0x0) 133 @ CHECK: RefType: UndefinedNonLazy (0x0) 143 @ CHECK: RefType: UndefinedNonLazy (0x0)
|
D | darwin-Thumb-reloc.s | 95 @ CHECK: RefType: 0x8 105 @ CHECK: RefType: UndefinedNonLazy (0x0)
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | array.h | 31 using RefType = typename std::vector<T>::reference; variable 98 RefType front() { return vec_.front(); } in front() 112 RefType at(size_t offset) { return vec_.at(offset); } in at() 113 RefType operator[](size_t offset) { return at(offset); }
|
D | array_traits_standard.h | 26 static typename Array<T>::RefType GetAt(Array<T>& input, size_t index) {
|
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/ |
D | any_cast_reference.pass.cpp | 94 using RefType = typename std::conditional< in checkThrows() typedef 99 any_cast<RefType>(static_cast<any&&>(a)); in checkThrows()
|
/external/llvm/test/tools/llvm-readobj/ |
D | sections-ext.test | 194 MACHO-I386-NEXT: RefType: UndefinedNonLazy (0x0) 238 MACHO-X86-64-NEXT: RefType: UndefinedNonLazy (0x0) 272 MACHO-X86-64-NEXT: RefType: UndefinedNonLazy (0x0) 345 MACHO-PPC-NEXT: RefType: UndefinedNonLazy (0x0) 435 MACHO-PPC-NEXT: RefType: UndefinedNonLazy (0x0) 563 MACHO-PPC64-NEXT: RefType: UndefinedNonLazy (0x0) 655 MACHO-PPC64-NEXT: RefType: UndefinedNonLazy (0x0) 811 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0) 821 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0) 947 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0)
|
/external/clang/include/clang/AST/ |
D | CanonicalType.h | 605 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>()) 606 return RefType->getPointeeType();
|
D | Type.h | 5436 if (const ReferenceType *RefType = (*this)->getAs<ReferenceType>()) 5437 return RefType->getPointeeType();
|
/external/valgrind/callgrind/ |
D | sim.c | 130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType; typedef 354 CacheResult cachesim_setref_wb(cache_t2* c, RefType ref, UInt set_no, UWord tag) in cachesim_setref_wb() 393 CacheResult cachesim_ref_wb(cache_t2* c, RefType ref, Addr a, UChar size) in cachesim_ref_wb()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 187 QualType RefType = Ctx.getLValueReferenceType(DstType); in castValueFromUintptr() local 189 TmpAddr = CGF.CreateMemTemp(RefType, Twine(Name) + ".ref"); in castValueFromUintptr() 190 auto TmpLVal = CGF.MakeAddrLValue(TmpAddr, RefType); in castValueFromUintptr()
|
/external/clang/lib/AST/ |
D | Type.cpp | 2616 if (const ReferenceType *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local 2617 return RefType->getPointeeType(); in getNonLValueExprType()
|
D | Expr.cpp | 2701 bool RefType = Field->getType()->isReferenceType(); in isConstantInitializer() local 2702 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit)) in isConstantInitializer()
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 4197 const ReferenceType *RefType in FindConversionForRefInit() local 4199 if (RefType && !RefType->getPointeeType()->isFunctionType()) in FindConversionForRefInit() 4217 const ReferenceType *RefType = in FindConversionForRefInit() local 4219 if (!RefType || in FindConversionForRefInit() 4220 (!RefType->isLValueReferenceType() && in FindConversionForRefInit() 4221 !RefType->getPointeeType()->isFunctionType())) in FindConversionForRefInit()
|
D | SemaExpr.cpp | 13496 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ in captureInLambda() local 13497 if (!RefType->getPointeeType()->isFunctionType()) in captureInLambda() 13498 CaptureType = RefType->getPointeeType(); in captureInLambda()
|
/external/vulkan-validation-layers/include/vulkan/ |
D | vulkan.hpp | 181 template <typename RefType> 185 Optional(RefType & reference) { m_ptr = &reference; } in Optional() 188 operator RefType*() const { return m_ptr; } in operator RefType*() 189 RefType const* operator->() const { return m_ptr; } in operator ->() 193 RefType *m_ptr;
|
/external/v8/src/inspector/build/closure-compiler/ |
D | closure-compiler.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |