Searched defs:Entry (Results 1 - 25 of 439) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs60 Entry enumerator in enum:Antlr.Runtime.Collections.HashList.HashListEnumerator.EnumerationMode
118 public DictionaryEntry Entry property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
385 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
477 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DRealVector.java58 * Entry e = null;
59 * for(Iterator<Entry> it = iterator(); it.hasNext(); e = it.next()) {
83 public abstract class Entry { class in interface:RealVector
123 Iterator<Entry> iterator();
136 Iterator<Entry> sparseIterator();
/external/apache-http/android/src/android/net/http/
H A DIdleCache.java29 class Entry { class in class:IdleCache
43 private Entry[] mEntries = new Entry[IDLE_CACHE_MAX];
55 mEntries[i] = new Entry();
75 Entry entry = mEntries[i];
99 Entry entry = mEntries[i];
116 Entry entry = mEntries[i];
130 Entry entry = mEntries[i];
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java166 Map.Entry entry = (Map.Entry) it.next();
171 Entry dereferencedEntry = new Entry(key, value);
257 Map.Entry entry = (Map.Entry) it.next();
348 /** Entry implementation */
349 private final static class Entry implements Map.Entry { class in class:WeakHashtable
354 private Entry(Objec method in class:WeakHashtable.Entry
[all...]
/external/caliper/lib/
H A Djersey-core-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ...
H A Djoda-time-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/joda/time/ org/joda/time/base/ ...
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1696 Entry(nullptr), Exit(nullptr), NumInstructions(0), Normal(false) {
1697 Entry = new (A) BasicBlock(A);
1702 add(Entry);
1707 Entry(nullptr), Exit(nullptr), NumInstructions(0), Normal(false) {
1712 bool valid() const { return Entry && Exit && Blocks.size() > 0; }
1728 const BasicBlock *entry() const { return Entry; }
1729 BasicBlock *entry() { return Entry; }
1749 void setEntry(BasicBlock *BB) { Entry = BB; }
1778 BasicBlock *Entry; member in class:clang::threadSafety::SCFG
/external/clang/include/clang/Analysis/
H A DCFG.h718 /// Entry block. The CFG solely represents control-flow; it consists of
824 void setEntry(CFGBlock *B) { Entry = B; }
862 CFGBlock & getEntry() { return *Entry; }
863 const CFGBlock & getEntry() const { return *Entry; }
951 : Entry(nullptr), Exit(nullptr), IndirectGotoBlock(nullptr), NumBlockIDs(0),
963 CFGBlock *Entry; member in class:clang::CFGBlock::CFG
/external/clang/include/clang/Basic/
H A DIdentifierTable.h78 llvm::StringMapEntry<IdentifierInfo*> *Entry; member in class:clang::IdentifierInfo
101 if (Entry) return Entry->getKeyData();
114 if (Entry) return Entry->getKeyLength();
477 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first; local
479 IdentifierInfo *&II = Entry.second;
495 II->Entry = &Entry;
514 auto &Entry local
[all...]
H A DModule.h111 const FileEntry *Entry; member in struct:clang::Module::Header
113 explicit operator bool() { return Entry; }
120 const DirectoryEntry *Entry; member in struct:clang::Module::DirectoryName
122 explicit operator bool() { return Entry; }
H A DSourceManager.h111 /// Can be different from 'Entry' if we overridden the contents of one file
604 /// Positive FileIDs are indexes into this table. Entry 0 indicates an invalid
898 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
899 if (MyInvalid || !Entry.isFile()) {
906 return Entry.getFile().getContentCache()->getBuffer(Diag, *this, Loc,
912 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
913 if (MyInvalid || !Entry.isFile()) {
920 return Entry.getFile().getContentCache()->getBuffer(Diag, *this,
928 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
929 if (MyInvalid || !Entry
958 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
969 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1008 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1020 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1032 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
/external/clang/include/clang/Lex/
H A DHeaderSearchOptions.h23 /// IncludeDirGroup - Identifies the group an include Entry belongs to,
48 struct Entry { struct in class:clang::HeaderSearchOptions
58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, function in struct:clang::HeaderSearchOptions::Entry
81 std::vector<Entry> UserEntries;
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp2048 EditEntry Entry; local
2049 Entry.Offset = unsigned(-1);
2050 return Entry;
2053 EditEntry Entry; local
2054 Entry.Offset = unsigned(-2);
2055 return Entry;
2117 EditEntry Entry;
2138 Entry.File = FE;
2140 if (Val.getAsInteger(10, Entry.Offset))
2143 if (Val.getAsInteger(10, Entry
2174 const EditEntry &Entry = *I; local
2249 EditEntry &Entry = *EI; local
[all...]
/external/clang/lib/AST/
H A DASTImporter.cpp6419 const FileEntry *Entry = ToFileManager.getFile(Cache->OrigEntry->getName()); local
6420 if (!Entry)
6422 ToID = ToSM.createFileID(Entry, ToIncludeLoc,
H A DDeclTemplate.cpp169 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); local
170 return Entry ? SETraits::getDecl(Entry)->getMostRecentDecl() : nullptr;
175 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry,
182 SETraits::getTemplateArgs(Entry),
187 Specializations.InsertNode(Entry, InsertPos);
189 EntryType *Existing = Specializations.GetOrInsertNode(Entry);
197 SETraits::getDecl(Entry));
174 addSpecializationImpl( llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, void *InsertPos) argument
H A DExprConstant.cpp241 PathEntry Entry; local
242 Entry.ArrayIndex = 0;
243 Entries.push_back(Entry);
254 PathEntry Entry; local
256 Entry.BaseOrMember = Value.getOpaqueValue();
257 Entries.push_back(Entry);
269 PathEntry Entry; local
270 Entry.ArrayIndex = Imag;
271 Entries.push_back(Entry);
H A DRecordLayoutBuilder.cpp2940 const ASTRecordLayout *Entry = ASTRecordLayouts[D]; local
2941 if (Entry) return *Entry;
3022 LazyDeclPtr Entry = KeyFunctions[RD]; local
3024 Entry ? Entry.get(getExternalSource()) : computeKeyFunction(*this, RD);
3027 if (Entry.isOffset() || Entry.isValid() != bool(Result))
3093 if (const ASTRecordLayout *Entry = ObjCLayouts[Key])
3094 return *Entry;
[all...]
H A DVTableBuilder.cpp2297 const VTableLayout *&Entry = VTableLayouts[RD]; local
2300 if (Entry)
2305 Entry = CreateVTableLayout(Builder);
3680 VirtualBaseInfo *&Entry = VBaseInfo[RD]; local
3681 if (Entry)
3682 return Entry;
3683 Entry = VBI = new VirtualBaseInfo();
/external/clang/lib/Analysis/
H A DCFGStmtMap.cpp57 CFGBlock *&Entry = SM[CS->getStmt()]; local
58 // If 'Entry' is already initialized (e.g., a terminator was already),
60 if (Entry)
63 Entry = B;
H A DConsumed.cpp518 ConstInfoEntry Entry = findInfo(StmtNode); local
520 if (Entry != PropagationMap.end())
521 return Entry->second;
533 InfoEntry Entry = findInfo(From); local
534 if (Entry != PropagationMap.end())
535 insertInfo(To, Entry->second);
543 InfoEntry Entry = findInfo(From); local
544 if (Entry != PropagationMap.end()) {
545 PropagationInfo& PInfo = Entry->second;
557 InfoEntry Entry local
568 InfoEntry Entry = findInfo(To); local
629 InfoEntry Entry = findInfo(Call->getArg(Index)); local
772 InfoEntry Entry = findInfo(Temp->getSubExpr()); local
896 InfoEntry Entry = findInfo(Ret->getRetValue()); local
913 InfoEntry Entry = findInfo(UOp->getSubExpr()); local
1053 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1068 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1092 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1146 VarMapType::const_iterator Entry = VarMap.find(Var); local
1156 TmpMapType::const_iterator Entry = TmpMap.find(Tmp); local
[all...]
H A DThreadSafety.cpp144 FactID newFact(std::unique_ptr<FactEntry> Entry) { argument
145 Facts.push_back(std::move(Entry));
190 FactID addLock(FactManager &FM, std::unique_ptr<FactEntry> Entry) { argument
191 FactID F = FM.newFact(std::move(Entry));
928 void addLock(FactSet &FSet, std::unique_ptr<FactEntry> Entry,
1184 std::unique_ptr<FactEntry> Entry,
1186 if (Entry->shouldIgnore())
1189 if (!ReqAttr && !Entry->negative()) {
1191 CapabilityExpr NegC = !*Entry;
1197 if (inCurrentScope(*Entry)
[all...]
/external/clang/lib/Basic/
H A DFileManager.cpp415 FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile, argument
417 uint64_t FileSize = Entry->getSize();
423 const char *Filename = Entry->getName();
425 if (Entry->File) {
427 Entry->File->getBuffer(Filename, FileSize,
432 Entry->closeFile();
442 SmallString<128> FilePath(Entry->getName());
489 void FileManager::invalidateCache(const FileEntry *Entry) { argument
490 assert(Entry && "Cannot invalidate a NULL FileEntry");
492 SeenFileEntries.erase(Entry
[all...]
H A DSourceManager.cpp294 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
295 if (!Entry.isFile() || Invalid)
298 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
322 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
323 if (!Entry.isFile() || Invalid)
326 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
420 ContentCache *&Entry = FileInfos[FileEnt]; local
421 if (Entry) return Entry;
424 Entry
453 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(); local
1108 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid); local
1302 const SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
1428 const LineEntry *Entry = local
1464 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1534 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1553 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1699 const FileEntry *Entry = FileContentCache ? FileContentCache->OrigEntry local
1733 const SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1810 const SrcMgr::SLocEntry &Entry = getSLocEntryByID(ID, &Invalid); local
1863 const SLocEntry &Entry = getSLocEntry(SpellFID); local
1977 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
H A DVirtualFileSystem.cpp484 for (const auto &Entry : Entries) {
485 Result += Entry.second->toString(Indent + 2);
710 class Entry { class in namespace:__anon1223
715 virtual ~Entry();
716 Entry(EntryKind K, StringRef Name) : Kind(K), Name(Name) {} function in class:__anon1223::Entry
721 class RedirectingDirectoryEntry : public Entry {
722 std::vector<std::unique_ptr<Entry>> Contents;
727 std::vector<std::unique_ptr<Entry>> Contents,
729 : Entry(EK_Directory, Name), Contents(std::move(Contents)),
732 : Entry(EK_Director
1698 const YAMLVFSEntry &Entry = Entries.front(); local
[all...]

Completed in 542 milliseconds

1234567891011>>