Searched refs:splice (Results 76 - 100 of 293) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/sync_internals/
H A Dsync_search.js91 resultsDataModel.splice(0, resultsDataModel.length);
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dtrack_list.js214 this.playOrder.splice(0, 0, this.currentTrackIndex);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfolder_shortcuts_data_model.js321 this.array_.splice(i, 0, value);
364 this.array_.splice(i, 1);
469 // 2) 'splice' and 'sorted' events are not implemented. These events are
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js755 var cut = self.splice(0, 6);
759 var cut = self.splice(0, 6);
1221 { object: arr, type: 'splice', index: 2, removed: [, 'd'], addedCount: 0 },
1222 { object: arr, type: 'splice', index: 1, removed: ['b'], addedCount: 0 },
1223 { object: arr, type: 'splice', index: 1, removed: [], addedCount: 9 },
1224 { object: arr2, type: 'splice', index: 1, removed: ['beta'], addedCount: 0 },
1225 { object: arr3, type: 'splice', index: 0, removed: ['hello',, 'goodbye',,,,], addedCount: 0 },
1226 { object: arr3, type: 'splice', index: 0, removed: [], addedCount: 1 },
1227 { object: arr3, type: 'splice', index: 1, removed: [], addedCount: 1 },
1228 { object: arr3, type: 'splice', inde
1254 var splice = spliceRecords[0]; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTabbedPane.js200 this._tabs.splice(insertionIndexForObjectInListSortedByFunction(tab, this._tabs, comparator.bind(this)), 0, tab);
253 this._tabsHistory.splice(this._tabsHistory.indexOf(tab), 1);
254 this._tabs.splice(this._tabs.indexOf(tab), 1);
317 this._tabsHistory.splice(this._tabsHistory.indexOf(tab), 1);
318 this._tabsHistory.splice(0, 0, tab);
731 this._tabs.splice(oldIndex, 1);
734 this._tabs.splice(index, 0, tab);
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dusbsignhelper.js256 this.waitingForTouchGnubbies_.splice(index, 1);
H A Dutil.js154 UTIL_events.splice(0, UTIL_events.length - UTIL_max_events);
/external/chromium_org/chrome/browser/resources/google_now/
H A Dcards.js337 group.cards.splice(i, 1);
/external/chromium_org/chrome/browser/resources/standalone/
H A Dstandalone_hack.js305 this.splice(index, 1);
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dweb_request_internal_custom_bindings.js126 $Array.splice(this.subEvents, idx, 1);
/external/chromium_org/content/browser/resources/media/
H A Dwebrtc_internals.js275 userMediaRequests.splice(i, 1);
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A DNaClAM.js203 handlers.splice(index, 1);
/external/chromium_org/remoting/webapp/
H A Dpaired_client_manager.js251 this.pairedClients_.splice(i, 1);
/external/chromium_org/third_party/flot/
H A Djquery.flot.threshold.min.js43 */(function(e){function n(t){function n(t,n,r,i,s){var o=r.pointsize,u,a,f,l,c,h=e.extend({},n);h.datapoints={points:[],pointsize:o,format:r.format},h.label=null,h.color=s,h.threshold=null,h.originSeries=n,h.data=[];var p=r.points,d=n.lines.show,v=[],m=[],g;for(u=0;u<p.length;u+=o){a=p[u],f=p[u+1],c=l,f<i?l=v:l=m;if(d&&c!=l&&a!=null&&u>0&&p[u-o]!=null){var y=a+(i-f)*(a-p[u-o])/(f-p[u-o+1]);c.push(y),c.push(i);for(g=2;g<o;++g)c.push(p[u+g]);l.push(null),l.push(null);for(g=2;g<o;++g)l.push(p[u+g]);l.push(y),l.push(i);for(g=2;g<o;++g)l.push(p[u+g])}l.push(a),l.push(f);for(g=2;g<o;++g)l.push(p[u+g])}r.points=m,h.datapoints.points=v;if(h.datapoints.points.length>0){var b=e.inArray(n,t.getData());t.getData().splice(b+1,0,h)}}function r(t,r,i){if(!r.threshold)return;r.threshold instanceof Array?(r.threshold.sort( (…)
/external/chromium_org/third_party/lcov/bin/
H A Dmcov196 splice(@gcov_data,0,4);
/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Dasync_util.js148 this.pendingTasks_.splice(index, 1);
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Darray_data_model.js125 * This dispatches a splice event.
126 * This implementation runs sort after splice and creates permutation for
133 splice: function(index, deleteCount, var_args) {
168 // TODO(arv): Maybe unify splice and change events?
169 var spliceEvent = new Event('splice');
203 * This dispatches a splice event.
211 this.splice.apply(this, args);
H A Dtouch_handler.js646 recentTouches.splice(0, recentTouches.length - 2);
664 recentTouches.splice(0, 2);
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h565 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/llvm/utils/
H A Dllvm-native-gxx24 splice (@ARGV, $i, 1);
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dslice_group_track.js160 slices[i].subSlices.splice(0,
/external/chromium_org/chrome/browser/resources/
H A Didentity_internals.js167 this.data_.splice(tokenIndex, 1);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dmarkselection.js56 else array.splice(addAt++, 0, mark);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dpayload_splitter.cc109 packet_list->splice(it, new_packets, new_packets.begin(),
334 packet_list->splice(it, new_packets, new_packets.begin(),
/external/chromium_org/v8/test/mjsunit/
H A Dobject-freeze.js328 assertThrows(function() { obj.splice(0,0); }, TypeError);
331 // Verify that an item can't be changed with splice.
332 assertThrows(function() { obj.splice(0,1,1); }, TypeError);

Completed in 713 milliseconds

1234567891011>>