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

1 2

  /frameworks/base/core/java/android/preference/
PreferenceGroup.java 150 int insertionIndex = Collections.binarySearch(mPreferenceList, preference);
151 if (insertionIndex < 0) {
152 insertionIndex = insertionIndex * -1 - 1;
160 mPreferenceList.add(insertionIndex, preference);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotGridNodes.js 193 function insertRetrievedChild(item, insertionIndex)
198 this.insertChild(this._savedChildren[hash], insertionIndex);
202 this.insertChild(this._createChildNode(item), insertionIndex);
204 function insertShowMoreButton(from, to, insertionIndex)
207 this.insertChild(button, insertionIndex);
213 var insertionIndex = 0;
218 insertShowMoreButton.call(this, 0, items.startPosition, insertionIndex++);
222 insertRetrievedChild.call(this, items[i], insertionIndex++);
224 insertShowMoreButton.call(this, items.endPosition, items.totalLength, insertionIndex++);
235 insertionIndex += range.to - range.from
    [all...]
TextEditorModel.js 270 var insertionIndex = range.startColumn ? range.startLine + 1 : range.startLine;
271 for (var i = 0; i < insertionIndex; ++i)
273 for (var i = insertionIndex + newLines.length - 1; i < attributes.length; ++i)
treeoutline.js 73 var insertionIndex;
75 insertionIndex = insertionIndexForObjectInListSortedByFunction(child, this.children, this.treeOutline.comparator);
77 insertionIndex = this.children.length;
78 this.insertChild(child, insertionIndex);
  /frameworks/base/core/java/android/print/
PrinterCapabilitiesInfo.java 409 final int insertionIndex = mPrototype.mMediaSizes.size();
413 mPrototype.mDefaults[PROPERTY_MEDIA_SIZE] = insertionIndex;
437 final int insertionIndex = mPrototype.mResolutions.size();
441 mPrototype.mDefaults[PROPERTY_RESOLUTION] = insertionIndex;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 501 final int insertionIndex = findInsertionIndex(currentNodeArray, word[charIndex]);
504 currentNodeArray.mData.add(insertionIndex, newPtNode);
633 final int insertionIndex = findInsertionIndex(nodeArray, character);
634 if (nodeArray.mData.size() <= insertionIndex) return CHARACTER_NOT_FOUND_INDEX;
635 return character == nodeArray.mData.get(insertionIndex).mChars[0] ? insertionIndex
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardHostView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityRenderObject.cpp     [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java     [all...]
  /external/chromium_org/v8/src/
mirror-debugger.js 1242 PropertyMirror.prototype.insertionIndex = function() {
    [all...]
  /external/v8/src/
mirror-debugger.js 1176 PropertyMirror.prototype.insertionIndex = function() {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 334 milliseconds

1 2