HomeSort by relevance Sort by last modified time
    Searched refs:Entries (Results 1 - 24 of 24) sorted by null

  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 33 Entries[i].clear(mf, indexes);
38 if (E < CacheEntries && Entries[E].getPhysReg() == PhysReg) {
39 if (!Entries[E].valid(LIUArray, TRI))
40 Entries[E].revalidate();
41 return &Entries[E];
48 // Skip entries that are in use.
49 if (Entries[E].hasRefs()) {
54 Entries[E].reset(PhysReg, LIUArray, TRI, MF);
56 return &Entries[E];
58 llvm_unreachable("Ran out of interference cache entries.")
    [all...]
InterferenceCache.h 109 // much memory. Instead, a fixed number of cache entries are used in a round-
120 // The actual cache entries.
121 Entry Entries[CacheEntries];
  /external/chromium/chrome/browser/sessions/
tab_restore_service.h 35 // To listen for changes to the set of entries managed by the TabRestoreService
67 // Is this entry from the last session? This is set to true for entries that
68 // were closed during the last session, and false for entries that were
115 typedef std::list<Entry*> Entries;
129 // entries has changed.
133 // at least one tab, a Window is created, added to entries and observers are
140 // Removes all entries from the list and notifies observers the list
144 // Returns the entries, ordered with most recently closed entries at the
146 virtual const Entries& entries() const
    [all...]
tab_restore_service.cc 78 // Number of entries (not commands) before we clobber the file and write
121 // deleted and removed from both |id_to_entry| and |entries|. This is used
122 // when creating entries from the backend file.
125 std::vector<TabRestoreService::Entry*>* entries) {
130 entries->erase(std::find(entries->begin(), entries->end(), i->second));
277 for (Entries::iterator i = entries_.begin(); i != entries_.end(); ++i)
293 const TabRestoreService::Entries& TabRestoreService::entries() const function in class:TabRestoreService
715 std::vector<Entry*> entries; local
732 ScopedVector<Entry> entries; local
1000 std::vector<Entry*> entries; local
    [all...]
  /external/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 51 SmallVector<DiagEntry, 8> Entries;
  /external/llvm/utils/TableGen/
EDEmitter.cpp 41 std::vector<std::string> Entries;
46 Entries.push_back(std::string(e));
47 return Entries.size() - 1;
54 unsigned int numEntries = Entries.size();
56 o.indent(i) << Entries[index];
71 unsigned int numEntries = Entries.size();
74 o.indent(i) << Entries[index] << " = " << format("0x%x", flag);
123 std::vector<ConstantEmitter *> Entries;
128 Entries.push_back(e);
133 while (Entries.size())
    [all...]
DAGISelMatcherOpt.cpp 402 // Check to see if all of the leading entries are now opcode checks. If so,
480 Matcher *Entries[2] = { PrevMatcher, MatcherWithoutCTM };
481 Cases[Entry-1].second = new ScopeMatcher(Entries, 2);
  /external/chromium/chrome/browser/ui/webui/
new_tab_ui.h 50 // Converts a list of TabRestoreService entries to the JSON format required
53 const TabRestoreService::Entries& entries,
new_tab_ui.cc 154 NewTabUI::AddRecentlyClosedEntries(service->entries(), &list_value);
542 const TabRestoreService::Entries& entries, ListValue* entry_list_value) {
546 // We filter the list of recently closed to only show 'interesting' entries,
549 for (TabRestoreService::Entries::const_iterator it = entries.begin();
550 it != entries.end() && added_count < max_count; ++it) {
  /external/clang/lib/Basic/
SourceManager.cpp 192 std::vector<LineEntry> &Entries = LineEntries[FID];
194 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
195 "Adding line entries out of order!");
200 if (!Entries.empty()) {
204 FilenameID = Entries.back().FilenameID;
208 Kind = Entries.back().FileKind;
209 IncludeOffset = Entries.back().IncludeOffset;
212 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
227 std::vector<LineEntry> &Entries = LineEntries[FID]
    [all...]
  /external/clang/include/clang/Basic/
SourceManagerInternals.h 85 /// LineEntries - This is a map from FileIDs to a list of line entries (sorted
125 void AddEntry(int FID, const std::vector<LineEntry> &Entries);
  /external/chromium/chrome/browser/
plugin_exceptions_table_model_unittest.cc 112 typedef std::vector<PluginExceptionsTableModel::SettingsEntry> Entries;
113 const Entries& settings = table_model_->settings_;
123 for (Entries::const_iterator it = settings.begin();
jumplist_win.cc 737 const TabRestoreService::Entries& entries = tab_restore_service->entries(); local
738 for (TabRestoreService::Entries::const_iterator it = entries.begin();
739 it != entries.end(); ++it) {
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 480 // simplifies debug range entries.
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 255 for (Map.Entry<? extends K, ? extends V> entry : multimap.entries()) {
1103 final Iterator<Map.Entry<K, V>> entryIterator = entries().iterator();
1163 private transient Collection<Map.Entry<K, V>> entries; typedefs
1179 public Collection<Map.Entry<K, V>> entries() { method
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/
autoboot 461 grep -F "/$file/" $dir/CVS/Entries 2>/dev/null |
  /external/clang/lib/Serialization/
ASTReader.cpp 821 // Parse the line entries
822 std::vector<LineEntry> Entries;
825 assert(FID >= 0 && "Serialized line entries for non-local file.");
829 // Extract the line entries
832 Entries.clear();
833 Entries.reserve(NumEntries);
841 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
844 LineTable.AddEntry(FID, Entries);
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
main.js 475 BrowserBridge.prototype.receivedPassiveLogEntries = function(entries) {
477 // captured log entries before the passively logged entries are received.
479 // When that happens, we create a copy of the actively logged entries, delete
480 // all entries, and, after handling all the passively logged entries, add back
481 // the deleted actively logged entries.
486 this.numPassivelyCapturedEvents_ = entries.length;
487 for (var i = 0; i < entries.length; ++i)
488 entries[i].wasPassivelyCaptured = true
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 551 SmallVector<Entry, 2> Entries;
557 Entries.push_back(entry);
563 i = Entries.begin(), e = Entries.end(); i != e; ++i)
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 5667 milliseconds