/external/icu4c/common/ |
locavailable.cpp | 132 UResourceBundle installed; local 138 ures_initStackObject(&installed); 140 ures_getByKey(indexLocale, _kIndexTag, &installed, &status); 143 localeCount = ures_getSize(&installed); 147 ures_resetIterator(&installed); 148 while(ures_hasNext(&installed)) { 149 ures_getNextString(&installed, NULL, (const char **)&temp[i++], &status); 166 ures_close(&installed);
|
uresbund.c | 2238 UResourceBundle installed; member in struct:ULocalesContext [all...] |
/frameworks/base/core/java/android/net/http/ |
HttpResponseCache.java | 149 * Returns the currently-installed {@code HttpResponseCache}, or null if 150 * there is no cache installed or it is not a {@code HttpResponseCache}. 153 ResponseCache installed = ResponseCache.getDefault(); local 154 return installed instanceof HttpResponseCache ? (HttpResponseCache) installed : null; 163 * @return the newly-installed cache 169 HttpResponseCache installed = getInstalled(); local 170 if (installed != null) { 171 // don't close and reopen if an equivalent cache is already installed 172 DiskLruCache installedCache = installed.delegate.getCache() [all...] |
/frameworks/base/core/tests/coretests/src/android/net/http/ |
HttpResponseCacheTest.java | 46 HttpResponseCache installed = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); local 47 assertNotNull(installed); 48 assertSame(installed, ResponseCache.getDefault()); 49 assertSame(installed, HttpResponseCache.getDefault());
|
/packages/apps/Settings/src/com/android/settings/ |
AppWidgetPickActivity.java | 41 * When an installed {@link AppWidgetProviderInfo} is selected, this activity 201 * installed {@link AppWidgetProviderInfo} and those provided through 223 * Create list entries for installed {@link AppWidgetProviderInfo} widgets. 226 List<AppWidgetProviderInfo> installed = mAppWidgetManager.getInstalledProviders(); local 227 putAppWidgetItems(installed, null, items);
|
/external/icu4c/i18n/ |
coll.cpp | 260 UResourceBundle installed; local 265 ures_initStackObject(&installed); 267 ures_getByKey(index, "InstalledLocales", &installed, &status); 270 localeCount = ures_getSize(&installed); 274 ures_resetIterator(&installed); 275 while(ures_hasNext(&installed)) { 277 ures_getNextString(&installed, NULL, &tempKey, &status); 297 ures_close(&installed);
|
/packages/apps/Email/src/com/android/email/activity/ |
UIControllerOnePane.java | 42 * One one-pane, only at most one fragment can be installed at a time. 374 * @return currently installed {@link Fragment} (1-pane has only one at most), or null if none 405 * Push the installed fragment into our custom back stack (or optionally 414 final Fragment installed = getInstalledFragment(); local 415 if ((installed instanceof MessageViewFragment) 434 if (installed != null) { 435 if (installed instanceof MessageViewFragment) { 438 Log.d(Logging.LOG_TAG, this + " showFragment: removing " + installed); 440 ft.remove(installed); 443 mPreviousFragment = installed; 473 final Fragment installed = getInstalledFragment(); local 506 final Fragment installed = getInstalledFragment(); local [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
PackagesDiffLogic.java | 82 * Try to be smart and check whether any platform is installed. 89 * <li> If some platform is partially installed, selected anything new/update for it. 115 // keep track of what platform is currently installed and its items 116 if (item.getState() == PkgState.INSTALLED) { 133 // If there are some platforms installed. Pickup anything new in them. 146 // Whether we have platforms installed or not, select everything from the top platform. 247 // Locally installed item are never removed. 324 // Upgrade NEW items to INSTALLED for any local package we already know about. 325 // We can't just change the state of the NEW item to INSTALLED, we also need its 326 // installed package/archive information and so we swap them in-place in the items list 337 PkgItem installed = new PkgItem(newPkg, PkgState.INSTALLED); local [all...] |
PackagesPage.java | 86 * Page that displays both locally installed packages as well as all known 87 * remote available packages. This gives an overview of what is installed 105 TOGGLE_SHOW_INSTALLED_PKG (SWT.CHECK, "Show Installed Packages"), 240 treeColumn3.setToolTipText("Revision currently installed"); 272 mCheckFilterInstalled.setToolTipText("Show Installed"); 280 mCheckFilterInstalled.setText("Installed"); 372 mButtonDelete.setToolTipText("Delete one ore more installed packages"); 697 if (item.getState() == PkgState.INSTALLED) { 714 * at least one installed item and collapses the ones with nothing installed 1105 List<Archive> installed = mUpdaterData.updateOrInstallAll_WithGUI( local [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_prefs_unittest.cc | 340 // Blacklist one installed and one not-installed extension id. 373 // An id we'll make up that doesn't match any installed extension id. 660 installed() { 681 for (size_t i = 0; i < arraysize(installed); ++i) 682 installed[i] = false; 719 // Flags indicating whether each of the extensions has been installed, yet. 720 bool installed[3]; member in class:ExtensionPrefsPreferencesBase 727 if (ext == extensions[i] && !installed[i]) { 729 installed[i] = true [all...] |
/ndk/build/core/ |
definitions.mk | 214 # Note that some modules are never installed (e.g. static libraries). 267 # LOCAL_INSTALLED will contain the location of the installed version 270 modules-LOCALS += INSTALLED 459 module-get-installed = $(__ndk_modules.$1.INSTALLED) [all...] |
/build/core/ |
definitions.mk | 33 # $(ALL_MODULES.$(target)).INSTALLED 35 # target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE. 36 # Some targets may have multiple files listed in the BUILT and INSTALLED 41 # set of installed targets. 466 ## into the list of files that are installed for those modules. 472 define module-installed-files 473 $(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED)) 666 # Given a list of installed modules (short or long names) 669 # therefore, should not be installed. 670 # $(1): mixed list of installed module [all...] |