OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentTab
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
TabManager.java
30
private TestShellTab
mCurrentTab
;
58
if (
mCurrentTab
== null) createTab(mStartupUrl);
78
return
mCurrentTab
;
97
if (
mCurrentTab
!= null) {
98
mContentViewHolder.removeView(
mCurrentTab
.getContentView());
99
mCurrentTab
.destroy();
102
mCurrentTab
= tab;
104
mToolbar.showTab(
mCurrentTab
);
105
mContentViewHolder.addView(
mCurrentTab
.getContentView());
106
mContentViewRenderView.setCurrentContentView(
mCurrentTab
.getContentView())
[
all
...]
/packages/apps/Browser/src/com/android/browser/
NfcHandler.java
41
Tab
mCurrentTab
;
72
mIsPrivate =
mCurrentTab
.getWebView().isPrivateBrowsingEnabled();
80
mCurrentTab
= mController.getCurrentTab();
81
if ((
mCurrentTab
!= null) && (
mCurrentTab
.getWebView() != null)) {
93
if ((
mCurrentTab
== null) || mIsPrivate) {
97
String currentUrl =
mCurrentTab
.getUrl();
TabControl.java
49
private int
mCurrentTab
= -1;
75
Tab t = getTab(
mCurrentTab
);
88
Tab t = getTab(
mCurrentTab
);
100
Tab t = getTab(
mCurrentTab
);
131
return getTab(
mCurrentTab
);
139
return
mCurrentTab
;
247
mCurrentTab
= -1;
251
mCurrentTab
= getTabPosition(current);
426
if (
mCurrentTab
== -1) {
645
Tab current = getTab(
mCurrentTab
);
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java
96
private int
mCurrentTab
= TabState.DEFAULT;
234
mCurrentTab
= loadLastTabPreference();
240
mCurrentTab
= savedState.getInt(EXTRA_KEY_SELECTED_TAB);
242
if (
mCurrentTab
>= TabState.COUNT ||
mCurrentTab
< 0) {
244
mCurrentTab
= TabState.DEFAULT;
315
if (tab ==
mCurrentTab
) {
318
mCurrentTab
= tab;
323
if (
mCurrentTab
!= actionBarSelectedNavIndex) {
324
mActionBar.setSelectedNavigationItem(
mCurrentTab
);
[
all
...]
/frameworks/base/core/java/android/widget/
TabHost.java
62
protected int
mCurrentTab
= -1;
102
mCurrentTab
= -1;
209
mTabWidget.getChildTabViewAt(
mCurrentTab
).requestFocus();
239
if (
mCurrentTab
== -1) {
262
return
mCurrentTab
;
266
if (
mCurrentTab
>= 0 &&
mCurrentTab
< mTabSpecs.size()) {
267
return mTabSpecs.get(
mCurrentTab
).getTag();
273
if (
mCurrentTab
>= 0 &&
mCurrentTab
< mTabSpecs.size())
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailTabCarousel.java
69
private int
mCurrentTab
= TAB_INDEX_ABOUT;
213
scrollTo(
mCurrentTab
== TAB_INDEX_ABOUT ? 0 : mAllowedHorizontalScrollLength, 0);
396
setY(getStoredYCoordinateForTab(
mCurrentTab
));
460
mCurrentTab
= position;
/packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java
250
private String
mCurrentTab
= null;
702
final boolean tabChanged = !currentTab.equals(
mCurrentTab
);
703
mCurrentTab
= currentTab;
[
all
...]
Completed in 741 milliseconds