/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 | 87 * @param selectTop If true, select the top platform. If the top platform has nothing installed, 88 * select all items in it; if it is partially installed, at least select the platform and 89 * system images if none of the system images are installed. 120 // keep track of what platform is currently installed (that is, has at least 121 // one thing installed.) 122 if (item.getState() == PkgState.INSTALLED) { 143 // If the top platform has nothing installed at all, select everything in it 151 // The top platform has at least one thing installed. 153 // First make sure the platform package itself is installed, or select it. 162 // Check we have at least one system image installed, otherwise select the 413 PkgItem installed = new PkgItem(newPkg, PkgState.INSTALLED); local [all...] |
PackagesPage.java | 89 * Page that displays both locally installed packages as well as all known 90 * remote available packages. This gives an overview of what is installed 109 TOGGLE_SHOW_INSTALLED_PKG (SWT.CHECK, "Show Installed Packages"), 245 treeColumn3.setToolTipText("Revision currently installed"); 277 mCheckFilterInstalled.setToolTipText("Show Installed"); 285 mCheckFilterInstalled.setText("Installed"); 377 mButtonDelete.setToolTipText("Delete one ore more installed packages"); 706 if (item.getState() == PkgState.INSTALLED) { 723 * at least one installed item and collapses the ones with nothing installed 1026 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 | 283 # Note that some modules are never installed (e.g. static libraries). 336 # LOCAL_INSTALLED will contain the location of the installed version 339 modules-LOCALS += INSTALLED 528 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...] |