HomeSort by relevance Sort by last modified time
    Searched defs:pImpl (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/CodeGen/
LiveDebugVariables.h 35 void *pImpl;
  /external/llvm/lib/IR/
InlineAsm.cpp 32 LLVMContextImpl *pImpl = FTy->getContext().pImpl;
33 return pImpl->InlineAsms.getOrCreate(PointerType::getUnqual(FTy), Key);
50 getType()->getContext().pImpl->InlineAsms.remove(this);
Value.cpp 164 auto I = Ctx.pImpl->ValueNames.find(this);
165 assert(I != Ctx.pImpl->ValueNames.end() &&
174 assert(HasName == Ctx.pImpl->ValueNames.count(this) &&
179 Ctx.pImpl->ValueNames.erase(this);
185 Ctx.pImpl->ValueNames[this] = VN;
579 LLVMContextImpl *pImpl = V->getContext().pImpl;
584 ValueHandleBase *&Entry = pImpl->ValueHandles[V];
595 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
637 LLVMContextImpl *pImpl = V->getContext().pImpl
    [all...]
Attributes.cpp 36 LLVMContextImpl *pImpl = Context.pImpl;
42 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
51 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
59 LLVMContextImpl *pImpl = Context.pImpl;
65 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
71 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
108 return pImpl && pImpl->isEnumAttribute()
    [all...]
Type.cpp 218 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; }
219 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; }
220 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; }
221 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; }
222 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; }
223 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; }
224 Type *Type::getTokenTy(LLVMContext &C) { return &C.pImpl->TokenTy; }
225 Type *Type::getX86_FP80Ty(LLVMContext &C) { return &C.pImpl->X86_FP80Ty; }
226 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; }
227 Type *Type::getPPC_FP128Ty(LLVMContext &C) { return &C.pImpl->PPC_FP128Ty;
    [all...]
Constants.cpp 530 LLVMContextImpl *pImpl = Context.pImpl;
531 if (!pImpl->TheTrueVal)
532 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
533 return pImpl->TheTrueVal;
537 LLVMContextImpl *pImpl = Context.pImpl;
538 if (!pImpl->TheFalseVal)
539 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
540 return pImpl->TheFalseVal
    [all...]
  /external/llvm/include/llvm/IR/
LLVMContext.h 42 LLVMContextImpl *const pImpl;
Attributes.h 73 AttributeImpl *pImpl;
74 Attribute(AttributeImpl *A) : pImpl(A) {}
77 Attribute() : pImpl(nullptr) {}
154 bool operator==(Attribute A) const { return pImpl == A.pImpl; }
155 bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
161 ID.AddPointer(pImpl);
187 AttributeSetImpl *pImpl;
203 explicit AttributeSet(AttributeSetImpl *LI) : pImpl(LI) {
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 137 impl_fun_ptr pImpl = &X::template
  /external/opencv3/modules/core/src/
ocl.cpp     [all...]

Completed in 844 milliseconds