HomeSort by relevance Sort by last modified time
    Searched refs:isTemporary (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/llvm/include/llvm/MC/
MCSymbolELF.h 21 MCSymbolELF(const StringMapEntry<bool> *Name, bool isTemporary)
22 : MCSymbol(SymbolKindELF, Name, isTemporary) {}
MCSymbolCOFF.h 29 MCSymbolCOFF(const StringMapEntry<bool> *Name, bool isTemporary)
30 : MCSymbol(SymbolKindCOFF, Name, isTemporary), Type(0) {}
MCSymbolMachO.h 45 MCSymbolMachO(const StringMapEntry<bool> *Name, bool isTemporary)
46 : MCSymbol(SymbolKindMachO, Name, isTemporary) {}
MCSymbol.h 79 /// IsTemporary - True if this is an assembler temporary label, which
82 unsigned IsTemporary : 1;
149 MCSymbol(SymbolKind Kind, const StringMapEntry<bool> *Name, bool isTemporary)
150 : IsTemporary(isTemporary), IsRedefinable(false), IsUsed(false),
215 /// isTemporary - Check if this is an assembler temporary symbol.
216 bool isTemporary() const { return IsTemporary; }
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCSymbol.h 50 /// IsTemporary - True if this is an assembler temporary label, which
53 unsigned IsTemporary : 1;
61 MCSymbol(StringRef name, bool isTemporary)
63 IsTemporary(isTemporary), IsUsed(false) {}
74 /// isTemporary - Check if this is an assembler temporary symbol.
75 bool isTemporary() const { return IsTemporary; }
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
IndicInputMethod.java 75 public void deactivate(boolean isTemporary) {
  /external/swiftshader/third_party/LLVM/lib/MC/
MCContext.cpp 83 bool isTemporary = false;
85 isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
89 assert(isTemporary && "Cannot rename non temporary symbols");
101 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
MachObjectWriter.cpp 589 if (!SA.isTemporary() || !SA.isInSection() || &SecA != &SecB)
600 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
WinCOFFObjectWriter.cpp 250 if (MCData && MCData->getSymbol().isTemporary())
687 if (coff_symbol->MCData->getSymbol().isTemporary() || CrossSection) {
ELFObjectWriter.cpp 502 if (Symbol.isTemporary())
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 165 assertFalse(mockContentProvider.isTemporary());
290 protected boolean isTemporary() {
291 return super.isTemporary();
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
TransliteratorInputMethod.java 271 public void deactivate(boolean isTemporary) {
273 dumpStatus(">>deactivate" + (isTemporary ? " (temporary)" : ""));
274 if (!isTemporary) {
280 dumpStatus("<<deactivate" + (isTemporary ? " (temporary)" : ""));
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 146 if (A->isTemporary())
151 if (B->isTemporary())
219 if (Symbol->isTemporary() && Value) {
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 213 if (Target.getSymA()->getSymbol().isTemporary())
  /packages/apps/Email/provider_src/com/android/email/mail/
Store.java 93 if (!account.isTemporary()) {
  /packages/apps/Email/provider_src/com/android/email/mail/internet/
AuthenticationCache.java 94 if (account.isSaved() && !account.isTemporary()) {
  /external/llvm/lib/IR/
Metadata.cpp 509 assert(isTemporary() && "Expected this to be temporary");
528 assert(isTemporary() && "Expected this to be temporary");
572 if (isTemporary())
597 assert(!N->isTemporary() &&
795 assert(N->isTemporary() && "Expected temporary node");
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 300 if (Symbol->isTemporary() && (Value || !CanUseLocalRelocation)) {
  /external/testng/src/main/java/org/testng/xml/
LaunchSuite.java 45 public boolean isTemporary() {
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 358 /// isTemporary - Whether pSymbol is a local label.
359 virtual bool isTemporary(const LDSymbol& pSymbol) const;
  /external/llvm/include/llvm/IR/
Metadata.h 874 /// If \a isTemporary(), this always returns \c false; if \a isDistinct(),
883 bool isResolved() const { return !isTemporary() && !NumUnresolved; }
887 bool isTemporary() const { return Storage == Temporary; }
891 /// \pre \a isTemporary() must be \c true.
893 assert(isTemporary() && "Expected temporary node");
903 /// \pre No operands (or operands' operands, etc.) have \a isTemporary().
970 /// \pre \a isTemporary().
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 490 TEST_F(MDNodeTest, isTemporary) {
494 EXPECT_FALSE(U->isTemporary());
495 EXPECT_FALSE(D->isTemporary());
496 EXPECT_TRUE(T->isTemporary());
611 EXPECT_TRUE(Temp->isTemporary());
623 EXPECT_TRUE(Temp->isTemporary());
635 EXPECT_TRUE(Temp->isTemporary());
699 EXPECT_TRUE(Temp->isTemporary());
712 EXPECT_TRUE(Temp->isTemporary());
814 EXPECT_TRUE(L->isTemporary());
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 757 if (Symbol.isTemporary())
801 if (Symbol.isTemporary() && Symbol.isUndefined()) {
810 assert(Local || !Symbol.isTemporary());
    [all...]
WinCOFFObjectWriter.cpp 618 if (!Symbol.isTemporary())
665 if (A.isTemporary() && A.isUndefined()) {
729 if (A.isTemporary() || CrossSection) {
    [all...]
MachObjectWriter.cpp 676 (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() &&
688 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
    [all...]

Completed in 833 milliseconds

1 2 3 4