HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 476 - 500 of 2649) sorted by null

<<11121314151617181920>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AppendTrack.java 249 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
256 LinkedList<TimeToSampleBox.Entry> returnDecodingEntries = new LinkedList<TimeToSampleBox.Entry>();
260 TimeToSampleBox.Entry e = new TimeToSampleBox.Entry(1, nuDecodingTime);
263 TimeToSampleBox.Entry e = returnDecodingEntries.getLast();
274 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
280 LinkedList<CompositionTimeToSample.Entry> compositionTimeEntries = new LinkedList<CompositionTimeToSample.Entry>();
284 CompositionTimeToSample.Entry e = new CompositionTimeToSample.Entry(1, compositionTime)
    [all...]
  /external/llvm/tools/dsymutil/
DebugMap.cpp 41 typedef std::pair<StringRef, SymbolMapping> Entry;
42 std::vector<Entry> Entries;
48 [](const Entry &LHS, const Entry &RHS) { return LHS.first < RHS.first; });
207 for (auto &Entry : Obj.Symbols)
208 Entries.push_back(std::make_pair(Entry.getKey(), Entry.getValue()));
246 for (auto &Entry : Entries) {
247 auto &Mapping = Entry.second;
251 auto AddressIt = SymbolAddresses.find(Entry.first)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
PDBFileBuilder.cpp 181 SrcHeaderBlockEntry Entry;
182 ::memset(&Entry, 0, sizeof(SrcHeaderBlockEntry));
183 Entry.Size = sizeof(SrcHeaderBlockEntry);
184 Entry.FileSize = IS.Content->getBufferSize();
185 Entry.FileNI = IS.NameIndex;
186 Entry.VFileNI = IS.VNameIndex;
187 Entry.ObjNI = 1;
188 Entry.IsVirtual = 0;
189 Entry.Version =
191 Entry.CRC = CRC.getCRC()
    [all...]
  /external/webrtc/webrtc/base/
diskcache.cc 100 Entry* entry = GetOrCreateEntry(id, true); local
101 if (LS_LOCKED == entry->lock_state)
103 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0))
109 entry->lock_state = LS_LOCKED;
114 Entry* entry = GetOrCreateEntry(id, false); local
115 if (LS_LOCKED != entry->lock_state)
121 ASSERT(previous_size <= entry->size)
142 Entry* entry = GetOrCreateEntry(id, false); local
158 const Entry* entry = GetEntry(id); local
174 const Entry* entry = GetEntry(id); local
179 const Entry* entry = GetEntry(id); local
189 Entry* entry = GetOrCreateEntry(id, false); local
317 const Entry* entry = GetEntry(id); local
    [all...]
  /external/volley/src/test/java/com/android/volley/toolbox/
