Searched refs:new_list (Results 1 - 25 of 33) sorted by relevance

12

/external/libunwind/src/
H A DLos-common.c40 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list) argument
50 from the beginning of new_list each time looking for a match to
52 in new_list we checked. */
53 while (new_list && old_list->start <= new_list->start)
55 if (old_list->start == new_list->start
56 && old_list->end == new_list->end)
60 new_list->ei.size = old_list->ei.size;
61 new_list->ei.image = old_list->ei.image;
68 new_list
84 struct map_info *new_list; local
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Daccounts_options_handler.cc128 scoped_ptr<base::ListValue> new_list; local
133 new_list.reset(existing->DeepCopy());
135 new_list.reset(new base::ListValue);
139 new_list->AppendIfNotPresent(new base::StringValue((*it)->email()));
141 cros_settings->Set(kAccountsPrefUsers, *new_list.get());
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dwindow_capturer_unittest.cc81 WindowCapturer::WindowList new_list; local
82 EXPECT_TRUE(capturer_->GetWindowList(&new_list));
/external/chromium_org/gpu/command_buffer/service/
H A Dvertex_attrib_manager.h98 void SetList(VertexAttribList* new_list) { argument
99 DCHECK(new_list);
105 it_ = new_list->insert(new_list->end(), this);
106 list_ = new_list;
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dtemplate_writer.py270 new_list = []
274 new_list.append(grouped_policy)
276 new_list.append(policy)
279 new_list.sort(key=sorting_key)
280 return new_list
/external/e2fsprogs/lib/blkid/
H A Ddevno.c143 struct dir_list *list = NULL, *new_list = NULL; local
159 blkid__scan_dir(current->name, devno, &new_list, &devname);
169 list = new_list;
170 new_list = NULL;
174 free_dirlist(&new_list);
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c128 struct dir_list *list = 0, *new_list = 0; local
146 scan_dir(current->name, device, &new_list, &ret_path);
156 list = new_list;
157 new_list = 0;
164 free_dirlist(&new_list);
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_impl.cc387 const MostVisitedURLList& new_list,
408 for (size_t i = 0; i < new_list.size(); i++) {
411 if (new_list[i].last_forced_time.is_null())
413 DCHECK(new_list[i].last_forced_time.is_null() == (rank != -1))
415 std::map<GURL, size_t>::iterator found = all_old_urls.find(new_list[i].url);
418 added.url = new_list[i];
428 new_list[i].last_forced_time) {
430 moved.url = new_list[i];
610 MostVisitedURLList new_list(cache_->top_sites());
616 if (new_list[inde
386 DiffMostVisited(const MostVisitedURLList& old_list, const MostVisitedURLList& new_list, TopSitesDelta* delta) argument
654 MergeCachedForcedURLs(MostVisitedURLList* new_list) argument
[all...]
H A Dtop_sites_impl.h118 const MostVisitedURLList& new_list,
162 // Add all the forced URLs from |cache_| into |new_list|, making sure not to
163 // add any URL that's already in |new_list|'s non-forced URLs. The forced URLs
164 // in |cache_| and |new_list| are assumed to appear at the front of the list
168 size_t MergeCachedForcedURLs(MostVisitedURLList* new_list);
H A Dtop_sites_impl_unittest.cc422 std::vector<MostVisitedURL> new_list; local
423 AppendMostVisitedURL(&new_list, stays_the_same); // 0 (unchanged)
424 AppendMostVisitedURL(&new_list, gets_added_1); // 1 (added)
425 AppendMostVisitedURL(&new_list, gets_added_2); // 2 (added)
426 AppendMostVisitedURL(&new_list, gets_moved_1); // 3 (moved from 2)
429 history::TopSitesImpl::DiffMostVisited(old_list, new_list, &delta);
472 std::vector<MostVisitedURL> new_list; local
473 AppendForcedMostVisitedURL(&new_list, stays_the_same_1, 1000);
474 AppendForcedMostVisitedURL(&new_list, stays_the_same_2, 3000);
475 AppendForcedMostVisitedURL(&new_list, new_last_forced_tim
[all...]
H A Dhistory_types.cc227 base::StackVector<size_t, 4> new_list; local
228 new_list->push_back(index);
229 url_to_results_[url] = new_list;
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dmap.py99 new_list = ListAttribute()
101 new_list[index] = copy.deepcopy(item)
102 return new_list
/external/chromium_org/build/
H A Dinstall-build-deps.sh342 if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then
348 new_list=$(echo "$new_list" |
350 new_list=$(echo "$new_list" | sed 's/ *$//')
351 if [ -z "$new_list" ] ; then
354 echo "Installing missing packages: $new_list."
355 sudo apt-get install ${do_quietly-} ${new_list}
/external/chromium_org/tools/gyp/tools/
H A Dpretty_vcproj.py114 new_list = []
122 new_list.append(filename)
124 new_list.append(os.path.abspath(filename))
125 return new_list
138 new_list = FixFilenames(path_list, os.path.dirname(ARGUMENTS[1]))
139 node.setAttribute(name, ';'.join(new_list))
/external/chromium_org/chromeos/network/
H A Dcertificate_pattern.cc42 base::ListValue* new_list = new base::ListValue; local
45 new_list->Append(new base::StringValue(*iter));
47 return new_list;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_auth.c87 sctp_auth_chklist_t *new_list; local
93 new_list = sctp_alloc_chunklist();
94 if (new_list == NULL)
97 bcopy(list, new_list, sizeof(*new_list));
99 return (new_list);
653 sctp_hmaclist_t *new_list; local
656 alloc_size = sizeof(*new_list) + num_hmacs * sizeof(new_list->hmac[0]);
657 SCTP_MALLOC(new_list, sctp_hmaclist_
711 sctp_hmaclist_t *new_list; local
731 sctp_hmaclist_t *new_list; local
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache.cc112 LRUHandle** new_list = new LRUHandle*[new_length]; local
113 memset(new_list, 0, sizeof(new_list[0]) * new_length);
120 LRUHandle** ptr = &new_list[hash & (new_length - 1)];
129 list_ = new_list;
/external/qemu/distrib/mini-glib/src/
H A Dglib-mini.c262 GSList* new_list = _g_slist_alloc(); local
263 new_list->data = data;
264 new_list->next = NULL;
267 return new_list;
270 last->next = new_list;
275 GSList* new_list = _g_slist_alloc(); local
276 new_list->data = data;
277 new_list->next = list;
278 return new_list;
/external/blktrace/btt/
H A Doutput.c331 struct seek_mode_info *p, *this, *new_list = NULL; local
337 if (new_list == NULL || this->nseeks > new_list->nseeks)
338 new_list = this;
339 else if (this->nseeks == new_list->nseeks) {
340 for (p = new_list; p != NULL; p = p->next)
347 this->next = new_list;
348 new_list = this;
354 sip->median / sip->nseeks, new_list->mode, new_list
[all...]
/external/libpng/
H A Dpngset.c1276 png_bytep new_list; local
1358 new_list = png_voidcast(png_bytep, png_malloc(png_ptr,
1362 memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
1366 new_list = png_ptr->chunk_list;
1369 new_list = NULL;
1376 if (new_list != NULL)
1383 old_num_chunks = add_one_chunk(new_list, old_num_chunks,
1388 for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5)
1400 if (png_ptr->chunk_list != new_list)
1401 png_free(png_ptr, new_list);
[all...]
/external/chromium_org/third_party/freetype/src/cache/
H A Dftccache.c126 FTC_Node new_list = NULL; local
156 node->link = new_list;
157 new_list = node;
163 cache->buckets[p + mask + 1] = new_list;
/external/freetype/src/cache/
H A Dftccache.c126 FTC_Node new_list = NULL; local
156 node->link = new_list;
157 new_list = node;
163 cache->buckets[p + mask + 1] = new_list;
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-timechart.c617 struct per_pid *new_list, *p, *cursor, *prev; local
620 new_list = NULL;
627 if (new_list == NULL) {
628 new_list = p;
633 cursor = new_list;
644 p->next = new_list;
645 new_list = p;
657 all_data = new_list;
/external/chromium_org/ash/system/bluetooth/
H A Dtray_bluetooth.cc48 // |new_list|.
51 const std::set<std::string>& new_list) {
54 if (new_list.find((*it).address) == new_list.end()) {
49 RemoveObsoleteBluetoothDevicesFromList( BluetoothDeviceList* list, const std::set<std::string>& new_list) argument
/external/chromium_org/chrome/common/extensions/permissions/
H A Dchrome_permission_message_provider.cc378 const URLPatternSet& new_list = new_permissions->effective_hosts(); local
384 permission_message_util::GetDistinctHosts(new_list, false, false));

Completed in 980 milliseconds

12