Searched refs:Entry (Results 1 - 25 of 214) sorted by relevance

123456789

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.h33 struct Entry struct in class:DWARFDeclContext
35 Entry () : function in struct:DWARFDeclContext::Entry
40 Entry (dw_tag_t t, const char *n) : function in struct:DWARFDeclContext::Entry
47 NameMatches (const Entry& rhs) const
74 m_entries.push_back(Entry(tag, name));
86 Entry &
93 const Entry &
104 typedef std::vector<Entry> collection;
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DPredIteratorCache.h43 BasicBlock **&Entry = BlockToPredsMap[BB]; local
44 if (Entry) return Entry;
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
52 std::copy(PredCache.begin(), PredCache.end(), Entry);
53 return Entry;
H A DArrayRecycler.h46 FreeList *Entry = Bucket[Idx];
47 if (!Entry)
49 Bucket[Idx] = Entry->Next;
50 return reinterpret_cast<T*>(Entry);
58 FreeList *Entry = reinterpret_cast<FreeList*>(Ptr); local
61 Entry->Next = Bucket[Idx];
62 Bucket[Idx] = Entry;
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DStringSet.h36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key); local
37 if (Entry.getValue() == '+')
39 Entry.setValue('+');
H A DUniqueVector.h36 unsigned insert(const T &Entry) { argument
38 unsigned &Val = Map[Entry];
47 Vector.push_back(Entry);
53 unsigned idFor(const T &Entry) const {
55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DFormatCache.cpp24 FormatCache::Entry::Entry () : function in class:FormatCache::Entry
33 FormatCache::Entry::Entry (lldb::TypeFormatImplSP format_sp) : function in class:FormatCache::Entry
42 FormatCache::Entry::Entry (lldb::TypeSummaryImplSP summary_sp) : function in class:FormatCache::Entry
51 FormatCache::Entry::Entry (lldb::SyntheticChildrenSP synthetic_sp) : function in class:FormatCache::Entry
60 FormatCache::Entry::Entry (lld function in class:FormatCache::Entry
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatCache.h28 struct Entry struct in class:lldb_private::FormatCache
39 Entry ();
40 Entry (lldb::TypeFormatImplSP);
41 Entry (lldb::TypeSummaryImplSP);
42 Entry (lldb::SyntheticChildrenSP);
43 Entry (lldb::TypeFormatImplSP,lldb::TypeSummaryImplSP,lldb::SyntheticChildrenSP);
72 typedef std::map<ConstString,Entry> CacheMap;
79 Entry&
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dcond_dealtor.hpp57 template<typename Entry, class Allocator>
61 Entry, \
64 template<typename Entry, class Allocator>
69 typename Allocator::template rebind<Entry>::other
/freebsd-10.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugLoc.h23 struct Entry { struct in class:llvm::DWARFDebugLoc
38 SmallVector<Entry, 2> Entries;
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h37 struct Entry struct in class:lldb_private::UniqueCStringMap
39 Entry () : function in struct:lldb_private::UniqueCStringMap::Entry
45 Entry (const char *cstr) : function in struct:lldb_private::UniqueCStringMap::Entry
51 Entry (const char *cstr, const T&v) : function in struct:lldb_private::UniqueCStringMap::Entry
58 operator < (const Entry& rhs) const
75 m_map.push_back (typename UniqueCStringMap<T>::Entry(unique_cstr, value));
79 Append (const Entry &e)
97 typename UniqueCStringMap<T>::Entry e(unique_cstr, value);
102 Insert (const Entry &e)
165 Entry search_entr
[all...]
H A DRangeMap.h175 typedef Range<B,S> Entry; typedef in class:lldb_private::RangeArray
176 typedef llvm::SmallVector<Entry, N> Collection;
188 Append (const Entry &entry)
216 // First we determine if we can combine any of the Entry objects so we
240 // First we determine if we can combine any of the Entry objects so we
324 const Entry *
333 const Entry &
339 Entry *
347 const Entry *
356 BaseLessThan (const Entry
455 typedef Range<B,S> Entry; typedef in class:lldb_private::RangeVector
799 typedef RangeData<B,S,T> Entry; typedef in class:lldb_private::RangeDataArray
1061 typedef RangeData<B,S,T> Entry; typedef in class:lldb_private::RangeDataVector
1384 typedef AddressData<B,T> Entry; typedef in class:lldb_private::AddressDataArray
[all...]
/freebsd-10.3-release/contrib/llvm/lib/IR/
H A DDebugLoc.cpp236 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1]; local
237 assert((this == &Entry.first || this == &Entry.second) &&
240 MDNode *OldScope = Entry.first.get();
241 MDNode *OldInlinedAt = Entry.second.get();
243 "Entry should be non-canonical if either val dropped to null");
253 Entry.first.Idx = Entry.second.Idx = 0;
290 std::pair<DebugRecVH, DebugRecVH> &Entry = Ctx->ScopeInlinedAtRecords[-Idx-1]; local
291 assert((this == &Entry
312 std::pair<DebugRecVH, DebugRecVH> &Entry=Ctx->ScopeInlinedAtRecords[-Idx-1]; local
[all...]
H A DValue.cpp557 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()]; local
558 assert(Entry != 0 && "Value doesn't have any handles?");
559 AddToExistingUseList(&Entry);
571 ValueHandleBase *&Entry = Handles[VP.getPointer()]; local
572 assert(Entry == 0 && "Value really did already have handles?");
573 AddToExistingUseList(&Entry);
626 ValueHandleBase *Entry = pImpl->ValueHandles[V]; local
627 assert(Entry && "Value bit set but no entries exist");
638 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entr
684 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; local
[all...]
H A DValueSymbolTable.cpp80 ValueName &Entry = vmap.GetOrCreateValue(Name); local
81 if (Entry.getValue() == 0) {
82 Entry.setValue(V);
83 //DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": "
85 return &Entry;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Index/
H A DSimpleFormatContext.h52 const FileEntry *Entry = local
54 Sources.overrideFileContents(Entry, Source, true);
55 assert(Entry != NULL);
56 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
/freebsd-10.3-release/contrib/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h31 StringMapEntry<unsigned> &Entry = StringOffset.GetOrCreateValue(Str, -1U); local
32 if (Entry.getValue() == -1U) {
34 Entry.setValue(AggregateString.size());
40 return Entry.getValue();
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.h36 struct Entry { struct in class:AuxVector
40 Entry() : type(0), value(0) { } function in struct:AuxVector::Entry
68 AT_IGNOREPPC = 22, ///< Entry should be ignored.
82 typedef std::vector<Entry> EntryVector;
94 GetEntryName(const Entry &entry) {
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp152 bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
157 const ReduceEntry &Entry);
160 const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop);
165 const ReduceEntry &Entry, bool LiveCPSR,
171 const ReduceEntry &Entry, bool LiveCPSR,
293 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry, argument
296 if ((is2Addr && Entry.PredCC2 == 0) ||
297 (!is2Addr && Entry.PredCC1 == 0)) {
316 } else if ((is2Addr && Entry.PredCC2 == 2) ||
317 (!is2Addr && Entry
367 ReduceLoadStore(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry) argument
528 ReduceSpecial(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
630 ReduceTo2Addr(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
748 ReduceToNarrow(MachineBasicBlock &MBB, MachineInstr *MI, const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop) argument
899 const ReduceEntry &Entry = ReduceTable[OPI->second]; local
[all...]
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp108 int Entry = 0; local
113 Entry = TypeInfos.size();
120 Asm->OutStreamer.AddComment("TypeInfo " + Twine(Entry--));
128 Entry = 0;
134 --Entry;
136 Asm->OutStreamer.AddComment("FilterInfo " + Twine(Entry));
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DInterferenceCache.h38 /// Entry - A cache entry containing interference information for all aliases
40 class Entry { class in class:llvm::InterferenceCache
48 /// RefCount - The total number of Cursor instances referring to this Entry.
96 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {} function in class:llvm::InterferenceCache::Entry
144 Entry Entries[CacheEntries];
147 Entry *get(unsigned PhysReg);
162 Entry *CacheEntry;
166 void setEntry(Entry *E) {
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObjectRegexCommand.h64 struct Entry struct in class:lldb_private::CommandObjectRegexCommand
70 typedef std::list<Entry> EntryCollection;
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h47 struct Entry { struct in class:clang::HeaderSearchOptions
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, function in struct:clang::HeaderSearchOptions::Entry
80 std::vector<Entry> UserEntries;
153 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DPrettyStackTrace.cpp33 static unsigned PrintStack(const PrettyStackTraceEntry *Entry, raw_ostream &OS){ argument
35 if (Entry->getNextEntry())
36 NextID = PrintStack(Entry->getNextEntry(), OS);
40 Entry->print(OS);
/freebsd-10.3-release/contrib/llvm/tools/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;
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dconst_iterator.hpp60 binary_heap_const_iterator_<Value_Type, Entry, Simple, Allocator>
63 binary_heap_const_point_iterator_<Value_Type, Entry, Simple, Allocator>
67 typename Entry,

Completed in 182 milliseconds

123456789