DiskBasedCacheTest.java 92 Cache.Entry entry = new Cache.Entry(); local
93 entry.data = new byte[0];
94 entry.serverDate = 1234567L;
95 entry.lastModified = 13572468L;
96 entry.ttl = 9876543L;
97 entry.softTtl = 8765432L;
98 entry.etag = "etag";
99 entry.responseHeaders = new HashMap<>()
110 Cache.Entry entry = randomData(511); local
122 Cache.Entry entry = randomData(511); local
134 Cache.Entry entry = randomData(1023); local
145 Cache.Entry entry = randomData(32); local
157 Cache.Entry entry = randomData(32); local
170 Cache.Entry entry = randomData(MAX_SIZE - getEntrySizeOnDisk("oversize")); local
178 Cache.Entry entry = randomData(MAX_SIZE - getEntrySizeOnDisk("maxsize") - 1); local
187 Cache.Entry entry = randomData(MAX_SIZE - getEntrySizeOnDisk("maxsize") - 1); local
213 Cache.Entry entry = local
238 Cache.Entry entry = local
283 Cache.Entry entry = randomData(MAX_SIZE \/ 2 - getEntrySizeOnDisk("entry") - 1); local
300 Cache.Entry entry = randomData(1023); local
323 Cache.Entry entry = randomData(1023); local
456 Cache.Entry entry = new Cache.Entry(); local
608 Cache.Entry entry = new Cache.Entry(); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 176 /// run - This is the main entry point for the type legalizer. This does a
766 std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
767 RemapValue(Entry.first);
768 RemapValue(Entry.second);
769 assert(Entry.first.getNode() && "Operand isn't expanded");
770 Lo = Entry.first;
771 Hi = Entry.second;
785 std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
786 assert(Entry.first.getNode() == 0 && "Node already expanded");
787 Entry.first = Lo
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbCmdSymbol.c 145 EFI_DEBUGGER_SYMBOL_ENTRY *Entry;
151 CandidateAddress = EbdFindSymbolAddress (Address, EdbMatchSymbolTypeNearestAddress, &Object, &Entry);
169 (UINT64)Entry->Rva + Object->BaseAddress,
170 EdbSymbolTypeToStr (Entry->Type),
171 Entry->Name
179 Entry->Rva + Object->BaseAddress,
180 EdbSymbolTypeToStr (Entry->Type),
181 Entry->Name
212 EFI_DEBUGGER_SYMBOL_ENTRY *Entry;
243 Entry = Object->Entry;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Mld.c 19 Create a IP6_MLD_GROUP list entry node and record to IP6 service binding data.
25 @return The created IP6_ML_GROUP list entry or NULL.
35 IP6_MLD_GROUP *Entry;
40 Entry = AllocatePool (sizeof (IP6_MLD_GROUP));
41 if (Entry != NULL) {
42 Entry->RefCnt = 1;
43 Entry->DelayTimer = DelayTimer;
44 Entry->SendByUs = FALSE;
45 IP6_COPY_ADDRESS (&Entry->Address, MulticastAddr);
46 InsertTailList (&IpSb->MldCtrl.Groups, &Entry->Link);
    [all...]
Ip6Input.c 20 Create an empty assemble entry for the packet identified by
27 @return NULL if failed to allocate memory for the entry. Otherwise,
28 the pointer to the just created reassemble entry.
62 Release all the fragments of a packet, then free the assemble entry.
64 @param[in] Assemble The assemble entry to free.
72 LIST_ENTRY *Entry;
76 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Assemble->Fragments) {
77 Fragment = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
79 RemoveEntryList (Entry);
92 the assembled packet's OnFree. It will free the assemble entry,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineModuleInfo.cpp 104 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB];
106 // If we already had an entry for this block, just return it.
107 if (!Entry.Symbols.isNull()) {
108 assert(BB->getParent() == Entry.Fn && "Parent changed");
109 if (Entry.Symbols.is<MCSymbol*>())
110 return Entry.Symbols.get<MCSymbol*>();
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
114 // Otherwise, this is a new entry, create a new symbol for it and add an
115 // entry to BBCallbacks so we can be notified if the BB is deleted or RAUWd.
118 Entry.Index = BBCallbacks.size()-1
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenStore.c 276 LIST_ENTRY *Entry;
283 for (Entry = GetFirstNode (&xs.RegisteredWatches);
284 !IsNull (&xs.RegisteredWatches, Entry);
285 Entry = GetNextNode (&xs.RegisteredWatches, Entry)) {
286 Watch = XENSTORE_WATCH_FROM_LINK (Entry);
750 LIST_ENTRY *Entry;
763 Entry = GetFirstNode (&xs.ReplyList);
764 Message = XENSTORE_MESSAGE_FROM_LINK (Entry);
765 RemoveEntryList (Entry);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Multimaps.java 40 import java.util.Map.Entry;
321 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
322 dest.put(entry.getValue(), entry.getKey());
405 transient Collection<Entry<K, V>> entries;
437 @Override public Collection<Entry<K, V>> entries() {
438 Collection<Entry<K, V>> result = entries;
538 @Override public Set<Map.Entry<K, V>> entries() {
748 * {@link Entry#setValue} operation throws an {@lin
    [all...]
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
ZipParser.java 35 private HashMap<String, Entry> mFileMap;
77 public Entry.Builder getFileEntryBuilder() {
121 mFileMap = new HashMap<String, Entry>();
131 final ZipEntry entry = entries.nextElement(); local
132 final String name = entry.getName();
134 Entry.Builder entryBuilder = Entry.newBuilder();
136 entryBuilder.setContentId(String.format(CODE_ID_FORMAT, entry.hashCode()));
137 entryBuilder.setSize(entry.getSize());
138 if (entry.isDirectory())
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
EntryListFragment.java 47 * List fragment containing a list of Atom entry objects (articles) stored in the local database.
93 FeedContract.Entry._ID,
94 FeedContract.Entry.COLUMN_NAME_TITLE,
95 FeedContract.Entry.COLUMN_NAME_LINK,
96 FeedContract.Entry.COLUMN_NAME_PUBLISHED
114 FeedContract.Entry.COLUMN_NAME_TITLE,
115 FeedContract.Entry.COLUMN_NAME_PUBLISHED
216 FeedContract.Entry.CONTENT_URI, // URI
220 FeedContract.Entry.COLUMN_NAME_PUBLISHED + " desc"); // Sort
283 Log.e(TAG, "Attempt to launch entry with null link")
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 35 * where each list element represents a single entry (post) in the XML feed.
51 /** Parse an Atom feed, returning a collection of Entry objects.
54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
58 public List<Entry> parse(InputStream in)
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
79 private List<Entry> readFeed(XmlPullParser parser)
81 List<Entry> entries = new ArrayList<Entry>();
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
100 // <entry>
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/
D05Slit.aslc 21 UINT8 Entry[EFI_ACPI_SYSTEM_LOCALITIES_ENTRY_COUNT];
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
fcache.c 45 Entry **table=Fcache;
52 Entry **p;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EsrtDxe/
EsrtImpl.c 18 Find Esrt Entry stored in ESRT repository.
20 @param[in] FwClass Firmware class guid in Esrt entry
22 @param[out] Entry Esrt entry returned
24 @retval EFI_SUCCESS Successfully find an Esrt entry
25 @retval EF_NOT_FOUND No Esrt entry found
32 OUT EFI_SYSTEM_RESOURCE_ENTRY *Entry
74 CopyMem(Entry, &EsrtRepository[Index], sizeof(EFI_SYSTEM_RESOURCE_ENTRY));
89 Insert a new ESRT entry into ESRT Cache repository.
91 @param[in] Entry Esrt entry to be set
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 139 llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
140 if (Entry && !Entry->isDeclaration())
201 if (Entry) {
202 assert(Entry->getType() == AliasType &&
204 Alias->takeName(Entry);
205 Entry->replaceAllUsesWith(Alias);
206 Entry->eraseFromParent();
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
KeycodeMapToXml.java 6 import java.util.Map.Entry;
37 for (Entry<Integer, IsoLayoutPosition> entry : keycodeMap.keycodeToIsoLayout().entrySet()) {
38 xmlWriter.addElement("map", ImmutableMap.of("keycode", entry.getKey(), "iso", entry.getValue()));
  /external/dagger2/core/src/main/java/dagger/internal/
MapFactory.java 19 import java.util.Map.Entry;
55 for (Entry<K, Provider<V>> entry: contributingMap.entrySet()) {
56 result.put(entry.getKey(), entry.getValue().get());

Completed in 1363 milliseconds

<<11121314151617181920>>