HomeSort by: relevance | last modified time | path
    Searched refs:IsMutable (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Descriptor.h 32 bool IsMutable, bool IsActive,
76 const bool IsMutable = false;
89 bool IsMutable);
93 bool IsTemporary, bool IsMutable);
100 bool IsTemporary, bool IsMutable);
107 bool IsMutable);
180 unsigned IsMutable : 1;
Descriptor.cpp 56 static void ctorArrayDesc(Block *B, char *Ptr, bool IsConst, bool IsMutable,
75 Desc->IsMutable = IsMutable || D->IsMutable;
77 Fn(B, ElemLoc, Desc->IsConst, Desc->IsMutable, IsActive, D->ElemDesc);
117 static void ctorRecord(Block *B, char *Ptr, bool IsConst, bool IsMutable,
128 Desc->IsMutable = IsMutable || F->IsMutable;
130 Fn(B, Ptr + SubOff, Desc->IsConst, Desc->IsMutable, Desc->IsActive, F)
    [all...]
Program.cpp 44 /*isMutable=*/false);
230 /*isMutable=*/false);
275 const bool IsMutable = FD->isMutable();
279 IsMutable);
282 /*isTemporary=*/false, IsMutable);
298 bool IsMutable) {
302 return allocateDescriptor(D, Record, IsConst, IsTemporary, IsMutable);
318 IsMutable);
330 IsMutable);
    [all...]
Program.h 104 bool IsMutable = false) {
105 return allocateDescriptor(D, Type, IsConst, IsTemporary, IsMutable);
111 bool IsMutable = false);
InterpBlock.h 74 Desc->CtorFn(this, data(), Desc->IsConst, Desc->IsMutable,
Pointer.h 238 bool isMutable() const { return Base != 0 && getInlineDesc()->IsMutable; }
ByteCodeExprGen.h 153 unsigned allocateLocalPrimitive(DeclTy &&Decl, PrimType Ty, bool IsMutable,
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 229 bool IsMutable : 1;
246 : factory(f), left(l), right(r), height(height), IsMutable(true),
253 /// isMutable - Returns true if the left and right subtree references
259 bool isMutable() const { return IsMutable; }
279 assert(isMutable() && "Mutable flag already removed.");
280 IsMutable = false;
292 assert(isMutable() && "Only a mutable tree can have its height changed.");
356 IsMutable = false;
491 if (N->isMutable() && N->refCount == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclCXX.cpp 1461 if (FD->isMutable())
7197 ConstArg && !F->isMutable()))
7590 if (Field->isMutable())
8733 unsigned Quals, bool IsMutable) {
8735 ConstArg && !IsMutable);
8921 bool IsMutable = Field && Field->isMutable();
8939 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable),
9546 bool ConstRHS = ConstArg && !FI->isMutable();
12863 bool IsMutable = Field && Field->isMutable()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 3483 if (Field->isMutable() &&
3578 bool IsMutable = false) {
3582 if (ObjType.isConstQualified() && !IsMutable)
3745 if (Field->isMutable() &&
3776 ObjType = getSubobjectType(ObjType, Field->getType(), Field->isMutable());

Completed in 54 milliseconds