HomeSort by relevance Sort by last modified time
    Searched refs:existing (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/libs/rs/
rsProgramStore.cpp 95 ProgramStore *existing = rsc->mStateFragmentStore.mStorePrograms[ct]; local
96 if (existing->mHal.state.ditherEnable != ditherEnable) continue;
97 if (existing->mHal.state.colorRWriteEnable != colorMaskR) continue;
98 if (existing->mHal.state.colorGWriteEnable != colorMaskG) continue;
99 if (existing->mHal.state.colorBWriteEnable != colorMaskB) continue;
100 if (existing->mHal.state.colorAWriteEnable != colorMaskA) continue;
101 if (existing->mHal.state.blendSrc != srcFunc) continue;
102 if (existing->mHal.state.blendDst != destFunc) continue;
103 if (existing->mHal.state.depthWriteEnable != depthMask) continue;
104 if (existing->mHal.state.depthFunc != depthFunc) continue
    [all...]
rsSampler.cpp 88 Sampler *existing = rsc->mStateSampler.mAllSamplers[ct]; local
89 if (existing->mHal.state.magFilter != magFilter) continue;
90 if (existing->mHal.state.minFilter != minFilter ) continue;
91 if (existing->mHal.state.wrapS != wrapS) continue;
92 if (existing->mHal.state.wrapT != wrapT) continue;
93 if (existing->mHal.state.wrapR != wrapR) continue;
94 if (existing->mHal.state.aniso != aniso) continue;
95 returnRef.set(existing);
rsProgramRaster.cpp 84 ProgramRaster *existing = rsc->mStateRaster.mRasterPrograms[ct]; local
85 if (existing->mHal.state.pointSprite != pointSprite) continue;
86 if (existing->mHal.state.cull != cull) continue;
87 returnRef.set(existing);
  /packages/apps/Mms/src/com/android/mms/dom/
NamedNodeMapImpl.java 74 Node existing = getNamedItem(arg.getNodeName()); local
75 if (existing != null) {
76 mNodes.remove(existing);
79 return existing;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DeclareStyleableInfo.java 48 * as an existing one and only differs by name.
51 * @param existing The existing {@link DeclareStyleableInfo} to mirror.
53 public DeclareStyleableInfo(String styleName, DeclareStyleableInfo existing) {
56 mJavaDoc = existing.getJavaDoc();
58 String[] parents = existing.getParents();
64 AttributeInfo[] attrs = existing.getAttributes();
  /external/mesa3d/src/glsl/
glsl_symbol_table.cpp 88 symbol_table_entry *existing = get_entry(v->name); local
90 /* If there's already an existing function (not a constructor!) in
91 * the current scope, just update the existing entry to include 'v'.
93 if (existing->v == NULL && existing->t == NULL) {
94 existing->v = v;
98 /* If not declared at this scope, add a new entry. But if an existing
103 if (existing != NULL)
104 entry->f = existing->f;
128 symbol_table_entry *existing = get_entry(f->name) local
    [all...]
linker.cpp 350 ir_variable *const existing = variables.get_variable(var->name); local
351 if (existing != NULL) {
352 if (var->type != existing->type) {
359 && existing->type->is_array()
360 && (var->type->fields.array == existing->type->fields.array)
362 || (existing->type->length == 0))) {
363 if (existing->type->length == 0) {
364 existing->type = var->type;
365 existing->max_array_access =
366 MAX2(existing->max_array_access
633 ir_variable *const existing = local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
InterferenceRegisterMapper.java 88 IntSet existing = newRegInterference.get(newReg); local
90 if (existing == null) {
93 return existing.has(oldReg);
95 return existing.has(oldReg)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 92 Set<String> existing = new HashSet<String>(); local
96 new BaseLayoutRule().collectExistingIds(node, existing);
98 assertEquals(2, existing.size());
99 assertContainsSame(Arrays.asList("@+id/Button2", "@+id/Button012"), existing);
208 Set<String> existing = new HashSet<String>(); local
209 assertEquals("@+id/Widget01", baseLayout.findNewId("a.w.Widget", existing));
211 existing.add("@+id/Widget01");
212 assertEquals("@+id/Widget02", baseLayout.findNewId("a.w.Widget", existing));
214 existing.add("@+id/Widget02");
215 assertEquals("@+id/Widget03", baseLayout.findNewId("a.w.Widget", existing));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java 42 /** Set of existing names to check for conflicts with */
60 private ResourceNameValidator(boolean allowXmlExtension, Set<String> existing,
63 mExisting = existing;
159 * @param existing An optional set of names that already exist (and therefore will not
164 public static ResourceNameValidator create(boolean allowXmlExtension, Set<String> existing,
167 return new ResourceNameValidator(allowXmlExtension, existing, isFileType,
182 Set<String> existing = new HashSet<String>(); local
187 existing.add(item.getName());
191 return new ResourceNameValidator(allowXmlExtension, existing, isFileType,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailClientConnectionManager.java 89 Scheme existing = registry.get(schemeName); local
90 if (existing == null) {
112 Scheme existing = registry.get(schemeName); local
113 if (existing != null) {
  /packages/apps/Settings/src/com/android/settings/net/
ChartDataLoader.java 122 * an existing {@link NetworkStatsHistory} if provided.
125 NetworkTemplate template, int uid, int set, NetworkStatsHistory existing)
130 if (existing != null) {
131 existing.recordEntireHistory(history);
132 return existing;
  /external/qemu/memcheck/
memcheck_mmrange_map.c 63 /* 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);
memcheck_malloc_map.c 101 /* 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/
edit_search_engine_controller.cc 76 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
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbumSet.java 126 final HashSet<Path> existing = new HashSet<Path>(); local
129 existing.add(item.getPath());
143 if (existing.contains(p)) {
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_namednodemapsetnameditemreturnvalue.js 79 existing node with the same name then the already
80 existing node is returned.
89 method should replace the already existing node with
90 the new one and return the existing node.
hc_elementreplaceexistingattributegevalue.js 79 existing Attr node with the same name, then it should
80 return the previously existing Attr node.
85 should return the existing Attr node(old "class" Attr).
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_namednodemapsetnameditemreturnvalue.js 79 existing node with the same name then the already
80 existing node is returned.
89 method should replace the already existing node with
90 the new one and return the existing node.
hc_elementreplaceexistingattributegevalue.js 79 existing Attr node with the same name, then it should
80 return the previously existing Attr node.
85 should return the existing Attr node(old "class" Attr).
  /external/skia/src/animator/
SkAnimateActive.h 39 void pickUp(SkActive* existing);
  /external/bison/tests/
Makefile.am 53 torture.at existing.at regression.at \
  /external/chromium/chrome/browser/resources/chromeos/
proxy_settings.js 18 // Decorate the existing elements in the document.
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageQueue.java 160 ArrayList<Message> existing = incoming.get(msg.getContextId()); local
161 if (existing == null)
162 incoming.put(msg.getContextId(), existing = new ArrayList<Message>()); local
163 existing.add(msg);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageQueue.java 159 ArrayList<Message> existing = incoming.get(msg.getContextId()); local
160 if (existing == null)
161 incoming.put(msg.getContextId(), existing = new ArrayList<Message>()); local
162 existing.add(msg);

Completed in 1360 milliseconds

1 2 3 4 5 6 7 8