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

1 2

  /packages/apps/Contacts/src/com/android/contacts/
StickyTabs.java 52 * @param tabIndex The tab index to write to the intent
56 public static Intent setTab(Intent intent, int tabIndex) {
57 if (LOGV) Log.v(TAG, "*********** Setting tab index of intent to " + tabIndex);
59 if (tabIndex == -1) {
62 intent.putExtra(EXTRA_TAB_INDEX, tabIndex);
88 * Persists the given tabIndex. If the value is -1, the previously persisted value is not
91 public static void saveTab(Context context, int tabIndex) {
92 if (LOGV) Log.v(TAG, "*********** Persisting tab index " + tabIndex);
93 if (tabIndex == -1) return;
97 editor.putInt(PREF_LAST_PHONECALL_TAB, tabIndex);
    [all...]
ScrollingTabWidget.java 359 * @param tabIndex index of the tab that was selected
364 void onTabSelectionChanged(int tabIndex, boolean clicked);
  /external/webkit/WebCore/inspector/front-end/
PropertiesSection.js 36 this.propertiesElement.tabIndex = 0;
SidebarPane.js 36 this.titleElement.tabIndex = 0;
DatabaseQueryView.js 35 this.element.tabIndex = 0;
inspector.js     [all...]
  /external/webkit/WebCore/html/
HTMLElement.idl 35 attribute long tabIndex;
HTMLAnchorElement.h 111 virtual short tabIndex() const;
HTMLElement.h 44 virtual short tabIndex() const;
HTMLFormControlElement.h 107 virtual short tabIndex() const;
HTMLFormControlElement.cpp 296 short HTMLFormControlElement::tabIndex() const
299 return Element::tabIndex();
HTMLAnchorElement.cpp 74 // If not a link we should still be able to focus the element if it has tabIndex.
83 // Only allow links with tabIndex or contentEditable to be mouse focusable.
357 short HTMLAnchorElement::tabIndex() const
360 return Element::tabIndex();
HTMLElement.cpp 161 int tabindex = indexstring.toIntStrict(&parsedOK); local
163 // Clamp tabindex to the range of 'short' to match Firefox's behavior.
164 setTabIndexExplicitly(max(static_cast<int>(std::numeric_limits<short>::min()), min(tabindex, static_cast<int>(std::numeric_limits<short>::max()))));
777 short HTMLElement::tabIndex() const
780 return Element::tabIndex();
    [all...]
  /external/webkit/WebCore/dom/
NodeRareData.h 92 short tabIndex() const { return m_tabIndex; }
Document.cpp     [all...]
Node.h 298 virtual short tabIndex() const;
  /external/webkit/WebKit/win/Interfaces/
DOMHTML.idl 477 - (int)tabIndex;
479 HRESULT tabIndex([out, retval] int* result);
482 - (void)setTabIndex:(int)tabIndex;
484 HRESULT setTabIndex([in] int tabIndex);
735 - (int)tabIndex;
737 HRESULT tabIndex([out, retval] int* result);
740 - (void)setTabIndex:(int)tabIndex;
742 HRESULT setTabIndex([in] int tabIndex);
897 - (int)tabIndex;
899 HRESULT tabIndex([out, retval] int* result)
    [all...]
  /frameworks/base/core/java/android/widget/
TabWidget.java 451 private TabClickListener(int tabIndex) {
452 mTabIndex = tabIndex;
468 * @param tabIndex index of the tab that was selected
473 void onTabSelectionChanged(int tabIndex, boolean clicked);
TabHost.java 131 public void onTabSelectionChanged(int tabIndex, boolean clicked) {
132 setCurrentTab(tabIndex);
  /frameworks/base/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];
  /external/webkit/WebKit/android/nav/
CachedNode.h 171 int tabIndex() const { return mTabIndex; }
CachedFrame.cpp 145 if (testData.mNode->tabIndex() != bestData.mNode->tabIndex()) {
146 if (testData.mNode->tabIndex() < bestData.mNode->tabIndex()
147 || (mRoot->mCursor && mRoot->mCursor->tabIndex() < bestData.mNode->tabIndex())) {
    [all...]
CacheBuilder.cpp 437 int tabindex = node->isElementNode() ? node->tabIndex() : 0; local
446 renderer->hasOverflowClip() ? "true" : "false", tabindex,
    [all...]
  /external/webkit/WebKit/win/
DOMHTMLClasses.cpp 772 HRESULT STDMETHODCALLTYPE DOMHTMLSelectElement::tabIndex(
780 /* [in] */ int /*tabIndex*/)
1163 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::tabIndex(
1171 /* [in] */ int /*tabIndex*/)
    [all...]
DOMHTMLClasses.h     [all...]

Completed in 640 milliseconds

1 2