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

1 2 3

  /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;
  /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)
  /external/qemu/memcheck/
memcheck_mmrange_map.c 69 /* Inserts new (or replaces existing) entry into the map.
78 MMRangeMapEntry* existing = MMRangeMap_RB_INSERT(map, rdesc); local
79 if (existing == NULL) {
88 /* Copy existing entry to the provided buffer and replace it
90 memcpy(replaced, &existing->desc, sizeof(MMRangeDesc));
91 MMRangeMap_RB_REMOVE(map, existing);
92 qemu_free(existing);
memcheck_malloc_map.c 107 /* Inserts new (or replaces existing) entry into allocation descriptors map.
116 AllocMapEntry* existing = AllocMap_RB_INSERT(map, adesc); local
117 if (existing == NULL) {
126 /* Copy existing entry to the provided buffer and replace it
128 memcpy(replaced, &existing->desc, sizeof(MallocDescEx));
129 AllocMap_RB_REMOVE(map, existing);
130 qemu_free(existing);
  /external/clearsilver/cs/
test_joo.cs 15 FAIL - existing var shouldn't equal empty string [2]
21 FAIL - non-existing should be NULL, not empty string [3]
41 PASS - Non existing var doesn't equal empty string
61 FAIL - non existing var shouldn't exist [9]
75 FAIL - existing string shouldn't evaluate false [11]
89 FAIL - empty string shouldn't evaluate non-existing [13]
95 FAIL - non-empty string shouldn't evaluate non-existing [14]
  /external/webkit/WebCore/loader/
DocLoader.cpp 97 CachedResource* existing = cache()->resourceForURL(fullURL.string());
98 if (!existing || existing->isPreloaded())
103 if (!existing->mustRevalidate(CachePolicyVerify))
105 cache()->revalidateResource(existing, this);
108 if (!existing->mustRevalidate(CachePolicyCache))
110 cache()->revalidateResource(existing, this);
113 cache()->remove(existing);
116 cache()->revalidateResource(existing, this);
Cache.cpp 159 if (CachedResource* existing = resourceForURL(url)) {
160 if (existing->type() != CachedResource::CSSStyleSheet)
162 userSheet = static_cast<CachedCSSStyleSheet*>(existing);
  /external/skia/src/animator/
SkAnimateActive.h 39 void pickUp(SkActive* existing);
SkAnimateActive.cpp 301 void SkActive::pickUp(SkActive* existing) {
310 existing->fInterpolators[index]->timeToValues(
311 existing->fState[index].fTicks - existing->fState[index].fStartTime, existingValues.begin());
323 existing->fState[index].fDuration = (SkMSec) SkScalarMulDiv(fState[index].fDuration,
477 // of the existing animate object then remove it from the list
  /external/v8/src/
virtual-frame.cc 51 // Create a duplicate of an existing valid frame element.
53 // existing information about the backing element. The new information must
54 // not conflict with the existing type information and must be equally or
88 NumberInfo::Type existing = elements_[index].number_info();
89 ASSERT(existing != NumberInfo::kUninitialized);
91 // existing one and (b) is equally or more precise.
93 (existing | info) != NumberInfo::kUninitialized);
94 ASSERT(existing <= info);
97 : existing);
298 // The register already appears on the frame. Either the existing
    [all...]
  /external/bison/tests/
Makefile.am 53 torture.at existing.at regression.at \
  /external/guava/src/com/google/common/collect/
RegularImmutableMap.java 58 Object existing = table[index]; local
59 if (existing == null) {
65 } else if (existing.equals(key)) {
  /cts/tools/dasm/src/java_cup/
lalr_state.java 238 * the state to new or existing states. When considering extension
282 lalr_item itm, new_itm, existing, fix_itm; local
375 /* otherwise relink propagation to items in existing state */
390 /* find corresponding item in the existing state */
391 existing = new_st.items().find(new_itm);
393 /* fix up the item so it points to the existing set */
394 if (existing != null)
395 fix_itm.propagate_items().setElementAt(existing ,l);
  /external/webkit/LayoutTests/fast/js/resources/
const.js 117 const bodyId = (ranConstInitialiser = true, "Const initialiser overwrote existing property");
  /bootable/recovery/updater/
Android.mk 42 # it is different than the existing .list (if any). The register.inc
  /external/v8/test/mjsunit/regress/
regress-326.js 39 assertFalse(3 in nonArray, "don't create non-existing");
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 515 * We are replacing a pre-existing block, so find any
969 Frame existing = startFrames[label]; local
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 498 final int existing = m_constants.findCONSTANT_Utf8 (value); local
499 if (existing > 0)
501 return existing;
  /packages/apps/Email/tests/src/com/android/email/
AccountBackupRestoreTests.java 163 EmailContent.Account existing = local
164 ProviderTestUtils.setupAccount("existing", true, mMockContext);
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 142 do not need to install the new SDK, because your existing SDK already
145 updated SDK Tools) into your existing SDK. Refer to <a
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.cpp 334 HashSet<double> existing; local
336 existing.add(timeList[n].value());
343 else if (!existing.contains(value.value()))
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 158 final int [] existing = cls.getFields (COVERAGE_FIELD_NAME); local
159 if (existing.length > 0)
270 final int [] existing = cls.getFields (SUID_FIELD_NAME); local
271 existingSUIDFieldCount = existing.length;
279 final Field_info field = fields.get (existing [f]);
    [all...]
  /external/v8/test/mjsunit/
object-define-property.js 124 // with default values if called with non existing property (otherwise
228 // an existing property with both a getter and a setter.
array-sort.js 171 assertFalse(4 in obj, "objsort non-existing retained");
  /external/webkit/WebCore/editing/
ReplaceSelectionCommand.cpp 341 Position existing = endOfExistingContent.deepEquivalent(); local
344 return isInsideMailBlockquote && (numEnclosingMailBlockquotes(existing) == numEnclosingMailBlockquotes(inserted));
    [all...]

Completed in 1253 milliseconds

1 2 3