HomeSort by relevance Sort by last modified time
    Searched defs:splice (Results 1 - 15 of 15) sorted by null

  /bionic/libc/arch-arm/syscalls/
splice.S 5 ENTRY(splice) function
22 END(splice)
  /bionic/libc/arch-arm64/syscalls/
splice.S 5 ENTRY(splice) function
14 END(splice)
  /bionic/libc/arch-mips/syscalls/
splice.S 5 ENTRY(splice) function
19 END(splice)
  /bionic/libc/arch-mips64/syscalls/
splice.S 5 ENTRY(splice) function
25 END(splice)
  /bionic/libc/arch-x86/syscalls/
splice.S 5 ENTRY(splice) function
46 END(splice)
  /bionic/libc/arch-x86_64/syscalls/
splice.S 5 ENTRY(splice) function
16 END(splice)
  /external/chromium_org/v8/test/mjsunit/
array-functions-prototype-misc.js 29 * @fileoverview Test splice, shift, unshift, slice and join on small
74 return array.splice(start, len);
77 return array.splice(start, len, elt);
108 return Array.prototype.splice.call(array, start, len);
111 return Array.prototype.splice.call(array, start, len, elt);
199 // Splice works differently from join.
280 var top = a.splice(LARGE, 5);
285 a.splice(LARGE, 0, LARGE);
296 var top = a.splice(LARGE >> 1, 5);
301 a.splice(LARGE >> 1, 0, LARGE >> 1, void 0, void 0, void 0, void 0)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-6.js 15 Array.prototype.splice.call(v);
39 test_receiver(88, "Array.prototype.splice.call(88, 1, 1)");
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js 755 var cut = self.splice(0, 6);
759 var cut = self.splice(0, 6);
1255 var splice = spliceRecords[0]; variable
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.cpp 113 splice((EdgePointer) sym(a), b);
146 void CDelaunay::splice(EdgePointer a, EdgePointer b) function in class:CDelaunay
163 splice(ans, (EdgePointer) lnext(a));
164 splice((EdgePointer) sym(ans), b);
172 splice(ans, (EdgePointer) sym(a));
173 splice((EdgePointer) sym(ans), (EdgePointer) oprev(b));
180 splice(e, (EdgePointer) oprev(e));
181 splice((EdgePointer) sym(e), (EdgePointer) oprev(sym(e)));
  /external/llvm/include/llvm/ADT/
ilist.h 483 // transfer - The heart of the splice function. Move linked list nodes from
510 // Splice [first, last) into its new position.
569 // Splice members - defined in terms of transfer...
570 void splice(iterator where, iplist &L2) { function in class:llvm::iplist
574 void splice(iterator where, iplist &L2, iterator first) { function in class:llvm::iplist
579 void splice(iterator where, iplist &L2, iterator first, iterator last) { function in class:llvm::iplist
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 565 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { function in class:llvm::MachineBasicBlock
566 // The range splice() doesn't allow noop moves, but this one does.
568 splice(Where, Other, From, std::next(From));
576 void splice(iterator Where, MachineBasicBlock *Other, function in class:llvm::MachineBasicBlock
578 Insts.splice(Where.getInstrIterator(), Other->Insts,
  /external/chromium_org/third_party/dom_distiller_js/package/js/
domdistiller.js 95 function Bs(a,b,c){a.splice(b,c)}
136 function Cs(a,b,c,d){a.splice(b,c,d)}
207 function th(a,b){a.length>=b&&a.splice(0,b);return a}
305 function Ds(a,b,c,d){Array.prototype.splice.apply(a,[b,c].concat(d))}
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js 9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
65 goog.array.insertAt=function(a,b,c){goog.array.splice(a,c,0,b)};goog.array.insertArrayAt=function(a,b,c){goog.partial(goog.array.splice,a,c,0).apply(null,b)};goog.array.insertBefore=function(a,b,c){var d;2==arguments.length||0>(d=goog.array.indexOf(a,c))?a.push(b):goog.array.insertAt(a,b,d)};goog.array.remove=function(a,b){var c=goog.array.indexOf(a,b),d;(d=0<=c)&&goog.array.removeAt(a,c);return d};
66 goog.array.removeAt=function(a,b){goog.asserts.assert(null!=a.length);return 1==goog.array.ARRAY_PROTOTYPE_.splice.call(a,b,1).length};goog.array.removeIf=function(a,b,c){b=goog.array.findIndex(a,b,c);return 0<=b?(goog.array.removeAt(a,b),!0):!1};goog.array.concat=function(a){return goog.array.ARRAY_PROTOTYPE_.concat.apply(goog.array.ARRAY_PROTOTYPE_,arguments)};goog.array.join=function(a){return goog.array.ARRAY_PROTOTYPE_.concat.apply(goog.array.ARRAY_PROTOTYPE_,arguments)};
68 goog.array.splice=function(a,b,c,d){goog.asserts.assert(null!=a.length);return goog.array.ARRAY_PROTOTYPE_.splice.apply(a,goog.array.slice(arguments,1))};goog.array.slice=function(a,b,c){goog.asserts.assert(null!=a.length);return 2>=arguments.length?goog.array.ARRAY_PROTOTYPE_.slice.call(a,b):goog.array.ARRAY_PROTOTYPE_.slice.call(a,b,c)};
    [all...]
chromeVoxChromeOptionsScript.js 9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
    [all...]

Completed in 636 milliseconds