/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/ |
entry_pred.hpp | 69 entry; typedef in struct:__gnu_pbds::detail::entry_pred 83 operator()(entry p_v) const
|
/bionic/libc/bionic/ |
pthread-atfork.c | 111 struct atfork_t *entry = malloc(sizeof(struct atfork_t)); local 113 if (entry == NULL) { 117 entry->prepare = prepare; 118 entry->parent = parent; 119 entry->child = child; 122 CIRCLEQ_INSERT_TAIL(&atfork_head, entry, entries);
|
/external/chromium_org/net/tools/gdig/ |
file_net_log.cc | 23 void FileNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { 25 DCHECK(entry.source().IsValid()); 27 const char* source = NetLog::SourceTypeToString(entry.source().type); 28 const char* type = NetLog::EventTypeToString(entry.type()); 30 scoped_ptr<Value> param_value(entry.ParametersToValue()); 45 entry.source().id, source, type, params.c_str());
|
/external/chromium_org/sync/engine/ |
process_updates_command_unittest.cc | 51 MutableEntry entry(&trans, syncable::CREATE_NEW_UPDATE_ITEM, 53 ASSERT_TRUE(entry.good()); 55 entry.Put(syncable::BASE_VERSION, 1); 56 entry.Put(syncable::SERVER_VERSION, 1); 57 entry.Put(syncable::NON_UNIQUE_NAME, item_id); 58 entry.Put(syncable::PARENT_ID, Id::CreateFromServerId(parent_id)); 61 entry.Put(syncable::SERVER_SPECIFICS, default_specifics); 124 syncable::Entry entry(&trans, syncable::GET_BY_ID, server_id); 125 ASSERT_TRUE(entry.good()) [all...] |
syncer_util.cc | 25 #include "sync/syncable/entry.h" 43 using syncable::Entry; 77 // Expected entry points of this function: 88 // 1) Client has entry for tag already, ID is server style, matches 89 // 2) Client has entry for tag already, ID is server, doesn't match. 90 // 3) Client has entry for tag already, ID is local, (never matches) 91 // 4) Client has no entry for tag 94 // work just fine. Update will end up in the proper entry, via ID lookup. 100 // this update gets targeted at the correct local entry; we expect conflict 104 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
entry_x86-64_tls.h | 89 entry_patch(mapi_func entry, int slot) 91 char *code = (char *) entry; 106 mapi_func entry; local 120 entry = (mapi_func) code; 121 entry_patch(entry, slot); 123 return entry;
|
/external/mesa3d/src/mapi/mapi/ |
entry_x86-64_tls.h | 89 entry_patch(mapi_func entry, int slot) 91 char *code = (char *) entry; 106 mapi_func entry; local 120 entry = (mapi_func) code; 121 entry_patch(entry, slot); 123 return entry;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
TwoSecondIntersectionFinder.java | 33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) { 34 duration += entry.getCount() * entry.getDelta(); 43 List<TimeToSampleBox.Entry> entries = track.getDecodingTimeEntries(); 64 for (TimeToSampleBox.Entry entry : entries) { 65 for (int i = 0; i < entry.getCount(); i++) { 71 time += entry.getDelta();
|
/external/srec/portable/include/ |
phashtable.h | 67 * hash table is increased and each entry is put in its new linked list based 218 * Retrieves the hash entry corresponding to the key. 221 * @param key The key for which to retrieve the hash entry. 222 * @param entry The entry associated with the key. Cannot be NULL. 227 PHashTableEntry **entry); 230 * Returns the key and value associated with this entry. Both key and values 231 * can be deleted after removing the entry from the table. 233 * @param entry The hashtable entry [all...] |
/external/srec/portable/src/ |
PFileSystemImpl.c | 80 PHashTableEntry* entry; local 88 CHKLOG(rc, PHashTableEntryGetFirst(PFileSystemPathMap, &entry)); 89 while (entry != NULL) 91 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)NULL)); 92 oldEntry = entry; 93 CHKLOG(rc, PHashTableEntryAdvance(&entry));
|
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/ |
SimpleRecipientChip.java | 38 public SimpleRecipientChip(final RecipientEntry entry) { 39 mDisplay = entry.getDisplayName(); 40 mValue = entry.getDestination().trim(); 41 mContactId = entry.getContactId(); 42 mDataId = entry.getDataId(); 43 mEntry = entry;
|
/libcore/luni/src/main/java/java/util/ |
MapEntry.java | 21 * MapEntry is an internal class which provides an implementation of Map.Entry. 23 class MapEntry<K, V> implements Map.Entry<K, V>, Cloneable { 29 RT get(MapEntry<KT, VT> entry); 55 if (object instanceof Map.Entry) { 56 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object; local 57 return (key == null ? entry.getKey() == null : key.equals(entry 59 && (value == null ? entry.getValue() == null : valu [all...] |
AbstractMap.java | 30 * performs a linear iteration of the entry set. Subclasses should override such 49 implements Map.Entry<K, V>, Serializable { 63 public SimpleImmutableEntry(Map.Entry<? extends K, ? extends V> copyFrom) { 88 if (object instanceof Map.Entry) { 89 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object; local 90 return (key == null ? entry.getKey() == null : key.equals(entry 92 && (value == null ? entry.getValue() == null : valu 152 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object; local 285 Map.Entry<K, V> entry = it.next(); local 292 Map.Entry<K, V> entry = it.next(); local 395 Map.Entry<K, V> entry = it.next(); local 403 Map.Entry<K, V> entry = it.next(); local 438 Map.Entry<K, V> entry = it.next(); local [all...] |
/system/media/camera/docs/ |
metadata_parser_xml.py | 121 entry_filter = lambda x: x.name == 'entry' or x.name == 'clone' 122 for entry in self.soup.find_all(entry_filter): 123 if entry.name == 'entry': 125 'name': fully_qualified_name(entry), 126 'type': entry['type'], 127 'kind': find_kind(entry), 128 'type_notes': entry.attrs.get('type_notes') 131 d2 = self._parse_entry(entry) 135 'name': entry['entry'] [all...] |
/external/chromium_org/chrome/utility/importer/ |
bookmark_html_reader_unittest.cc | 139 void ExpectFirstFirefox2Bookmark(const ImportedBookmarkEntry& entry) { 140 EXPECT_EQ(ASCIIToUTF16("Empty"), entry.title); 141 EXPECT_TRUE(entry.is_folder); 142 EXPECT_EQ(base::Time::FromTimeT(1295938143), entry.creation_time); 143 EXPECT_EQ(1U, entry.path.size()); 144 if (entry.path.size() == 1) 145 EXPECT_EQ(ASCIIToUTF16("Empty's Parent"), entry.path.front()); 148 void ExpectSecondFirefox2Bookmark(const ImportedBookmarkEntry& entry) { 149 EXPECT_EQ(ASCIIToUTF16("[Tamura Yukari.com]"), entry.title); 150 EXPECT_FALSE(entry.is_folder) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
protocol_parser_unittest.cc | 33 SBEntry* entry = chunks[0].hosts[0].entry; local 34 EXPECT_TRUE(entry->IsAdd()); 35 EXPECT_TRUE(entry->IsPrefix()); 36 EXPECT_EQ(entry->prefix_count(), 0); 39 entry = chunks[0].hosts[1].entry; 40 EXPECT_TRUE(entry->IsAdd()); 41 EXPECT_TRUE(entry->IsPrefix()); 42 EXPECT_EQ(entry->prefix_count(), 3) 86 SBEntry* entry = chunks[0].hosts[0].entry; local 117 SBEntry* entry = chunks[0].hosts[0].entry; local 263 SBEntry* entry = chunks[0].hosts[0].entry; local 324 SBEntry* entry = chunks[0].hosts[0].entry; local 855 SBEntry* entry = chunks[0].hosts[0].entry; local 918 SBEntry* entry = chunks[0].hosts[0].entry; local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
SimpleImmutableEntryTest.java | 24 import java.util.Map.Entry; 41 Entry entryToPut = (Entry)map.entrySet().iterator().next(); 42 Entry testEntry = new AbstractMap.SimpleImmutableEntry(entryToPut); 47 entryToPut = (Entry)map.entrySet().iterator().next(); 61 Entry entry = new AbstractMap.SimpleImmutableEntry<Integer, String>(1,"test"); local 62 assertEquals(1,entry.getKey()); 63 entry = new AbstractMap.SimpleImmutableEntry(null,null); 64 assertNull(entry.getKey()) 68 Entry entry = new AbstractMap.SimpleImmutableEntry<Integer, String>(1,"test"); local 75 Entry entry = new AbstractMap.SimpleImmutableEntry<Integer, String>(1,"test"); local 93 Entry entry = new AbstractMap.SimpleImmutableEntry<Integer, String>(1,"test"); local [all...] |
/external/chromium/chrome/browser/prefs/ |
pref_value_map.cc | 19 const Map::const_iterator entry = prefs_.find(key); local 20 if (entry != prefs_.end()) { 22 *value = entry->second; 30 const Map::const_iterator entry = prefs_.find(key); local 31 if (entry != prefs_.end()) { 33 *value = entry->second; 43 const Map::iterator entry = prefs_.find(key); local 44 if (entry != prefs_.end()) { 45 if (Value::Equals(entry->second, value)) 47 delete entry->second 57 const Map::iterator entry = prefs_.find(key); local [all...] |
/external/chromium/net/base/ |
net_log_unittest.h | 36 const CapturingNetLog::Entry& entry = entries[j]; local 37 if (expected_event != entry.type) { 39 << "Actual event: " << NetLog::EventTypeToString(entry.type) 43 if (expected_phase != entry.phase) { 45 << "Actual phase: " << entry.phase 49 if (expected_time != entry.time) { 51 << "Actual time: " << entry.time.ToInternalValue() 105 const CapturingNetLog::Entry& entry = entries[j] local 122 const CapturingNetLog::Entry& entry = entries[i]; local 142 const CapturingNetLog::Entry& entry = entries[i]; local [all...] |
/external/chromium_org/base/prefs/ |
pref_value_map.cc | 20 const Map::const_iterator entry = prefs_.find(key); local 21 if (entry != prefs_.end()) { 23 *value = entry->second; 31 const Map::const_iterator entry = prefs_.find(key); local 32 if (entry != prefs_.end()) { 34 *value = entry->second; 44 const Map::iterator entry = prefs_.find(key); local 45 if (entry != prefs_.end()) { 46 if (base::Value::Equals(entry->second, value)) 48 delete entry->second 58 const Map::iterator entry = prefs_.find(key); local [all...] |
/external/chromium_org/net/base/ |
net_log_unittest.h | 35 const CapturingNetLog::CapturedEntry& entry = entries[j]; local 36 if (expected_event != entry.type) { 38 << "Actual event: " << NetLog::EventTypeToString(entry.type) 42 if (expected_phase != entry.phase) { 44 << "Actual phase: " << entry.phase 48 if (expected_time != entry.time) { 50 << "Actual time: " << entry.time.ToInternalValue() 104 const CapturingNetLog::CapturedEntry& entry = entries[j]; local 105 if (entry.type != type) 121 const CapturingNetLog::CapturedEntry& entry = entries[i] local 141 const CapturingNetLog::CapturedEntry& entry = entries[i]; local [all...] |
/external/chromium_org/remoting/host/ |
server_log_entry.cc | 24 const char kLogEntry[] = "entry"; 76 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); 77 entry->Set(kKeyRole, kValueRoleHost); 78 entry->Set(kKeyEventName, kValueEventNameSessionState); 79 entry->Set(kKeySessionState, GetValueSessionState(connected)); 80 return entry.Pass(); 85 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); 86 entry->Set(kKeyRole, kValueRoleHost); 87 entry->Set(kKeyEventName, kValueEventNameHeartbeat); 88 return entry.Pass() [all...] |