Home
last modified time | relevance | path

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

/external/llvm/lib/MC/
DMCContext.cpp162 bool IsTemporary) { in createSymbolImpl() argument
166 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary); in createSymbolImpl()
168 return new (Name, *this) MCSymbolELF(Name, IsTemporary); in createSymbolImpl()
170 return new (Name, *this) MCSymbolMachO(Name, IsTemporary); in createSymbolImpl()
174 IsTemporary); in createSymbolImpl()
184 bool IsTemporary = CanBeUnnamed; in createSymbol() local
185 if (AllowTemporaryLabels && !IsTemporary) in createSymbol()
186 IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix()); in createSymbol()
200 return createSymbolImpl(&*NameEntry.first, IsTemporary); in createSymbol()
202 assert(IsTemporary && "Cannot rename non-temporary symbols"); in createSymbol()
/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.h221 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.cpp944 bool IsTemporary = false; in Visit() local
948 IsTemporary = true; in Visit()
960 if (IsTemporary) in Visit()
/external/clang/lib/Sema/
DSemaInit.cpp6498 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
6500 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()