/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
accounts_options_handler.cc | 122 scoped_ptr<base::ListValue> new_list; local 127 new_list.reset(existing->DeepCopy()); 129 new_list.reset(new base::ListValue); 133 new_list->AppendIfNotPresent(new base::StringValue((*it)->email())); 135 cros_settings->Set(kAccountsPrefUsers, *new_list.get());
|
/external/chromium_org/build/ |
install-build-deps.sh | 272 if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then 278 new_list=$(echo "$new_list" | 280 new_list=$(echo "$new_list" | sed 's/ *$//') 281 if [ -z "$new_list" ] ; then 284 echo "Installing missing packages: $new_list." 285 sudo apt-get install ${do_quietly-} ${new_list}
|
/external/chromium_org/gpu/command_buffer/service/ |
vertex_attrib_manager.h | 98 void SetList(VertexAttribList* new_list) { 99 DCHECK(new_list); 105 it_ = new_list->insert(new_list->end(), this); 106 list_ = new_list;
|
/external/e2fsprogs/lib/blkid/ |
devno.c | 143 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/ |
finddev.c | 127 struct dir_list *list = 0, *new_list = 0; local 144 scan_dir(current->name, device, &new_list, &ret_path); 154 list = new_list; 155 new_list = 0; 159 free_dirlist(&new_list);
|
/external/chromium_org/chromeos/network/ |
certificate_pattern.cc | 42 base::ListValue* new_list = new base::ListValue; local 45 new_list->Append(new base::StringValue(*iter)); 47 return new_list;
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
map.py | 99 new_list = ListAttribute() 101 new_list[index] = copy.deepcopy(item) 102 return new_list
|
/external/chromium/build/ |
install-build-deps.sh | 266 if new_list="$(yes n | LANG=C $new_list_cmd)"; then 272 new_list=$(echo "$new_list" | 274 new_list=$(echo "$new_list" | sed 's/ *$//') 275 if [ -z "$new_list" ] ; then 278 echo "Installing missing packages: $new_list." 279 sudo apt-get install ${new_list}
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
cache.cc | 112 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/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
template_writer.py | 259 new_list = [] 263 new_list.append(grouped_policy) 265 new_list.append(policy) 268 new_list.sort(key=sorting_key) 269 return new_list
|
/external/blktrace/btt/ |
output.c | 331 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->nseeks) [all...] |
/external/freetype/src/cache/ |
ftccache.c | 126 FTC_Node new_list = NULL; local 156 node->link = new_list; 157 new_list = node; 163 cache->buckets[p + mask + 1] = new_list;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/external/linux-tools-perf/ |
builtin-timechart.c | 627 struct per_pid *new_list, *p, *cursor, *prev; local 630 new_list = NULL; 637 if (new_list == NULL) { 638 new_list = p; 643 cursor = new_list; 654 p->next = new_list; 655 new_list = p; 667 all_data = new_list;
|
/external/chromium_org/cc/output/ |
render_surface_filters.cc | 316 FilterOperations new_list; local 347 new_list.Append(FilterOperation::CreateColorMatrixFilter( 356 new_list.Append(op); 372 new_list.Append(FilterOperation::CreateColorMatrixFilter( 375 return new_list;
|
/external/chromium/chrome/browser/history/ |
history_types.cc | 281 StackVector<size_t, 4> new_list; local 282 new_list->push_back(index); 283 url_to_results_[url] = new_list;
|
top_sites.h | 147 const MostVisitedURLList& new_list,
|
top_sites.cc | 454 const MostVisitedURLList& new_list, 467 for (size_t i = 0; i < new_list.size(); i++) { 468 std::map<GURL, size_t>::iterator found = all_old_urls.find(new_list[i].url); 471 added.url = new_list[i]; 477 moved.url = new_list[i]; [all...] |
/external/chromium_org/ash/system/bluetooth/ |
tray_bluetooth.cc | 51 // |new_list|. 54 const std::set<std::string>& new_list) { 57 if (new_list.find((*it).address) == new_list.end()) {
|
/external/chromium_org/chrome/browser/history/ |
history_types.cc | 227 base::StackVector<size_t, 4> new_list; local 228 new_list->push_back(index); 229 url_to_results_[url] = new_list;
|
top_sites_impl.h | 110 const MostVisitedURLList& new_list,
|
top_sites_likely_impl.h | 110 const MostVisitedURLList& new_list,
|
top_sites_impl.cc | 484 const MostVisitedURLList& new_list, 497 for (size_t i = 0; i < new_list.size(); i++) { 498 std::map<GURL, size_t>::iterator found = all_old_urls.find(new_list[i].url); 501 added.url = new_list[i]; 507 moved.url = new_list[i];
|
/external/chromium_org/third_party/libpng/ |
pngset.c | 1073 png_bytep new_list, p; local 1093 new_list=(png_bytep)png_malloc(png_ptr, 1098 png_memcpy(new_list, png_ptr->chunk_list, 1103 png_memcpy(new_list + 5*old_num_chunks, chunk_list, [all...] |