HomeSort by relevance Sort by last modified time
    Searched refs:entry (Results 251 - 275 of 2910) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/i18n/
transreg.cpp 31 // allocation, deletion, and use of Entry objects. BoundsChecker has
347 // Vector of Entry pointers currently in use
357 // Caller must call DEBUG_setup first. Return index of given Entry,
409 // class Entry
413 * The Entry object stores objects of different types and
474 // entry object owns it. It should only be deleted when the
535 TransliteratorEntry *entry = find(ID); local
536 return (entry == 0) ? 0
537 : instantiateEntry(ID, entry, aliasReturn, status);
545 TransliteratorEntry *entry = find(ID) local
618 TransliteratorEntry *entry = new TransliteratorEntry(); local
632 TransliteratorEntry *entry = new TransliteratorEntry(); local
647 TransliteratorEntry *entry = new TransliteratorEntry(); local
668 TransliteratorEntry *entry = new TransliteratorEntry(); local
1028 TransliteratorEntry* entry = 0; local
1122 TransliteratorEntry *entry = new TransliteratorEntry(); local
1176 TransliteratorEntry* entry; local
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
in_flight_backend_io.h 22 class Entry;
42 // Returns true if this operation is directed to an entry (vs. the backend).
52 void OpenEntry(const std::string& key, Entry** entry);
53 void CreateEntry(const std::string& key, Entry** entry);
59 void OpenNextEntry(Rankings::Iterator* iterator, Entry** next_entry);
62 void CloseEntryImpl(EntryImpl* entry);
63 void DoomEntryImpl(EntryImpl* entry);
66 void ReadData(EntryImpl* entry, int index, int offset, net::IOBuffer* buf
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
ModuleNode.py 84 for entry in scope.c_class_entries:
85 entry.type.module_name = self.full_module_name
86 entry.type.scope.directives["internal"] = True
115 for entry in module.cfunc_entries:
116 if entry.defined_in_pxd:
122 return [entry for entry in entries
123 if ((entry.visibility == 'public') or
124 (api and entry.api) or
125 (pxd and entry.defined_in_pxd))
    [all...]
  /external/chromium_org/content/browser/ssl/
ssl_manager.cc 116 NavigationEntryImpl* entry = local
121 if (entry) {
136 // We may not have an entry if this is a navigation to an initial blank
138 entry->GetSSL() = SSLStatus();
139 entry->GetSSL().cert_id = ssl_cert_id;
140 entry->GetSSL().cert_status = ssl_cert_status;
141 entry->GetSSL().security_bits = ssl_security_bits;
142 entry->GetSSL().connection_status = ssl_connection_status;
143 entry->GetSSL().signed_certificate_timestamp_ids =
148 UpdateEntry(entry);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
create-html-entity-table 67 entries.sort(key = lambda entry: entry[ENTITY])
122 for entry in entries:
123 check_ascii(entry[ENTITY])
130 # semi-colon in the array but as a bit in the entry.
131 entity = entry[ENTITY]
157 assert len(entry) == 2, "We will use slot [2] in the list for the offset."
159 entry.append(this_offset)
164 for offset, entry in enumerate(entries):
165 starting_letter = entry[ENTITY][0
    [all...]
  /external/chromium_org/ash/accelerators/
accelerator_table_unittest.cc 32 const AcceleratorData& entry = kAcceleratorData[i]; local
33 EXPECT_TRUE(acclerators.insert(entry).second)
34 << "Duplicated accelerator: " << entry.trigger_on_press << ", "
35 << entry.keycode << ", " << (entry.modifiers & ui::EF_SHIFT_DOWN)
36 << ", " << (entry.modifiers & ui::EF_CONTROL_DOWN) << ", "
37 << (entry.modifiers & ui::EF_ALT_DOWN);
  /external/chromium_org/components/variations/
caching_permuted_entropy_provider.cc 76 PermutedEntropyCache::Entry* entry; local
79 // If the cache is full, evict the first entry, swapping later entries in
86 entry = cache_.mutable_entry(kMaxSize - 1);
88 entry = cache_.add_entry();
91 entry->set_randomization_seed(randomization_seed);
92 entry->set_value(value);
100 if (cache_.entry(i).randomization_seed() == randomization_seed) {
101 *value = cache_.entry(i).value();
  /external/chromium_org/net/spdy/
hpack_huffman_table.cc 120 // entry first, and that the child can therefore be minimally sized to hold
121 // that entry without fear of introducing unneccesary branches later.
133 DecodeEntry entry = Entry(table, index); local
137 // We're writing a terminal entry.
138 entry.length = it->length;
139 entry.symbol_id = it->id;
140 entry.next_table_index = table_index;
141 SetEntry(table, index, entry);
145 if (entry.length == 0)
166 const DecodeEntry& entry = Entry(table, j); local
291 const DecodeEntry& entry = Entry(*table, index); local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
UnfoldShortCircuitAST.cpp 63 const NodeUpdateEntry& entry = replacements[ii]; local
64 ASSERT(entry.parent);
65 bool replaced = entry.parent->replaceChildNode(
66 entry.original, entry.replacement);
76 if (entry2.parent == entry.original)
77 entry2.parent = entry.replacement;
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_getproc.c 53 * and return the corresponding glprocs_table_t entry.
176 * only allocate the entry-point stub when the application requests the
263 * \param funcName Name of the function to create an entry-point for.
271 struct _glapi_function * entry = NULL; local
292 entry = & ExtEntryTable[NumExtEntryPoints];
295 entry->name = name_dup;
296 entry->parameter_signature = NULL;
297 entry->dispatch_offset = ~0;
298 entry->dispatch_stub = entrypoint;
300 return entry;
379 struct _glapi_function * entry[8]; local
511 struct _glapi_function * entry; local
    [all...]
  /external/e2fsprogs/lib/ss/
list_rqs.c 28 ss_request_entry *entry; local
59 entry = (*table)->requests;
60 for (; entry->command_names; entry++) {
63 if (entry->flags & SS_OPT_DONT_LIST)
65 for (name = entry->command_names; *name; name++) {
80 strcat(buffer, entry->info_string);
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
VolleyDiskCacheWrapper.java 40 public Entry get(String key) {
63 public void put(final String key, final Entry entry) {
67 CacheHeader header = new CacheHeader(key, entry);
71 os.write(entry.data);
89 Entry entry = get(key); local
90 if (entry != null) {
91 entry.softTtl = 0;
93 entry.ttl = 0
113 CacheHeader entry = new CacheHeader(); local
    [all...]
  /external/libexif/contrib/examples/
photographer.c 28 ExifEntry *entry = exif_content_get_entry(d->ifd[ifd],tag); local
29 if (entry) {
33 exif_entry_get_value(entry, buf, sizeof(buf));
71 ExifEntry *entry; local
103 entry = exif_content_get_entry(ed->ifd[EXIF_IFD_0], EXIF_TAG_MAKE);
104 if (entry) {
108 if (exif_entry_get_value(entry, buf, sizeof(buf))) {
  /external/mesa3d/src/mapi/glapi/
glapi_getproc.c 53 * and return the corresponding glprocs_table_t entry.
176 * only allocate the entry-point stub when the application requests the
263 * \param funcName Name of the function to create an entry-point for.
271 struct _glapi_function * entry = NULL; local
292 entry = & ExtEntryTable[NumExtEntryPoints];
295 entry->name = name_dup;
296 entry->parameter_signature = NULL;
297 entry->dispatch_offset = ~0;
298 entry->dispatch_stub = entrypoint;
300 return entry;
379 struct _glapi_function * entry[8]; local
511 struct _glapi_function * entry; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 91 static void antlr3VectorDel (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
92 static void * antlr3VectorGet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
93 static void * antrl3VectorRemove (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
96 static ANTLR3_UINT32 antlr3VectorSet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry, void * element, void (ANTLR3_CDECL *freeptr)(void *), ANTLR3_BOOLEAN freeExisting);
200 pANTLR3_HASH_ENTRY entry; local
216 entry = thisBucket->entries;
220 while (entry != NULL)
222 /* Save next entry - we do not want to access memory in entry after we
225 nextEntry = entry->nextEntry
278 pANTLR3_HASH_ENTRY entry; local
335 pANTLR3_HASH_ENTRY entry; local
398 pANTLR3_HASH_ENTRY entry; local
422 pANTLR3_HASH_ENTRY entry; local
448 pANTLR3_HASH_ENTRY entry; local
487 pANTLR3_HASH_ENTRY entry; local
527 pANTLR3_HASH_ENTRY entry; local
598 pANTLR3_HASH_ENTRY entry; local
943 pANTLR3_HASH_ENTRY entry; local
1138 ANTLR3_UINT32 entry; local
1163 ANTLR3_UINT32 entry; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
remove_performer.cc 29 ResourceEntry entry; local
30 FileError error = metadata->GetResourceEntryById(local_id, &entry);
33 entry.set_parent_local_id(util::kDriveOtherDirLocalId);
34 return metadata->RefreshEntry(entry);
73 // Returns |entry| corresponding to |local_id|.
74 // Adding to that, removes the entry when it does not exist on the server.
77 ResourceEntry* entry) {
78 FileError error = metadata->GetResourceEntryById(local_id, entry);
79 if (error != FILE_ERROR_OK || !entry->resource_id().empty())
90 ResourceEntry* entry = new ResourceEntry local
208 ResourceEntry entry; local
    [all...]
  /external/chromium_org/components/policy/core/common/
policy_map.cc 14 PolicyMap::Entry::Entry()
20 void PolicyMap::Entry::DeleteOwnedMembers() {
27 scoped_ptr<PolicyMap::Entry> PolicyMap::Entry::DeepCopy() const {
28 scoped_ptr<Entry> copy(new Entry);
40 bool PolicyMap::Entry::has_higher_priority_than(
41 const PolicyMap::Entry& other) const {
48 bool PolicyMap::Entry::Equals(const PolicyMap::Entry& other) const
64 PolicyMapType::const_iterator entry = map_.find(policy); local
69 PolicyMapType::const_iterator entry = map_.find(policy); local
78 Entry& entry = map_[policy]; local
101 const Entry& entry = it->second; local
116 const Entry* entry = Get(it->first); local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackDraft05Test.java 121 Header entry = hpackReader.headerTable[headerTableLength() - 1]; local
122 checkEntry(entry, "custom-bar", "custom-header", 55);
125 entry = hpackReader.headerTable[headerTableLength() - 2];
126 checkEntry(entry, "custom-baz", "custom-header", 55);
182 Header entry = hpackReader.headerTable[headerTableLength() - 1]; local
183 checkEntry(entry, ":path", "www.example.com", 52);
207 Header entry = hpackReader.headerTable[headerTableLength() - 1]; local
208 checkEntry(entry, "custom-key", "custom-header", 55);
278 Header entry = hpackReader.headerTable[headerTableLength() - 1]; local
279 checkEntry(entry, ":method", "GET", 42)
302 Header entry = hpackReader.headerTable[headerTableLength() - 1]; local
412 Header entry = hpackReader.headerTable[headerTableLength() - 4]; local
457 Header entry = hpackReader.headerTable[headerTableLength() - 5]; local
518 Header entry = hpackReader.headerTable[headerTableLength() - 8]; local
619 Header entry = hpackReader.headerTable[headerTableLength() - 4]; local
668 Header entry = hpackReader.headerTable[headerTableLength() - 5]; local
738 Header entry = hpackReader.headerTable[headerTableLength() - 8]; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
copy_operation_unittest.cc 58 ResourceEntry entry; local
60 GetLocalResourceEntry(remote_dest_path, &entry));
73 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(remote_dest_path, &entry));
74 EXPECT_EQ(1U, delegate()->updated_local_ids().count(entry.local_id()));
75 EXPECT_TRUE(entry.file_specific_info().cache_state().is_present());
76 EXPECT_TRUE(entry.file_specific_info().cache_state().is_dirty());
91 ResourceEntry entry; local
92 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(remote_dest_path, &entry));
105 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(remote_dest_path, &entry));
106 EXPECT_EQ(1U, delegate()->updated_local_ids().count(entry.local_id()))
127 ResourceEntry entry; local
160 ResourceEntry entry; local
204 ResourceEntry entry; local
229 ResourceEntry entry; local
249 ResourceEntry entry; local
275 ResourceEntry entry; local
400 ResourceEntry entry; local
419 ResourceEntry entry; local
513 ResourceEntry entry; local
    [all...]
create_file_operation_unittest.cc 33 ResourceEntry entry; local
34 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(kFilePath, &entry));
35 EXPECT_EQ(ResourceEntry::DIRTY, entry.metadata_edit_state());
37 entry.file_info().last_modified()).is_null());
39 entry.file_info().last_accessed()).is_null());
44 EXPECT_EQ(1u, delegate()->updated_local_ids().count(entry.local_id()));
89 // Create succeeds if no entry exists.
128 ResourceEntry entry; local
129 ASSERT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(kPng1, &entry));
130 EXPECT_EQ("image/png", entry.file_specific_info().content_mime_type())
    [all...]
  /external/bluetooth/bluedroid/osi/src/
config.c 89 entry_t *entry = entry_find(config, section, key); local
90 if (!entry)
94 int ret = strtol(entry->value, &endptr, 0);
103 entry_t *entry = entry_find(config, section, key); local
104 if (!entry)
107 if (!strcmp(entry->value, "true"))
109 if (!strcmp(entry->value, "false"))
120 entry_t *entry = entry_find(config, section, key); local
121 if (!entry)
124 return entry->value
153 entry_t *entry = list_node(node); local
161 entry_t *entry = entry_new(key, value); local
248 entry_t *entry = calloc(1, sizeof(entry_t)); local
272 entry_t *entry = list_node(node); local
    [all...]
  /external/chromium_org/net/disk_cache/
backend_unittest.cc 45 const char kExistingEntryKey[] = "existing entry key";
58 disk_cache::Entry* entry = NULL;
59 rv = cache->CreateEntry(kExistingEntryKey, &entry, cb.callback());
62 entry->Close();
137 disk_cache::Entry* entry; local
138 int rv = cache_->CreateEntry("some key", &entry, cb->callback());
151 rv = static_cast<disk_cache::EntryImpl*>(entry)->WriteDataImpl(
154 rv = entry->WriteData(0, i, buffer.get(), kSize, cb->callback(), false)
244 disk_cache::Entry* entry; local
262 disk_cache::Entry* entry; local
488 disk_cache::Entry* entry; local
610 disk_cache::Entry* entry; local
651 disk_cache::Entry* entry; local
712 disk_cache::Entry* entry; local
797 disk_cache::Entry* entry; local
851 disk_cache::Entry* entry; local
881 disk_cache::Entry* entry; local
912 disk_cache::Entry* entry; local
948 disk_cache::Entry* entry; local
992 disk_cache::Entry* entry; local
1076 disk_cache::Entry* entry; local
1081 disk_cache::Entry* entry; local
1120 disk_cache::Entry* entry; local
1174 disk_cache::Entry* entry; local
1234 disk_cache::Entry* entry; local
1241 disk_cache::Entry* entry; local
1408 disk_cache::Entry *entry, *entry1, *entry2; local
1462 disk_cache::Entry* entry; local
1515 disk_cache::Entry *entry; local
1593 disk_cache::Entry *entry; local
1914 disk_cache::Entry* entry = NULL; local
1955 disk_cache::Entry* entry = NULL; local
2025 disk_cache::Entry* entry; local
2096 disk_cache::Entry* entry; local
2118 disk_cache::Entry* entry; local
2129 disk_cache::Entry* entry; local
2151 disk_cache::Entry* entry; local
2195 disk_cache::Entry* entry; local
2242 disk_cache::Entry* entry; local
2307 disk_cache::Entry* entry; local
2370 disk_cache::Entry* entry; local
2440 disk_cache::Entry* entry; local
2496 disk_cache::Entry* entry; local
2592 disk_cache::Entry* entry; local
2769 disk_cache::Entry* entry; local
2870 disk_cache::Entry* entry; local
2933 disk_cache::Entry* entry; local
3006 disk_cache::Entry* entry; local
3105 disk_cache::Entry* entry; local
3128 disk_cache::Entry* entry; local
3239 disk_cache::Entry* entry = NULL; local
3275 disk_cache::Entry* entry = NULL; local
3308 disk_cache::Entry* entry; local
3337 disk_cache::Entry* entry; local
3481 disk_cache::Entry* entry = NULL; local
    [all...]
  /external/chromium_org/remoting/host/
server_log_entry_host_unittest.cc 19 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true));
20 scoped_ptr<XmlElement> stanza = entry->ToStanza();
32 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForHeartbeat());
33 scoped_ptr<XmlElement> stanza = entry->ToStanza();
44 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true));
45 AddHostFieldsToLogEntry(entry.get());
46 scoped_ptr<XmlElement> stanza = entry->ToStanza();
72 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForSessionStateChange(true));
73 entry->AddModeField(ServerLogEntry::IT2ME);
74 scoped_ptr<XmlElement> stanza = entry->ToStanza()
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableMap.java 26 * Implementation of {@link ImmutableMap} with exactly one entry.
38 private transient Entry<K, V> entry; field in class:SingletonImmutableMap
45 SingletonImmutableMap(Entry<K, V> entry) {
46 this.entry = entry;
47 this.singleKey = entry.getKey();
48 this.singleValue = entry.getValue();
51 private Entry<K, V> entry() method in class:SingletonImmutableMap
142 Entry<?, ?> entry = that.entrySet().iterator().next(); local
    [all...]
  /external/llvm/include/llvm/Support/
Registry.h 23 /// A simple registry entry which provides only a name, description, and
48 typedef SimpleRegistryEntry<T> entry; typedef in class:llvm::RegistryTraits
52 static const char *nameof(const entry &Entry) { return Entry.getName(); }
53 static const char *descof(const entry &Entry) { return Entry.getDesc(); }
64 typedef typename U::entry entry; typedef in class:llvm::Registry
    [all...]

Completed in 708 milliseconds

<<11121314151617181920>>