Searched refs:existing (Results 1 - 25 of 148) sorted by relevance

123456

/external/mockito/src/org/mockito/internal/util/collections/
H A DIdentitySet.java15 for(Object existing:list) {
16 if (existing == o) {
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_symbol_table.cpp87 symbol_table_entry *existing = get_entry(v->name); local
89 /* If there's already an existing function (not a constructor!) in
90 * the current scope, just update the existing entry to include 'v'.
92 if (existing->v == NULL && existing->t == NULL) {
93 existing->v = v;
97 /* If not declared at this scope, add a new entry. But if an existing
102 if (existing != NULL)
103 entry->f = existing->f;
127 symbol_table_entry *existing local
[all...]
H A Dlinker.cpp420 ir_variable *const existing = variables.get_variable(var->name); local
421 if (existing != NULL) {
422 if (var->type != existing->type) {
429 && existing->type->is_array()
430 && (var->type->fields.array == existing->type->fields.array)
432 || (existing->type->length == 0))) {
434 existing->type = var->type;
441 existing->type->name);
447 if (existing->explicit_location
448 && (var->location != existing
814 ir_variable *const existing = local
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_symbol_table.cpp87 symbol_table_entry *existing = get_entry(v->name); local
89 /* If there's already an existing function (not a constructor!) in
90 * the current scope, just update the existing entry to include 'v'.
92 if (existing->v == NULL && existing->t == NULL) {
93 existing->v = v;
97 /* If not declared at this scope, add a new entry. But if an existing
102 if (existing != NULL)
103 entry->f = existing->f;
127 symbol_table_entry *existing local
[all...]
H A Dlinker.cpp420 ir_variable *const existing = variables.get_variable(var->name); local
421 if (existing != NULL) {
422 if (var->type != existing->type) {
429 && existing->type->is_array()
430 && (var->type->fields.array == existing->type->fields.array)
432 || (existing->type->length == 0))) {
434 existing->type = var->type;
441 existing->type->name);
447 if (existing->explicit_location
448 && (var->location != existing
814 ir_variable *const existing = local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DInterferenceRegisterMapper.java88 IntSet existing = newRegInterference.get(newReg);
90 if (existing == null) {
93 return existing.has(oldReg);
95 return existing.has(oldReg)
/external/chromium_org/chrome/browser/extensions/
H A Dpermissions_updater.cc39 scoped_refptr<const PermissionSet> existing(
42 PermissionSet::CreateUnion(existing.get(), permissions));
44 PermissionSet::CreateDifference(total.get(), existing.get()));
56 scoped_refptr<const PermissionSet> existing(
59 PermissionSet::CreateDifference(existing.get(), permissions));
61 PermissionSet::CreateDifference(existing.get(), total.get()));
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DGraph.java63 Node existing = nodes.get(a);
64 if ( existing!=null ) return existing;
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Daccounts_options_handler.cc125 const base::ListValue* existing = NULL; local
126 if (cros_settings->GetList(kAccountsPrefUsers, &existing) && existing)
127 new_list.reset(existing->DeepCopy());
/external/chromium_org/chrome/browser/chromeos/policy/proto/
H A DPRESUBMIT.py46 existing = frozenset(itertools.chain(*file_pairs))
48 if f.LocalPath() not in existing:
/external/chromium_org/chrome/browser/policy/proto/
H A DPRESUBMIT.py46 existing = frozenset(itertools.chain(*file_pairs))
48 if f.LocalPath() not in existing:
/external/chromium_org/components/policy/proto/
H A DPRESUBMIT.py46 existing = frozenset(itertools.chain(*file_pairs))
48 if f.LocalPath() not in existing:
/external/qemu/memcheck/
H A Dmemcheck_mmrange_map.c63 /* Inserts new (or replaces existing) entry into the map.
72 MMRangeMapEntry* existing = MMRangeMap_RB_INSERT(map, rdesc); local
73 if (existing == NULL) {
82 /* Copy existing entry to the provided buffer and replace it
84 memcpy(replaced, &existing->desc, sizeof(MMRangeDesc));
85 MMRangeMap_RB_REMOVE(map, existing);
86 qemu_free(existing);
H A Dmemcheck_malloc_map.c101 /* Inserts new (or replaces existing) entry into allocation descriptors map.
110 AllocMapEntry* existing = AllocMap_RB_INSERT(map, adesc); local
111 if (existing == NULL) {
120 /* Copy existing entry to the provided buffer and replace it
122 memcpy(replaced, &existing->desc, sizeof(MallocDescEx));
123 AllocMap_RB_REMOVE(map, existing);
124 qemu_free(existing);
/external/chromium/chrome/browser/ui/search_engines/
H A Dedit_search_engine_controller.cc76 const TemplateURL* existing = local
79 if (existing &&
80 (!edit_keyword_delegate_ || existing != template_url_)) {
96 // does in a similar situation (updating an existing TemplateURL with
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dedit_search_engine_controller.cc85 TemplateURL* existing = local
87 if (existing && (!edit_keyword_delegate_ || existing != template_url_)) {
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_util_unittest.cc84 const char existing[] = "test@example.com"; local
85 EXPECT_EQ(existing, SanitizeEmail(existing));
/external/chromium_org/tools/gyp/pylib/gyp/
H A Deasy_xml.py122 existing = f.read()
125 existing = None
128 if existing != xml_string:
/external/chromium_org/tools/gyp/test/lib/
H A DTestCommon.py183 existing = []
187 existing.append(f)
190 return existing, missing
229 existing, missing = separate_files(files)
230 unwritable = filter(lambda x, iw=is_writable: not iw(x), existing)
387 existing = filter(os.path.exists, files)
388 if existing:
389 print "Unexpected files exist: `%s'" % string.join(existing, "', `")
390 self.fail_test(existing)
400 existing, missin
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadmx_writer.py94 existing = filter(lambda e: e.getAttribute('name') == name,
96 if existing:
97 assert len(existing) == 1
98 assert existing[0].getAttribute('name') == name
99 assert existing[0].getAttribute('displayName') == display_name
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableMap.java65 @Nullable LinkedEntry<K, V> existing = table[tableIndex];
68 newLinkedEntry(key, entry.getValue(), existing);
71 while (existing != null) {
72 checkArgument(!key.equals(existing.getKey()), "duplicate key: %s", key);
73 existing = existing.next();
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c151 boolean existing = debug_serial((void*)p, &serial); local
164 if(!existing)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c151 boolean existing = debug_serial((void*)p, &serial); local
164 if(!existing)
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateActive.h31 void pickUp(SkActive* existing);
/external/skia/src/animator/
H A DSkAnimateActive.h31 void pickUp(SkActive* existing);

Completed in 1575 milliseconds

123456