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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/sync/syncable/
scoped_parent_child_index_updater.cc 14 EntryKernel* entry,
15 ParentChildIndex* index) : entry_(entry), index_(index) {
syncable_model_neutral_write_transaction.cc 28 void ModelNeutralWriteTransaction::TrackChangesTo(const EntryKernel* entry) {
29 modified_handles_.insert(entry->ref(META_HANDLE));
  /external/chromium_org/ui/base/ime/
infolist_entry.h 20 bool operator==(const InfolistEntry& entry) const;
21 bool operator!=(const InfolistEntry& entry) const;
  /external/chromium_org/v8/src/
cpu-profiler-inl.h 19 code_map->AddCode(start, entry, size);
21 entry->set_shared_id(code_map->GetSharedId(shared));
32 CodeEntry* entry = code_map->FindEntry(start); local
33 if (entry != NULL) {
34 entry->set_bailout_reason(bailout_reason);
45 CodeEntry* entry = code_map->FindEntry(start); local
46 if (!entry) {
51 entry->SetBuiltinId(builtin_id);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
StandaloneJarProcessor.java 39 JarEntry entry = e.nextElement(); local
40 struct.name = entry.getName();
41 struct.time = entry.getTime();
43 IoUtil.pipe(in.getInputStream(entry), baos, buf);
47 entry = new JarEntry(struct.name);
48 entry.setTime(struct.time);
49 entry.setCompressedSize(-1);
50 out.putNextEntry(entry);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.c 154 elf_reloc_entry *entry; local
169 entry = yasm_xmalloc(sizeof(elf_reloc_entry));
170 entry->reloc.sym = sym;
171 entry->reloc.addr = addr;
172 entry->rtype_rel = rel;
173 entry->valsize = valsize;
174 entry->addend = NULL;
175 entry->wrt = wrt;
176 entry->is_GOT_sym = is_GOT_sym;
178 return entry;
193 elf_strtab_entry *entry = yasm_xmalloc(sizeof(elf_strtab_entry)); local
221 elf_strtab_entry *entry = yasm_xmalloc(sizeof(elf_strtab_entry)); local
234 elf_strtab_entry *last, *entry; local
274 elf_strtab_entry *entry; local
295 elf_symtab_entry *entry = yasm_xmalloc(sizeof(elf_symtab_entry)); local
334 elf_symtab_entry *entry = data; local
372 elf_symtab_entry *entry = yasm_xmalloc(sizeof(elf_symtab_entry)); local
442 elf_symtab_entry *entry, *prev=NULL; local
465 elf_symtab_entry *entry, *prev; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 107 * @return the max entry number
116 * A pool is unused if there is neither an entry nor a waiting thread.
150 * Obtains a free entry from this pool, if one is available.
152 * @return an available pool entry, or <code>null</code> if there is none
158 BasicPoolEntry entry = it.previous(); local
159 if (LangUtils.equals(state, entry.getState())) {
161 return entry;
166 BasicPoolEntry entry = freeEntries.remove(); local
167 entry.setState(null);
168 OperatedClientConnection conn = entry.getConnection()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
remove_stale_cache_files_unittest.cc 65 ResourceEntry entry; local
67 entry.mutable_file_specific_info()->set_md5(md5_metadata);
68 entry.set_parent_local_id(util::kDriveGrandRootLocalId);
69 entry.set_title("File.txt");
70 EXPECT_EQ(FILE_ERROR_OK, resource_metadata_->AddEntry(entry, &local_id));
81 resource_metadata_->GetResourceEntryById(local_id, &entry));
82 EXPECT_FALSE(entry.file_specific_info().cache_state().is_present());
89 // Dirty entry.
92 ResourceEntry entry; local
94 entry.mutable_file_specific_info()->set_md5(md5_metadata)
    [all...]
resource_metadata_unittest.cc 45 ResourceEntry entry; local
46 entry.set_title(title);
47 entry.set_resource_id(resource_id);
48 entry.set_parent_local_id(parent_local_id);
49 entry.mutable_file_info()->set_is_directory(true);
50 entry.mutable_directory_specific_info()->set_changestamp(kTestChangestamp);
51 return entry;
66 ResourceEntry entry; local
67 entry.set_title(title);
68 entry.set_resource_id(resource_id)
182 ResourceEntry entry; local
227 ResourceEntry entry; local
336 ResourceEntry entry; local
356 ResourceEntry entry; local
486 ResourceEntry entry; local
523 ResourceEntry entry; local
536 ResourceEntry entry; local
567 ResourceEntry entry; local
637 ResourceEntry entry; local
679 ResourceEntry entry; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_event_factory.py 87 # If there is more than one entry with the same script name, only the first one will ever
91 for entry in self.in_file.name_dictionaries:
92 script_name = name_utilities.script_name(entry)
96 'name1': entry['name'],
98 entries_by_script_name[script_name] = entry
104 def _headers_header_include_path(self, entry):
105 if entry['ImplementedAs']:
106 path = os.path.dirname(entry['name'])
109 path += entry['ImplementedAs']
111 path = entry['name'
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
remove_operation_unittest.cc 30 ResourceEntry entry; local
32 ASSERT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(file_in_root, &entry));
38 EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntry(file_in_root, &entry));
40 const std::string id_file_in_root = entry.local_id();
41 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntryById(id_file_in_root, &entry));
42 EXPECT_EQ(util::kDriveTrashDirLocalId, entry.parent_local_id());
46 ASSERT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(file_in_subdir, &entry));
47 const std::string resource_id = entry.resource_id();
55 GetLocalResourceEntry(file_in_subdir, &entry));
57 const std::string id_file_in_subdir = entry.local_id()
95 ResourceEntry entry; local
    [all...]
