Home
last modified time | relevance | path

Searched refs:IsTemporary (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/MC/
DMCContext.cpp156 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-7.0/llvm/lib/MC/
DMCContext.cpp153 bool IsTemporary) { in createSymbolImpl() argument
157 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
159 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
161 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl()
163 return new (Name, *this) MCSymbolWasm(Name, IsTemporary); in createSymbolImpl()
167 IsTemporary); in createSymbolImpl()
177 bool IsTemporary = CanBeUnnamed; in createSymbol() local
178 if (AllowTemporaryLabels && !IsTemporary) in createSymbol()
179 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol()
196 return createSymbolImpl(&*NameEntry.first, IsTemporary); in createSymbol()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCSymbol.h53 unsigned IsTemporary : 1; variable
63 IsTemporary(isTemporary), IsUsed(false) {} in MCSymbol()
75 bool isTemporary() const { return IsTemporary; } in isTemporary()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCSymbol.h86 unsigned IsTemporary : 1; variable
154 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
220 bool isTemporary() const { return IsTemporary; } in isTemporary()
DMCContext.h266 bool IsTemporary);
/external/llvm/include/llvm/MC/
DMCSymbol.h82 unsigned IsTemporary : 1; variable
150 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false), in MCSymbol()
216 bool isTemporary() const { return IsTemporary; } in isTemporary()
DMCContext.h234 bool IsTemporary);
/external/lzma/CPP/Windows/
DFileFind.h60 bool IsTemporary() const { return MatchesMask(FILE_ATTRIBUTE_TEMPORARY); } in IsTemporary() function
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp954 bool IsTemporary = false; in Visit() local
958 IsTemporary = true; in Visit()
970 if (IsTemporary) in Visit()
/external/clang/lib/Sema/
DSemaInit.cpp6662 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
6664 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()