Searched defs:exist (Results 1 - 9 of 9) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DSectionSymbolSet.cpp52 bool exist = false; local
54 m_pSectionSymbolMap->insert(&pOutSect, exist);
55 assert(!exist);
H A DBranchIsland.cpp100 bool exist = false; local
102 StubEntryType* entry = m_StubMap.insert(key, exist);
103 if (!exist) {
123 return !exist;
127 bool exist = false; local
129 m_StubMap.insert(key, exist);
H A DELFObjectReader.cpp124 bool exist = false; local
129 signatures().insert((*section)->name(), exist);
131 signatures().insert(signature->name(), exist);
134 if (exist) {
155 bool exist = false; local
159 signatures().insert(name.split(".").second, exist);
160 if (!exist) {
H A DNamePool.cpp70 bool exist = false; local
71 ResolveInfo* old_symbol = m_Table.insert(pName, exist);
73 if (exist && old_symbol->isSymbol()) {
76 exist = false;
88 if (!exist) {
99 // exist and is a symbol
116 bool exist = false; local
117 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
H A DArchive.cpp81 bool exist; local
82 ObjectMemberEntryType* entry = m_ObjectMemberMap.insert(pFileOffset, exist);
83 if (!exist)
85 return !exist;
113 bool exist; local
114 ArchiveMemberEntryType* entry = m_ArchiveMemberMap.insert(pName, exist);
115 if (!exist) {
124 return !exist;
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp69 bool exist; local
70 hashTable->insert(pA, exist);
94 bool exist; local
96 HashTableTy::entry_type* val = hashTable->insert(key, exist);
99 EXPECT_FALSE(exist);
112 bool exist; local
115 entry = hashTable->insert(key, exist);
117 EXPECT_FALSE(exist);
135 bool exist; local
137 hashTable->insert(key, exist);
160 bool exist; local
183 bool exist; local
219 bool exist; local
241 bool exist; local
264 bool exist; local
292 bool exist; local
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DScriptFile.cpp236 bool exist = false; local
238 g_ParserStrPool->insert(std::string(pText, pLength), exist);
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp633 bool exist = false; local
637 script_.renameMap().insert(symbol, exist);
644 if (exist)
652 script_.renameMap().insert(from_real_str, exist);
655 if (exist)
661 bool exist = false; local
665 script_.renameMap().insert(symbol, exist);
672 if (exist)
680 script_.renameMap().insert(from_real_str, exist);
683 if (exist)
693 bool exist = false; local
708 bool exist = false; local
723 bool exist = false; local
738 bool exist = false; local
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/net/
H A DNetworkStatsServiceTest.java1075 private void assertStatsFilesExist(boolean exist) { argument
1077 if (exist) {

Completed in 1528 milliseconds