Searched defs:existing (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
H A DChartDataLoader.java130 * an existing {@link NetworkStatsHistory} if provided.
133 NetworkTemplate template, int uid, int set, NetworkStatsHistory existing)
138 if (existing != null) {
139 existing.recordEntireHistory(history);
140 return existing;
132 collectHistoryForUid( NetworkTemplate template, int uid, int set, NetworkStatsHistory existing) argument
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DDataBinder.java117 final CallbackWrapper existing = uniqueWrappers.get(entry.getKey());
118 if (existing == null) {
129 .prepare(existing.getClassName(), existing.getListenerMethodName());
147 private String makeUnique(Set<String> existing, String wanted) { argument
149 while (existing.contains(wanted)) {
153 existing.add(wanted);
/frameworks/rs/
H A DrsProgramRaster.cpp84 ProgramRaster *existing = rsc->mStateRaster.mRasterPrograms[ct]; local
85 if (existing->mHal.state.pointSprite != pointSprite) continue;
86 if (existing->mHal.state.cull != cull) continue;
87 returnRef.set(existing);
H A DrsProgramStore.cpp95 ProgramStore *existing = rsc->mStateFragmentStore.mStorePrograms[ct]; local
96 if (existing->mHal.state.ditherEnable != ditherEnable) continue;
97 if (existing->mHal.state.colorRWriteEnable != colorMaskR) continue;
98 if (existing->mHal.state.colorGWriteEnable != colorMaskG) continue;
99 if (existing->mHal.state.colorBWriteEnable != colorMaskB) continue;
100 if (existing->mHal.state.colorAWriteEnable != colorMaskA) continue;
101 if (existing->mHal.state.blendSrc != srcFunc) continue;
102 if (existing->mHal.state.blendDst != destFunc) continue;
103 if (existing->mHal.state.depthWriteEnable != depthMask) continue;
104 if (existing
[all...]
H A DrsSampler.cpp88 Sampler *existing = rsc->mStateSampler.mAllSamplers[ct]; local
89 if (existing->mHal.state.magFilter != magFilter) continue;
90 if (existing->mHal.state.minFilter != minFilter ) continue;
91 if (existing->mHal.state.wrapS != wrapS) continue;
92 if (existing->mHal.state.wrapT != wrapT) continue;
93 if (existing->mHal.state.wrapR != wrapR) continue;
94 if (existing->mHal.state.aniso != aniso) continue;
95 returnRef.set(existing);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessExpressions.java222 public void removeOverridden(List<Intermediate> existing) { argument
/frameworks/base/tools/aapt2/link/
H A DTableMerger.cpp146 // If both values are Styleables/Styles, we just merge them into the existing value.
147 static ResourceTable::CollisionResult ResolveMergeCollision(Value* existing, Value* incoming, argument
149 if (Styleable* existing_styleable = ValueCast<Styleable>(existing)) {
155 } else if (Style* existing_style = ValueCast<Style>(existing)) {
163 return ResourceTable::ResolveValueCollision(existing, incoming);
230 << " does not override an existing resource");
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java123 public NetworkStatsHistory(NetworkStatsHistory existing, long bucketDuration) { argument
124 this(bucketDuration, existing.estimateResizeBuckets(bucketDuration));
125 recordEntireHistory(existing);
414 // try finding existing bucket
/frameworks/base/tools/aapt2/
H A DResourceTable.cpp237 // Typically, a weak value will be overridden by a strong value. An existing weak
252 ResourceTable::CollisionResult ResourceTable::ResolveValueCollision(Value* existing, argument
254 Attribute* existing_attr = ValueCast<Attribute>(existing);
259 // already exists. Keep the existing.
261 } else if (existing->IsWeak()) {
265 // The existing and incoming values are strong, this is an error
271 if (existing->IsWeak()) {
272 // The existing value is not an attribute and it is weak,
276 // The existing value is not an attribute and it is strong,
302 // Keep the existing attribut
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExpr.java268 public void onSwappedWith(Expr existing) { argument
270 child.onParentSwapped(this, existing);
540 // check if remaining dependencies can be satisfied w/ existing values
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java289 private int setBounds(Rect existing, Rect bounds) { argument
298 if (equivalentBounds(existing, bounds) && mRotation == rotation) {
/frameworks/native/services/surfaceflinger/tests/unittests/
H A DDisplayTransactionTest.cpp902 auto existing = Case::Display::makeFakeExistingDisplayInjector(this);
903 existing.inject();
917 mFlinger.destroyDisplay(existing.token());
923 EXPECT_FALSE(hasCurrentDisplayState(existing.token()));
926 EXPECT_TRUE(hasDrawingDisplayState(existing.token()));
959 auto existing = Case::Display::makeFakeExistingDisplayInjector(this); local
960 existing.inject();
984 EXPECT_FALSE(hasDisplayDevice(existing.token()));
987 EXPECT_TRUE(hasCurrentDisplayState(existing.token()));
990 EXPECT_FALSE(hasDrawingDisplayState(existing
1282 auto existing = Case::Display::makeFakeExistingDisplayInjector(this); local
1413 auto existing = Case::Display::makeFakeExistingDisplayInjector(this); local
1567 auto existing = Case::Display::makeFakeExistingDisplayInjector(this); local
[all...]
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp297 bool existing) {
321 if (existing) {
342 const std::string& seInfo, uid_t uid, bool existing) {
344 existing);
472 bool existing = (access(path.c_str(), F_OK) == 0); local
481 if (restorecon_app_data_lazy(path, seInfo, uid, existing) ||
482 restorecon_app_data_lazy(path, "cache", seInfo, uid, existing) ||
483 restorecon_app_data_lazy(path, "code_cache", seInfo, uid, existing)) {
503 bool existing = (access(path.c_str(), F_OK) == 0); local
512 if (restorecon_app_data_lazy(path, seInfo, uid, existing) ||
296 restorecon_app_data_lazy(const std::string& path, const std::string& seInfo, uid_t uid, bool existing) argument
341 restorecon_app_data_lazy(const std::string& parent, const char* name, const std::string& seInfo, uid_t uid, bool existing) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java725 * Tracks existing system packages prior to receiving an OTA. Keys are package name.
2584 // save off the names of pre-existing system packages prior to scanning; we don't
8498 // Optimization: reuse the existing cached signing data
9075 // reference profile every OTA even though the existing reference profile
10275 // signing certificate than the existing one, and if so, copy over the new details
10560 // for existing packages, change the install state; but, only if it's explicitly specified
10696 // at once after scanning all existing packages.
11106 // If we're only installing presumed-existing packages, require that the
11144 // that conflict with existing packages. Only do this if the
11853 // when scannedPackage is an update of an existing packag
15147 final boolean existing; field in class:PackageManagerService.OriginInfo
15168 OriginInfo(File file, boolean staged, boolean existing) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 8906 milliseconds