Home
last modified time | relevance | path

Searched refs:RefType (Results 1 – 19 of 19) sorted by relevance

/external/eigen/unsupported/test/
Dalignedvector3.cpp28 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/
Dplatform_thread.h46 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/
Ddsym-companion.test246 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/
Ddarwin-ARM-reloc.s115 @ CHECK: RefType: UndefinedNonLazy (0x0)
124 @ CHECK: RefType: UndefinedNonLazy (0x0)
133 @ CHECK: RefType: UndefinedNonLazy (0x0)
143 @ CHECK: RefType: UndefinedNonLazy (0x0)
Ddarwin-Thumb-reloc.s95 @ CHECK: RefType: 0x8
105 @ CHECK: RefType: UndefinedNonLazy (0x0)
/external/libmojo/mojo/public/cpp/bindings/
Darray.h31 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); }
Darray_traits_standard.h26 static typename Array<T>::RefType GetAt(Array<T>& input, size_t index) {
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_reference.pass.cpp94 using RefType = typename std::conditional< in checkThrows() typedef
99 any_cast<RefType>(static_cast<any&&>(a)); in checkThrows()
/external/llvm/test/tools/llvm-readobj/
Dsections-ext.test194 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/
DCanonicalType.h605 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
606 return RefType->getPointeeType();
DType.h5436 if (const ReferenceType *RefType = (*this)->getAs<ReferenceType>())
5437 return RefType->getPointeeType();
/external/valgrind/callgrind/
Dsim.c130 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/
DCGStmtOpenMP.cpp187 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/
DType.cpp2616 if (const ReferenceType *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local
2617 return RefType->getPointeeType(); in getNonLValueExprType()
DExpr.cpp2701 bool RefType = Field->getType()->isReferenceType(); in isConstantInitializer() local
2702 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit)) in isConstantInitializer()
/external/clang/lib/Sema/
DSemaOverload.cpp4197 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()
DSemaExpr.cpp13496 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/
Dvulkan.hpp181 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/
Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...