create_file_operation.cc 30 ResourceEntry* entry) {
33 FileError error = metadata->GetResourceEntryByPath(file_path, entry);
54 // Add the entry to the local resource metadata.
56 entry->mutable_file_info()->set_last_modified(now.ToInternalValue());
57 entry->mutable_file_info()->set_last_accessed(now.ToInternalValue());
58 entry->set_title(file_path.BaseName().AsUTF8Unsafe());
59 entry->set_parent_local_id(parent.local_id());
60 entry->set_metadata_edit_state(ResourceEntry::DIRTY);
61 entry->set_modification_date(base::Time::Now().ToInternalValue());
62 entry->mutable_file_specific_info()->set_content_mime_type(mime_type)
94 ResourceEntry* entry = new ResourceEntry; local
    [all...]
move_operation.cc 20 // Looks up ResourceEntry for source entry and the destination directory.
26 ResourceEntry entry; local
27 FileError error = metadata->GetResourceEntryByPath(src_path, &entry);
30 *local_id = entry.local_id();
41 changed_files->Update(src_path, entry, FileChange::DELETE);
47 entry.has_file_specific_info() &&
48 entry.file_specific_info().is_hosted_document() &&
49 new_extension == entry.file_specific_info().document_extension();
55 entry.set_title(new_title);
56 entry.set_parent_local_id(parent_entry.local_id())
    [all...]
  /external/chromium_org/components/dom_distiller/core/
dom_distiller_service.cc 31 const ArticleEntry& entry,
74 ArticleEntry entry; local
75 const bool is_already_added = store_->GetEntryByUrl(url, &entry);
79 task_tracker = GetTaskTrackerForEntry(entry);
81 // Entry is in the store but there is no task tracker. This could
89 return entry.entry_id();
116 ArticleEntry entry; local
117 if (store_->GetEntryById(entry_id, &entry)) {
118 return entry.pages().Get(0).url();
129 scoped_ptr<ArticleEntry> entry(new ArticleEntry)
150 ArticleEntry entry; local
181 ArticleEntry entry; local
    [all...]
  /external/chromium_org/content/browser/frame_host/
navigation_entry_screenshot_manager.cc 81 NavigationEntryImpl* entry =
83 if (!entry)
104 TakeScreenshotImpl(render_view_host, entry);
120 NavigationEntryImpl* entry) {
122 DCHECK(entry);
128 entry->GetUniqueID()),
141 NavigationEntryImpl* entry = NULL; local
146 entry = NavigationEntryImpl::FromNavigationEntry(iter);
151 if (!entry) {
152 LOG(ERROR) << "Invalid entry with unique id: " << unique_id
175 NavigationEntryImpl* entry = local
186 NavigationEntryImpl* entry = NULL; local
244 NavigationEntryImpl* entry = NavigationEntryImpl::FromNavigationEntry( local
252 NavigationEntryImpl* entry = NavigationEntryImpl::FromNavigationEntry( local
263 NavigationEntryImpl* entry = NavigationEntryImpl::FromNavigationEntry( local
271 NavigationEntryImpl* entry = NavigationEntryImpl::FromNavigationEntry( local
    [all...]
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 34 // entry memory -- which does not make sense if the set of key values is not
36 // entry clearing is needed so that the hash table does not get polluted with
38 // TODO: provide mode that disables entry clearing
169 for (SoftEntry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
171 final Object entryKey = entry.m_key;
179 final Reference ref = entry.m_softValue;
195 final Reference ref = entry.m_softValue
    [all...]
  /external/chromium_org/net/http/
http_cache.cc 101 HttpCache::ActiveEntry::ActiveEntry(disk_cache::Entry* entry)
102 : disk_entry(entry),
123 disk_cache::Entry* disk_entry;
144 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
147 entry_(entry),
159 void NotifyTransaction(int result, ActiveEntry* entry) {
160 DCHECK(!entry || entry->disk_entry);
162 *entry_ = entry;
344 ActiveEntry* entry = active_entries_.begin()->second; local
606 ActiveEntry* entry = it->second; local
682 ActiveEntry* entry = new ActiveEntry(disk_entry); local
1075 ActiveEntry* entry = NULL; local
    [all...]
http_auth_cache_unittest.cc 84 HttpAuthCache::Entry* entry; local
140 entry = cache.Lookup(origin, kRealm5, HttpAuth::AUTH_SCHEME_BASIC);
141 EXPECT_TRUE(NULL == entry);
144 entry = cache.Lookup(GURL("https://www.google.com"), kRealm3,
146 EXPECT_TRUE(NULL == entry);
149 entry = cache.Lookup
151 EXPECT_TRUE(NULL == entry);
154 entry = cache.Lookup(
156 ASSERT_FALSE(NULL == entry);
245 HttpAuthCache::Entry entry; local
294 HttpAuthCache::Entry* entry = cache.Lookup( local
389 HttpAuthCache::Entry* entry = cache.Lookup( local
465 HttpAuthCache::Entry* entry; local
556 const HttpAuthCache::Entry* entry = local
568 const HttpAuthCache::Entry* entry = local
    [all...]
  /art/compiler/optimizing/
stack_map_stream.h 74 StackMapEntry entry; local
75 entry.dex_pc = dex_pc;
76 entry.native_pc = native_pc;
77 entry.register_mask = register_mask;
78 entry.sp_mask = sp_mask;
79 entry.num_dex_registers = num_dex_registers;
80 entry.inlining_depth = inlining_depth;
81 entry.dex_register_maps_start_index = dex_register_maps_.Size();
82 entry.inline_infos_start_index = inline_infos_.Size();
83 stack_maps_.Add(entry);
92 DexRegisterEntry entry; local
99 InlineInfoEntry entry; local
157 StackMapEntry entry = stack_maps_.Get(i); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cache.c 130 /* Probe until we find either a matching FILLED entry or an EMPTY
160 struct util_cache_entry *entry)
162 void *key = entry->key;
163 void *value = entry->value;
165 entry->key = NULL;
166 entry->value = NULL;
168 if (entry->state == FILLED) {
169 remove_from_list(entry);
175 entry->state = DELETED;
185 struct util_cache_entry *entry; local
220 struct util_cache_entry *entry; local
291 struct util_cache_entry *entry; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 130 /* Probe until we find either a matching FILLED entry or an EMPTY
160 struct util_cache_entry *entry)
162 void *key = entry->key;
163 void *value = entry->value;
165 entry->key = NULL;
166 entry->value = NULL;
168 if (entry->state == FILLED) {
169 remove_from_list(entry);
175 entry->state = DELETED;
185 struct util_cache_entry *entry; local
220 struct util_cache_entry *entry; local
291 struct util_cache_entry *entry; local
    [all...]
  /external/iptables/libxtables/
xtoptions.c 30 ((void *)((char *)(cb)->data + (cb)->entry->ptroff))
75 const struct xt_option_entry *entry, unsigned int *offset)
80 if (entry == NULL)
87 for (num_new = 0; entry[num_new].name != NULL; ++num_new)
109 for (i = 0; i < num_new; ++i, ++mp, ++entry) {
110 mp->name = entry->name;
111 mp->has_arg = entry->type != XTTYPE_NONE;
113 mp->val = entry->id + *offset;
121 /* Clear trailing entry */
174 const struct xt_option_entry *entry = cb->entry local
213 const struct xt_option_entry *entry = cb->entry; local
236 const struct xt_option_entry *entry = cb->entry; local
256 const struct xt_option_entry *entry = cb->entry; local
284 const struct xt_option_entry *entry = cb->entry; local
333 const struct xt_option_entry *entry = cb->entry; local
457 const struct syslog_level *entry = b; local
600 const struct xt_option_entry *entry = cb->entry; local
618 const struct xt_option_entry *entry = cb->entry; local
703 const struct xt_option_entry *entry = cb->entry; local
728 const struct xt_option_entry *entry = cb->entry; local
839 const struct xt_option_entry *entry = cb->entry; local
1037 const struct xt_option_entry *entry, *other; local
    [all...]
  /external/chromium_org/android_webview/native/
state_serializer_unittest.cc 41 scoped_ptr<content::NavigationEntry> entry(
59 entry->SetURL(url);
60 entry->SetVirtualURL(virtual_url);
61 entry->SetReferrer(referrer);
62 entry->SetTitle(title);
63 entry->SetPageState(page_state);
64 entry->SetHasPostData(has_post_data);
65 entry->SetOriginalRequestURL(original_request_url);
66 entry->SetBaseURLForDataURL(base_url_for_data_url);
67 entry->SetIsOverridingUserAgent(is_overriding_user_agent)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
EC3TrackImpl.java 37 List<TimeToSampleBox.Entry> stts = new LinkedList<TimeToSampleBox.Entry>();
59 for (BitStreamInfo entry : entries) {
60 if (bsi.strmtyp != 1 && entry.substreamid == bsi.substreamid) {
96 EC3SpecificBox.Entry e = new EC3SpecificBox.Entry();
137 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
141 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
149 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
183 BitStreamInfo entry = new BitStreamInfo() local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
malloc_extension.cc 247 uintptr_t Count(void** entry) {
248 return reinterpret_cast<uintptr_t>(entry[0]);
250 uintptr_t Size(void** entry) {
251 return reinterpret_cast<uintptr_t>(entry[1]);
253 uintptr_t Depth(void** entry) {
254 return reinterpret_cast<uintptr_t>(entry[2]);
256 void* PC(void** entry, int i) {
257 return entry[3+i];
277 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry))
    [all...]

Completed in 447 milliseconds

1 2 3 4 56 7 8 91011>>