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

1 2 3 4

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_GetVLCBits.c 99 OMX_U8 tabIndex, markerBit;
183 tabIndex = 1;
184 while (pRunIndexTableL0[tabIndex] <= unpackRetIndex)
186 tabIndex++;
188 storeRun = tabIndex - 1;
189 storeLevel = unpackRetIndex - pRunIndexTableL0[tabIndex - 1] + 1;
220 tabIndex = 1;
221 while (pRunIndexTableL1[tabIndex] <= unpackRetIndex)
223 tabIndex++;
225 storeRun = tabIndex - 1
    [all...]
  /external/chromium-trace/
init.js 15 timelineViewEl.tabIndex = 1;
  /external/aac/libAACenc/src/
quantize.cpp 125 INT tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE);
127 accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
138 INT tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE);
140 accu = fMultDiv2(FDKaacEnc_mTab_3_4[tabIndex],FDKaacEnc_quantTableE[totalShift&3]);
178 INT ex,specExp,tabIndex;
189 tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE);
192 s = FDKaacEnc_mTab_4_3Elc[tabIndex];
212 INT ex,specExp,tabIndex;
223 tabIndex = (INT)(accu>>(DFRACT_BITS-2-MANT_DIGITS))&(~MANT_SIZE);
226 s = FDKaacEnc_mTab_4_3Elc[tabIndex];
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui.js 94 var tabIndex = this._tabs.tabs('option', 'selected');
95 this._tabIndexToSavedScrollOffset[tabIndex] = document.body.scrollTop;
97 _restoreScrollOffset: function(tabIndex)
99 document.body.scrollTop = this._tabIndexToSavedScrollOffset[tabIndex] || 0;
165 var tabIndex = this._tabNames.indexOf(tabName);
166 this._tabs.tabs('enable', tabIndex);
167 this._tabs.tabs('select', tabIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SearchController.js 75 this._findButtonElement.tabIndex = -1;
81 this._replaceButtonElement.tabIndex = -1;
88 this._prevButtonElement.tabIndex = -1;
121 cancelButtonElement.tabIndex = -1;
418 this._replaceCheckboxElement.tabIndex = -1;
425 this._replaceCheckboxElement.tabIndex = 0;
Dialog.js 43 this._glassPane.element.tabIndex = 0;
47 this._element.tabIndex = 0;
HelpScreen.js 44 this.element.tabIndex = 0;
SidebarPane.js 112 this.element.tabIndex = 0;
WorkersSidebarPane.js 67 this._workerListElement.tabIndex = 0;
CallStackSidebarPane.js 36 this.bodyElement.tabIndex = 0;
TextPrompt.js 203 this._oldTabIndex = this._element.tabIndex;
204 if (this._element.tabIndex < 0)
205 this._element.tabIndex = 0;
213 this._element.tabIndex = this._oldTabIndex;
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailTabCarousel.java 401 * last requested Y coordinate for the given tabIndex.
403 public void moveToYCoordinate(int tabIndex, float y) {
405 storeYCoordinate(tabIndex, y);
409 * Store this information as the last requested Y coordinate for the given tabIndex.
411 public void storeYCoordinate(int tabIndex, float y) {
412 mYCoordinateArray[tabIndex] = y;
417 * tab given by tabIndex.
419 public float getStoredYCoordinateForTab(int tabIndex) {
420 return mYCoordinateArray[tabIndex];
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 165 return isNonKeyboardFocusableShadowHost(node) ? 0 : node->tabIndex();
429 Node* FocusController::findNodeWithExactTabIndex(Node* start, int tabIndex, FocusDirection direction)
434 if (shouldVisit(node) && adjustedTabIndex(node) == tabIndex)
440 static Node* nextNodeWithGreaterTabIndex(Node* start, int tabIndex)
446 if (shouldVisit(node) && node->tabIndex() > tabIndex && node->tabIndex() < winningTabIndex) {
448 winningTabIndex = node->tabIndex();
455 static Node* previousNodeWithLowerTabIndex(Node* start, int tabIndex)
462 if ((shouldVisit(node) || isNonKeyboardFocusableShadowHost(node)) && currentTabIndex < tabIndex && currentTabIndex > winningTabIndex)
    [all...]
FocusController.h 109 Node* findNodeWithExactTabIndex(Node* start, int tabIndex, FocusDirection);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.idl 29 [CustomElementCallbacks=Enable] attribute long tabIndex;
HTMLAnchorElement.h 120 virtual short tabIndex() const;
HTMLElement.h 47 virtual short tabIndex() const;
HTMLFormControlElement.h 141 virtual short tabIndex() const;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.js 128 box.tabIndex = -1;
145 title.tabIndex = 0;
161 desc.tabIndex = -1;
176 more.tabIndex = 0;
233 iframe.tabIndex = 0;
240 iframe.tabIndex = -1;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 324 int tabIndex = this.tabFolder.getSelectionIndex();
325 int lineIndex = tabIndex<0 ? -1 : this.tabs[tabIndex].table.getSelectionIndex();
355 tabIndex = c;
368 if (tabIndex >= 0 && lineIndex >= 0) {
369 this.tabFolder.setSelection(tabIndex);
370 Table table = this.tabs[tabIndex].table;
  /external/chromium_org/remoting/webapp/
ui_mode.js 237 // If any dialogs have been dismissed, restore all the tabIndex attributes.
242 element.tabIndex = element.getAttribute(kSavedAttributeName);
249 var selector = '[tabIndex],a,area,button,input,select,textarea';
262 element.setAttribute(kSavedAttributeName, element.tabIndex);
263 element.tabIndex = -1;
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c 245 Word32 tabIndex;
255 tabIndex = (accu >> (INT_BITS-2-MANT_DIGITS)) & (~MANT_SIZE);
258 s = mTab_4_3[tabIndex];
  /frameworks/base/core/java/android/widget/
TabWidget.java 541 private TabClickListener(int tabIndex) {
542 mTabIndex = tabIndex;
558 * @param tabIndex index of the tab that was selected
563 void onTabSelectionChanged(int tabIndex, boolean clicked);
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/ppp_instance/
ppapi_ppp_instance.js 60 plugin.tabIndex = 0;
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 58 // Exclude links from the tab order. The tabIndex is added to the thumbnail
60 link.tabIndex = '-1';

Completed in 357 milliseconds

1 2 3 4