HomeSort by relevance Sort by last modified time
    Searched refs:currentIndex (Results 51 - 75 of 169) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/icu/source/common/unicode/
normlzr.h 752 // of the source in [currentIndex..nextIndex[ .
753 int32_t currentIndex, nextIndex;
  /external/icu/icu4c/source/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/third_party/WebKit/Source/devtools/front_end/screencast/
ScreencastView.js 758 _onNavigationHistory: function(error, currentIndex, entries)
763 this._historyIndex = currentIndex;
766 this._navigationBack.disabled = currentIndex == 0;
767 this._navigationForward.disabled = currentIndex == (entries.length - 1);
769 var url = entries[currentIndex].url;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 516 var currentIndex = this._searchResultIndexForCurrentSelection();
517 var nextIndex = this._currentSearchResultIndex === -1 ? currentIndex : currentIndex + 1;
523 var currentIndex = this._searchResultIndexForCurrentSelection();
524 this.jumpToSearchResult(currentIndex - 1);
  /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 274 int currentIndex = getCurrentItemShowing();
275 if (currentIndex == HOUR_INDEX) {
277 } else if (currentIndex == MINUTE_INDEX) {
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 280 int currentIndex = startIndex;
282 String8 part = parts[currentIndex];
347 return ++currentIndex;
351 if (++currentIndex == size) {
355 return currentIndex;
358 part = parts[currentIndex];
361 if (++currentIndex == size) {
367 return currentIndex;
    [all...]
  /packages/apps/ContactsCommon/libs/
geocoder-2.9.jar 
  /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/chrome/browser/resources/chromeos/chromevox/common/
aria_util.js 498 var currentIndex;
508 currentIndex = ariaIndex;
511 if (listLength == undefined || currentIndex == undefined) {
517 if (currentIndex == undefined) {
520 currentIndex = j + 1;
525 if (currentIndex && listLength) {
526 state.push(['list_position', currentIndex, listLength]);
548 var currentIndex = null;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.cpp 660 unsigned currentIndex = *index + 1;
661 if (!parseValueExpression(tokens, depth, &currentIndex, result))
664 if (operatorValue(tokens, currentIndex) != ')')
666 *index = currentIndex + 1;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.h 177 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 627 var currentIndex = 0;
636 result[result.length] = %_SubString(subject, currentIndex, length);
642 result[result.length] = %_SubString(subject, currentIndex, length);
647 // We ignore a zero-length match at the currentIndex.
648 if (startIndex === endIndex && endIndex === currentIndex) {
653 result[result.length] = %_SubString(subject, currentIndex, startMatch);
669 startIndex = currentIndex = endIndex;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotView.js     [all...]
  /external/chromium_org/third_party/icu/source/common/
locid.cpp 900 KeywordEnumeration(const char *keys, int32_t keywordLen, int32_t currentIndex, UErrorCode &status)
913 current = keywords + currentIndex;
  /external/icu/icu4c/source/common/
locid.cpp 900 KeywordEnumeration(const char *keys, int32_t keywordLen, int32_t currentIndex, UErrorCode &status)
913 current = keywords + currentIndex;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /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...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java 355 int currentIndex = indexOfChild(mSpeedBumpView);
363 if (validIndex && currentIndex != newIndex) {
    [all...]
  /frameworks/base/core/java/android/widget/
TimePickerClockDelegate.java 295 final int currentIndex = parent.indexOfChild(mAmPmLayout);
296 if (targetIndex != currentIndex) {
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 455 int currentIndex = mCurrentMatrixIndex;
460 System.arraycopy(mMatrices, currentIndex, mMatrices, mCurrentMatrixIndex, MATRIX_SIZE);
    [all...]

Completed in 1642 milliseconds

1 23 4 5 6 7