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

1 2 3 4 5 6

  /libcore/luni/src/main/java/java/util/
Vector.java 27 * All optional operations including adding, removing, and replacing elements are supported.
457 int adding = 0; local
459 if ((adding = elementData.length) == 0) {
460 adding = 1;
463 adding = capacityIncrement;
466 E[] newData = newElementArray(elementData.length + adding);
472 int adding = 0; local
474 if ((adding = elementData.length) == 0) {
475 adding = required;
477 while (adding < required)
    [all...]
LinkedList.java 28 * All optional operations including adding, removing, and replacing elements are supported.
346 int adding = collection.size(); local
347 if (adding == 0) {
371 size += adding;
386 int adding = collection.size(); local
387 if (adding == 0) {
401 size += adding;
  /external/chromium_org/chrome/browser/resources/file_manager/js/
tree.css.js 8 * Custom version of chrome://resources/css/tree.css.js, adding support for
  /external/chromium_org/v8/test/mjsunit/
compare-known-objects-slow.js 61 // Test after adding property to first object.
66 // Test after adding property to second object.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 15 * we can't be adding trees as root; e.g., expr expr.
  /external/chromium_org/content/test/data/indexeddb/
version_change_crash.js 56 // Keep adding to the transaction so it can't commit
  /external/chromium_org/content/test/data/media/
media_source_utils.js 34 failTest('Exception adding source buffer: ' + e.message);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1513.js 28 // Deleting a mapped arguments property and adding it via
regress-386.js 30 // This test creates enough properties in A so that adding i as
34 // Adding i in the second call to the constructor creates a real property,
regress-convert-hole2.js 29 // Test adding undefined from hole in double-holey to string.
  /external/chromium_org/v8/test/webkit/
dfg-add-not-number.js 25 "Tests that adding things that aren't numbers using ++ does not crash or generate bogus code."
dfg-int-overflow-large-constants-in-a-line.js 25 "Tests that our optimization to elide overflow checks understands that if we keep adding huge numbers, we could end up creating a number that is not precisely representable using doubles."
  /external/icu4c/samples/ufortune/resources/
fortune_resources.mak 13 # When adding a resource source (.txt) file for a new locale, the corresponding
  /external/v8/test/mjsunit/regress/
regress-1513.js 28 // Deleting a mapped arguments property and adding it via
regress-386.js 30 // This test creates enough properties in A so that adding i as
34 // Adding i in the second call to the constructor creates a real property,
  /sdk/emulator/opengl/host/libs/libOpenglRender/
Android.mk 69 #LOCAL_LDFLAGS += -m64 # adding -m64 here doesn't work, because it somehow appear BEFORE -m32 in command-line.
  /frameworks/base/core/java/android/app/
LocalActivityManager.java 255 * care of adding this window to a view hierarchy, and likewise dealing
266 boolean adding = false;
276 adding = true;
300 if (adding) {
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview_animations.js 80 * for adding this listener.
95 * for adding this listener.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
event_page.js 51 console.error('Error adding rules: ' + chrome.runtime.lastError);
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-loadfield.js 34 // Make sure there is a transition on adding "bar" inobject property.
alloc-object.js 43 // Test adding a new property after allocation was inlined.
  /external/v8/test/mjsunit/compiler/
regress-loadfield.js 34 // Make sure there is a transition on adding "bar" inobject property.
alloc-object.js 43 // Test adding a new property after allocation was inlined.
  /bionic/libc/arch-mips/string/
memcpy.S 178 addiu a0,a0,64 # adding 64 to dest
181 addiu a1,a1,64 # adding 64 to src
343 addiu a0,a0,64 # adding 64 to dest
346 addiu a1,a1,64 # adding 64 to src
  /external/bluetooth/bluedroid/bta/sys/
bta_sys.h 157 /* eir callback for adding/removeing UUID */
158 typedef void (tBTA_SYS_EIR_CBACK)(UINT16 uuid16, BOOLEAN adding);

Completed in 436 milliseconds

1 2 3 4 5 6