HomeSort by relevance Sort by last modified time
    Searched refs:currentIndex (Results 26 - 50 of 118) sorted by null

12 3 4 5

  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 275 private int currentIndex = -1;
280 return currentIndex < size - 1;
288 return elements[++currentIndex];
296 removeAt(currentIndex--);
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 224 int currentIndex = -1;
232 if (currentIndex >= 0)
236 currentIndex = j;
240 if (currentIndex == -1 && !charsSet.EmptyAllowed)
242 indices.Add(currentIndex);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 426 int currentIndex = m_next-1;
428 if((currentIndex >= 0) && (currentIndex < vec.size()))
429 return vec.elementAt(currentIndex);
  /external/chromium_org/third_party/WebKit/Source/platform/
Timer.cpp 313 static inline bool parentHeapPropertyHolds(const TimerBase* current, const Vector<TimerBase*>& heap, unsigned currentIndex)
315 if (!currentIndex)
317 unsigned parentIndex = (currentIndex - 1) / 2;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPIteratorImpl.java 396 * @param currentIndex the current array index if an arrey is traversed
399 protected String accumulatePath(XMPNode currNode, String parentPath, int currentIndex)
410 segmentName = "[" + String.valueOf(currentIndex) + "]";
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SourceFrame.js 504 var currentIndex = this._searchResultAfterSelectionIndex(this._textEditor.selection());
505 var nextIndex = this._currentSearchResultIndex === -1 ? currentIndex : currentIndex + 1;
511 var currentIndex = this._searchResultAfterSelectionIndex(this._textEditor.selection());
512 this.jumpToSearchResult(currentIndex - 1);
ScreencastView.js 807 _onNavigationHistory: function(error, currentIndex, entries)
812 this._historyIndex = currentIndex;
815 this._navigationBack.disabled = currentIndex == 0;
816 this._navigationForward.disabled = currentIndex == (entries.length - 1);
818 var url = entries[currentIndex].url;
    [all...]
HeapSnapshotView.js     [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
normlzr.h 752 // of the source in [currentIndex..nextIndex[ .
753 int32_t currentIndex, nextIndex;
  /external/icu4c/common/unicode/
normlzr.h 752 // of the source in [currentIndex..nextIndex[ .
753 int32_t currentIndex, nextIndex;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
background.js 188 * |currentParentId| and |currentIndex| indicate the current position in
191 Node.prototype.moveInModel = function(currentParentId, currentIndex, callback) {
194 if (index == currentIndex) {
198 } else if (index > currentIndex) {
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
plotter.js 602 * @param {number} currentIndex The index into the |this.plotData| array of the
609 Plotter.prototype.updateCursor_ = function(coordinateSystem, currentIndex,
618 if (currentIndex == 0) {
624 coordinateSystem.xPixel(this.plotData_[dataIndex][currentIndex - 1][0]);
626 coordinateSystem.xPixel(this.plotData_[dataIndex][currentIndex][0]);
634 if (currentIndex == this.plotData_[dataIndex].length - 1) {
636 coordinateSystem.xPixel(this.plotData_[dataIndex][currentIndex][0]);
641 coordinateSystem.xPixel(this.plotData_[dataIndex][currentIndex + 1][0]);
643 coordinateSystem.xPixel(this.plotData_[dataIndex][currentIndex][0]);
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 243 private int currentIndex = 0;
304 currentOffset = classDefItem.placeAt(currentOffset, currentIndex++);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 106 int currentIndex = (Integer) ruleName2.invoke(lexObj, new Object[0]);
107 if ( currentIndex!=input.size() ) {
108 ps2.println("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
gUnitExecutor.java 260 int currentIndex = (Integer) ruleName2.invoke(lexObj, new Object[0]);
261 if ( currentIndex!=input.size() ) {
262 ps2.print("extra text found, '"+input.substring(currentIndex, input.size()-1)+"'");
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 275 int currentIndex = getCurrentItemShowing();
276 if (currentIndex == HOUR_INDEX) {
278 } else if (currentIndex == MINUTE_INDEX) {
    [all...]
  /external/v8/src/
string.js 628 var currentIndex = 0;
637 result.push(SubString(subject, currentIndex, length));
643 result.push(SubString(subject, currentIndex, length));
648 // We ignore a zero-length match at the currentIndex.
649 if (startIndex === endIndex && endIndex === currentIndex) {
654 if (currentIndex + 1 == startMatch) {
655 result.push(%_StringCharAt(subject, currentIndex));
657 result.push(%_SubString(subject, currentIndex, startMatch));
678 startIndex = currentIndex = endIndex;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 105 int insertIndex, int currentIndex,
122 insertIndex, currentIndex, graphicsFragments);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.cpp 625 unsigned currentIndex = *index + 1;
626 if (!parseValueExpression(tokens, depth, &currentIndex, result))
629 if (operatorValue(tokens, currentIndex) != ')')
631 *index = currentIndex + 1;
CSSParserValues.h 182 unsigned currentIndex() { return m_current; }
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 121 eapChanged(eapSelect->currentIndex());
190 int auth = authSelect->currentIndex();
278 int encr = encrSelect->currentIndex();
638 eapChanged(eapSelect->currentIndex());
  /external/chromium_org/v8/src/
string.js 660 var currentIndex = 0;
669 %_CallFunction(result, %_SubString(subject, currentIndex, length),
676 %_CallFunction(result, %_SubString(subject, currentIndex, length),
682 // We ignore a zero-length match at the currentIndex.
683 if (startIndex === endIndex && endIndex === currentIndex) {
688 %_CallFunction(result, %_SubString(subject, currentIndex, startMatch),
706 startIndex = currentIndex = endIndex;
  /external/icu4c/common/
locid.cpp 900 KeywordEnumeration(const char *keys, int32_t keywordLen, int32_t currentIndex, UErrorCode &status)
913 current = keywords + currentIndex;
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 659 int currentIndex = mCurrentIndex;
660 MediaItem item = mData[currentIndex % DATA_CACHE_SIZE];
672 task = startTaskIfNeeded(currentIndex + offset, bit);
    [all...]

Completed in 722 milliseconds

12 3 4 5