Searched refs:loaded (Results 1 - 11 of 11) sorted by relevance

/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaAnalyzer.java77 JavaClass loaded = mClassCache.get(className);
78 if (loaded != null) {
79 return loaded;
82 loaded = loadPrimitive(className);
83 if (loaded == null) {
91 loaded = new JavaClass(Class.forName(realClassName, false, mClassLoader));
92 mClassCache.put(className, loaded);
94 loaded = loadRecursively(className);
95 mClassCache.put(className, loaded);
103 if (loaded
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DJobStoreTest.java119 // Check that the loaded task has the correct runtimes.
152 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next();
153 assertTasksEqual(task, loaded.getJob());
170 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next();
171 assertEquals("Source package not equal.", loaded.getSourcePackageName(),
173 assertEquals("Source user not equal.", loaded.getSourceUserId(),
191 JobStatus loaded = jobStatusSet.getAllJobs().iterator().next();
192 assertEquals("Period not equal.", loaded.getJob().getIntervalMillis(),
194 assertEquals("Flex not equal.", loaded.getJob().getFlexMillis(),
218 JobStatus loaded
[all...]
/frameworks/base/tests/SmokeTest/tests/
H A DAndroid.mk12 # automatically get all of its classes loaded into our environment.
/frameworks/rs/cpu_ref/
H A DrsCpuExecutable.cpp135 void *loaded = nullptr; local
145 loaded = loadSOHelper(scriptSOName.c_str(), cacheDir, resName, alreadyLoaded);
147 if (loaded == nullptr) {
160 loaded = loadSOHelper(scriptSONameSystem.c_str(), cacheDir,
162 if (loaded == nullptr) {
169 return loaded;
194 // Keep track of which .so libraries have been loaded. Once a library is
202 void *loaded = nullptr; local
209 // Common path is that we have not loaded this Script/library before.
214 loaded
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DAsyncListUtilTest.java82 scrollAndExpectTiles(60, "scroll down a little, no new tiles loaded");
83 scrollAndExpectTiles(40, "scroll up a little, no new tiles loaded");
118 assertLoadedItemsOnUiThread("no new items should be loaded", 0, position, count);
124 assertLoadedItemsOnUiThread("all new items should be loaded", count, position, count);
129 int loaded = 0;
132 loaded++;
135 return loaded;
/frameworks/base/packages/WAPPushManager/tests/
H A DAndroid.mk31 # automatically get all of its classes loaded into our environment.
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java178 Bitmap loaded = null;
181 opts.inBitmap = loaded;
182 loaded = BitmapFactory.decodeResource(res, resid, opts);
183 final BitmapDrawable d = new BitmapDrawable(res, convertToAlphaMask(loaded));
189 loaded = null;
/frameworks/opt/photoviewer/
H A DAndroid.mk19 # This is to allow the library to be loaded dynamically in a context where
/frameworks/base/tools/preload/
H A Dsorttable.js360 if (/loaded|complete/.test(document.readyState)) {
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2023 // which will be loaded on user switch.
2537 Log.w(TAG, "loadSoundEffects Interrupted while waiting sound pool loaded.");
2578 int mStatus = 1; // 1 means neither error nor last sample loaded yet
4367 * file (same index in SOUND_EFFECT_FILES[] has not been loaded.
4368 * Once loaded, the value in poolId is the sample ID and the same
4376 * Effects whose value in SOUND_EFFECT_FILES_MAP[effect][1] is -1 must be loaded.
4378 * this indicates we have a valid sample loaded for this effect.
4404 // wait for all samples to be loaded
4581 boolean loaded = onLoadSoundEffects();
4585 reply.mStatus = loaded
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java6996 // Just remove the loaded entries from package lists.
19205 final ArrayList<ApplicationInfo> loaded = new ArrayList<>();
19221 loaded.add(pkg.applicationInfo);
19279 if (DEBUG_INSTALL) Slog.d(TAG, "Loaded packages " + loaded);
19280 sendResourcesChangedBroadcast(true, false, loaded, null);

Completed in 414 milliseconds