HomeSort by relevance Sort by last modified time
    Searched refs:Entries (Results 51 - 75 of 168) sorted by null

1 23 4 5 6 7

  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 313 const RuntimeFunction *Entries =
316 ArrayRef<RuntimeFunction> RuntimeFunctions(Entries, Count);
ARMEHABIPrinter.h 478 /// ARM EHABI Section 5 - Index Table Entries
490 const unsigned Entries = IT->sh_size / IndexTableEntrySize;
492 ListScope E(SW, "Entries");
493 for (unsigned Entry = 0; Entry < Entries; ++Entry) {
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
IdentityMap.java 48 private Entries entries1, entries2;
575 return entries();
578 /** Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each
579 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
580 public Entries<K, V> entries () { method in class:IdentityMap
582 entries1 = new Entries(this);
583 entries2 = new Entries(this);
598 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
617 * this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
    [all...]
IntFloatMap.java 51 private Entries entries1, entries2;
167 for (Entry entry : map.entries())
618 return entries();
621 /** Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each
622 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
623 public Entries entries () { method in class:IntFloatMap
625 entries1 = new Entries(this);
626 entries2 = new Entries(this);
641 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. *
    [all...]
IntIntMap.java 49 private Entries entries1, entries2;
165 for (Entry entry : map.entries())
604 return entries();
607 /** Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each
608 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
609 public Entries entries () { method in class:IntIntMap
611 entries1 = new Entries(this);
612 entries2 = new Entries(this);
627 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. *
    [all...]
IntMap.java 50 private Entries entries1, entries2;
172 for (Entry<V> entry : map.entries())
637 return entries();
640 /** Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each
641 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
642 public Entries<V> entries () { method in class:IntMap
644 entries1 = new Entries(this);
645 entries2 = new Entries(this);
660 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
    [all...]
LongMap.java 50 private Entries entries1, entries2;
172 for (Entry<V> entry : map.entries())
629 return entries();
632 /** Returns an iterator for the entries in the map. Remove is supported. Note that the same iterator instance is returned each
633 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
634 public Entries<V> entries () { method in class:LongMap
636 entries1 = new Entries(this);
637 entries2 = new Entries(this);
652 * time this method is called. Use the {@link Entries} constructor for nested or multithreaded iteration. */
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 410 // Check to see if all of the leading entries are now opcode checks. If so,
488 Matcher *Entries[2] = { PrevMatcher, MatcherWithoutCTM };
489 Cases[Entry-1].second = new ScopeMatcher(Entries);
  /frameworks/rs/api/
rs_value_types.spec 39 Entries of a vector can be accessed using different naming styles.
41 Single entries can be accessed by following the variable name with a dot and:<ul>
52 Multiple entries of a vector can be accessed at once by using an identifier that is
54 equal to the number of entries named.
56 With the example above, the middle two entries can be accessed using
59 The entries don't have to be contiguous or in increasing order. Entries can even be
538 A square 2x2 matrix of floats. The entries are stored in the array at the
549 A square 3x3 matrix of floats. The entries are stored in the array at the
560 A square 4x4 matrix of floats. The entries are stored in the array at th
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntsecapi.h 169 ULONG Entries;
307 ULONG Entries;
440 PLSA_FOREST_TRUST_RECORD *Entries;
456 PLSA_FOREST_TRUST_COLLISION_RECORD *Entries;
    [all...]
control.h     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
translation_helper.py 30 from boto.gs.acl import Entries
90 # when a default object ACL should be private (containing no entries).
677 acl.entries = cls.BotoEntriesFromJson(acl_json, acl)
687 # a private (no entries) default object ACL.
694 if hasattr(acl, 'entries'):
695 return cls.BotoEntriesToJson(acl.entries)
716 entries = Entries(parent)
717 entries.parent = parent
718 entries.entry_list = [cls.BotoEntryFromJson(entry_json
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 316 if (!YamlMF.JumpTableInfo.Entries.empty() &&
615 for (const auto &Entry : YamlJTI.Entries) {
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 373 /// \brief Accelerator entries for the unit, both for the pub*
529 /// original \p Entries.
533 const std::vector<DWARFDebugRangeList::RangeListEntry> &Entries,
536 /// \brief Emit debug_aranges entries for \p Unit and if \p
537 /// DoRangesSection is true, also emit the debug_ranges entries for
544 /// the entries from \p Dwarf and offseting them. Update the
545 /// location attributes to point to the new entries.
711 /// translating the original \p Entries. The debug_range section
717 const std::vector<DWARFDebugRangeList::RangeListEntry> &Entries,
722 int64_t PcOffset = Entries.empty() ? 0 : FuncRange.value() + UnitPcOffset
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 285 Entries.clear();
301 Entry &E = Entries[GV];
317 auto Pos = Entries.find(G);
318 return (Pos != Entries.end()) ? Pos->second : Entry();
323 DenseMap<GlobalVariable *, Entry> Entries;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 134 // This information is not available while emitting .debug_loc entries.
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
lcms2_internal.h 662 _cmsMLUentry* Entries; // Array of pointers to strings allocated in MemPool
    [all...]
cmstypes.c     [all...]
  /toolchain/binutils/binutils-2.25/gold/
merge.cc 108 if (!map->entries.empty())
110 Input_merge_entry& entry(map->entries.back());
139 map->entries.push_back(entry);
157 std::sort(map->entries.begin(), map->entries.end(),
165 std::upper_bound(map->entries.begin(), map->entries.end(),
167 if (p == map->entries.begin())
206 // We know how many entries we are going to add.
209 reserve_unordered_map(initialize_map, map->entries.size() * 2)
    [all...]
  /external/opencv3/3rdparty/include/dshow/
control.h     [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 67 // Add the line entry to this section's entries.
96 // This emits the Dwarf line table for the specified section from the entries
559 // table entries.
716 // and file table entries.
755 const std::vector<MCGenDwarfLabelEntry> &Entries =
757 for (const auto &Entry : Entries) {
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp 1464 int entries = pixel_format == PixelFormat1bppIndexed ? 2 : 256; local
    [all...]
  /external/llvm/lib/CodeGen/
MIRPrinter.cpp 378 // TODO: Serialize target specific constant pool entries.
380 llvm_unreachable("Can't print target specific constant pool entries yet");
409 YamlJTI.Entries.push_back(Entry);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Multimaps.java 321 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
405 transient Collection<Entry<K, V>> entries; field in class:Multimaps.UnmodifiableMultimap
437 @Override public Collection<Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableMultimap
438 Collection<Entry<K, V>> result = entries;
440 entries = result = unmodifiableEntries(delegate.entries());
538 @Override public Set<Map.Entry<K, V>> entries() { method in class:Multimaps.UnmodifiableSetMultimap
539 return Maps.unmodifiableEntrySet(delegate().entries());
747 * Returns an unmodifiable view of the specified collection of entries. The
752 * @param entries the entries for which to return an unmodifiable vie
    [all...]

Completed in 816 milliseconds

1 23 4 5 6 7