OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appId
(Results
1 - 4
of
4
) sorted by null
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java
163
int
appId
= cursor.getInt(COLUMN_APPID);
164
String out = name + "|" + frequency + "|" + locale + "|" +
appId
;
216
String
appid
= null;
local
219
if (st.hasMoreTokens())
appid
= st.nextToken();
221
int appidInt =
appid
!= null? Integer.parseInt(
appid
) : 0;
/packages/apps/Browser/src/com/android/browser/
TabControl.java
157
Tab createNewTab(boolean closeOnExit, String
appId
, String url) {
166
Tab t = new Tab(mActivity, w, closeOnExit,
appId
, url);
175
*
appId
(null), and url(null).
317
t.setAppId(state.getString(Tab.
APPID
));
BrowserActivity.java
461
final String
appId
= intent
464
// If a voice search has no
appId
, it means that it came
466
|| (activateVoiceSearch &&
appId
!= null))
467
&& !getPackageName().equals(
appId
)
469
Tab appTab = mTabControl.getTabFromId(
appId
);
471
Log.i(LOGTAG, "Reusing tab for " +
appId
);
512
openTabAndShow(urlData, true,
appId
);
[
all
...]
Tab.java
157
static final String
APPID
= "
appid
";
[
all
...]
Completed in 288 milliseconds