/external/llvm-project/clang/lib/AST/Interp/ |
D | Descriptor.cpp | 189 bool IsTemporary, bool IsMutable) in Descriptor() argument 191 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor() 198 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument 201 IsMutable(IsMutable), IsTemporary(IsTemporary), IsArray(true), in Descriptor() 207 Descriptor::Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, in Descriptor() argument 211 IsTemporary(IsTemporary), IsArray(true), CtorFn(getCtorArrayPrim(Type)), in Descriptor() 217 bool IsConst, bool IsTemporary, bool IsMutable) in Descriptor() argument 221 IsConst(IsConst), IsMutable(IsMutable), IsTemporary(IsTemporary), in Descriptor() 227 Descriptor::Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, in Descriptor() argument 231 IsConst(true), IsMutable(false), IsTemporary(IsTemporary), IsArray(true), in Descriptor() [all …]
|
D | Descriptor.h | 78 const bool IsTemporary = false; member 88 Descriptor(const DeclTy &D, PrimType Type, bool IsConst, bool IsTemporary, 93 bool IsTemporary, bool IsMutable); 96 Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, UnknownSize); 100 bool IsTemporary, bool IsMutable); 103 Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, UnknownSize); 106 Descriptor(const DeclTy &D, Record *R, bool IsConst, bool IsTemporary,
|
D | Program.cpp | 167 const bool IsTemporary = D.dyn_cast<const Expr *>(); in createGlobal() local 169 Desc = createDescriptor(D, *T, IsConst, IsTemporary); in createGlobal() 171 Desc = createDescriptor(D, Ty.getTypePtr(), IsConst, IsTemporary); in createGlobal() 297 bool IsConst, bool IsTemporary, in createDescriptor() argument 302 return allocateDescriptor(D, Record, IsConst, IsTemporary, IsMutable); in createDescriptor() 317 return allocateDescriptor(D, *T, NumElems, IsConst, IsTemporary, in createDescriptor() 323 createDescriptor(D, ElemTy.getTypePtr(), IsConst, IsTemporary); in createDescriptor() 329 return allocateDescriptor(D, Desc, NumElems, IsConst, IsTemporary, in createDescriptor() 338 return allocateDescriptor(D, *T, IsTemporary, in createDescriptor() 342 createDescriptor(D, ElemTy.getTypePtr(), IsConst, IsTemporary); in createDescriptor() [all …]
|
D | Program.h | 103 bool IsTemporary = false, 105 return allocateDescriptor(D, Type, IsConst, IsTemporary, IsMutable); 110 bool IsConst = false, bool IsTemporary = false,
|
D | InterpBlock.h | 57 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
|
D | ByteCodeExprGen.cpp | 441 bool IsTemporary = false; in allocateLocal() local 447 IsTemporary = true; in allocateLocal() 452 Ty.isConstQualified(), IsTemporary); in allocateLocal()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCContext.cpp | 172 bool IsTemporary) { in createSymbolImpl() argument 186 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl() 188 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl() 190 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl() 192 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl() 194 return createXCOFFSymbolImpl(Name, IsTemporary); in createSymbolImpl() 198 IsTemporary); in createSymbolImpl() 208 bool IsTemporary = CanBeUnnamed; in createSymbol() local 209 if (AllowTemporaryLabels && !IsTemporary) in createSymbol() 210 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol() [all …]
|
/external/llvm/lib/MC/ |
D | MCContext.cpp | 156 bool IsTemporary) { in createSymbolImpl() argument 160 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl() 162 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl() 164 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl() 168 IsTemporary); in createSymbolImpl() 178 bool IsTemporary = CanBeUnnamed; in createSymbol() local 179 if (AllowTemporaryLabels && !IsTemporary) in createSymbol() 180 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol() 197 return createSymbolImpl(&*NameEntry.first, IsTemporary); in createSymbol() 199 assert(IsTemporary && "Cannot rename non-temporary symbols"); in createSymbol()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCContext.cpp | 160 bool IsTemporary) { in createSymbolImpl() argument 164 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl() 166 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl() 168 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl() 170 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl() 172 return new (Name, *this) MCSymbolXCOFF(Name, IsTemporary); in createSymbolImpl() 176 IsTemporary); in createSymbolImpl() 186 bool IsTemporary = CanBeUnnamed; in createSymbol() local 187 if (AllowTemporaryLabels && !IsTemporary) in createSymbol() 188 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol() [all …]
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSymbol.h | 87 unsigned IsTemporary : 1; variable 155 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol() 213 bool isTemporary() const { return IsTemporary; } in isTemporary()
|
D | MCContext.h | 301 bool IsTemporary); 314 bool IsTemporary);
|
/external/llvm/include/llvm/MC/ |
D | MCSymbol.h | 82 unsigned IsTemporary : 1; variable 150 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol() 216 bool isTemporary() const { return IsTemporary; } in isTemporary()
|
D | MCContext.h | 234 bool IsTemporary);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSymbol.h | 87 unsigned IsTemporary : 1; variable 155 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol() 213 bool isTemporary() const { return IsTemporary; } in isTemporary()
|
D | MCContext.h | 289 bool IsTemporary);
|
/external/lzma/CPP/Windows/ |
D | FileFind.h | 60 bool IsTemporary() const { return MatchesMask(FILE_ATTRIBUTE_TEMPORARY); } in IsTemporary() function
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 954 bool IsTemporary = false; in Visit() local 958 IsTemporary = true; in Visit() 970 if (IsTemporary) in Visit()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 1443 bool IsTemporary = false; in Visit() local 1446 IsTemporary = true; in Visit() 1457 if (IsTemporary) in Visit()
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 6662 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local 6664 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaInit.cpp | 8378 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local 8380 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()
|