HomeSort by relevance Sort by last modified time
    Searched defs:appId (Results 1 - 2 of 2) sorted by null

  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 146 * 1) If this is a voice search, re-use tab for appId
147 * If there is no appId, use current tab
149 * 3-phone) Reuse tab with same appId
152 final String appId = intent
161 // If a voice search has no appId, it means that it came
163 || (activateVoiceSearch && appId != null))
164 && !mActivity.getPackageName().equals(appId)) {
166 Tab appTab = mTabControl.getTabFromAppId(appId);
177 appTab.setAppId(appId);
190 tab.setAppId(appId);
    [all...]
  /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;

Completed in 63 milliseconds