Searched refs:keep (Results 1 - 25 of 25) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_exportable.cpp21 bool RSExportable::keep() { function in class:slang::RSExportable
H A Dslang_rs_exportable.h49 // When keep() is invoked, mKeep will set to true and the associated RSContext
52 // Return false if the exportable is kept or failed to keep.
53 virtual bool keep();
H A Dllvm-rs-as.cpp105 Out->keep();
H A Dslang_rs_export_type.h102 * TODO: but if you do this, you won't be able to keep using First* & Last*
309 virtual bool keep();
473 virtual bool keep();
587 virtual bool keep();
674 virtual bool keep();
H A Dslang_rs_export_type.cpp966 bool RSExportType::keep() { function in class:slang::RSExportType
967 if (!RSExportable::keep())
1281 bool RSExportPointerType::keep() { function in class:slang::RSExportPointerType
1282 if (!RSExportType::keep())
1284 const_cast<RSExportType*>(mPointeeType)->keep();
1468 bool RSExportConstantArrayType::keep() { function in class:slang::RSExportConstantArrayType
1469 if (!RSExportType::keep())
1471 const_cast<RSExportType*>(mElementType)->keep();
1582 bool RSExportRecordType::keep() { function in class:slang::RSExportRecordType
1583 if (!RSExportType::keep())
[all...]
H A Dslang.cpp398 mDOS->keep();
430 mOS->keep();
525 ERT->keep();
/frameworks/base/core/java/android/text/
H A DInputFilter.java69 return null; // keep original
86 int keep = mMax - (dest.length() - (dend - dstart));
87 if (keep <= 0) {
89 } else if (keep >= end - start) {
90 return null; // keep original
92 keep += start;
93 if (Character.isHighSurrogate(source.charAt(keep - 1))) {
94 --keep;
95 if (keep == start) {
99 return source.subSequence(start, keep);
[all...]
/frameworks/opt/setupwizard/library/
H A Dproguard.flags6 -keep public class * extends com.android.setupwizardlib.items.ItemHierarchy {
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java211 TreeMap<String, ClassReader> keep = new TreeMap<>();
216 ClassReader cr = mAa.findClass("mock_android.widget.LinearLayout", zipClasses, keep);
217 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps);
251 keep.putAll(new_keep);
256 }, keep.keySet().toArray());
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp152 Out.keep();
/frameworks/support/v13/
H A DAndroid.mk33 # android-support-v13, so we need to keep it static until they can be fixed.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DVerticalGridPresenter.java303 * @param keep True if keep foreground of child of this grid.
305 public final void setKeepChildForeground(boolean keep) { argument
306 mKeepChildForeground = keep;
H A DListRowPresenter.java747 * it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
749 * @param keep true if keep foreground of child of this row, false ListRowPresenter might change
752 public final void setKeepChildForeground(boolean keep) { argument
753 mKeepChildForeground = keep;
760 * it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
/frameworks/support/v4/
H A DAndroid.mk29 # android-support-v4, so we need to keep it static until they can be fixed.
/frameworks/base/tools/aapt/
H A DResource.cpp2919 addProguardKeepRule(ProguardKeepSet* keep, const String8& inClassName, argument
2939 String8 rule("-keep class ");
2949 keep->add(rule, location);
2953 addProguardKeepMethodRule(ProguardKeepSet* keep, const String8& memberName, argument
2966 keep->add(rule, location);
2970 writeProguardForAndroidManifest(ProguardKeepSet* keep, const sp<AaptAssets>& assets, bool mainDex) argument
3036 addProguardKeepRule(keep, agent, pkg.string(),
3081 addProguardKeepRule(keep, name, pkg.string(),
3099 writeProguardForXml(ProguardKeepSet* keep, const sp<AaptFile>& layoutFile, argument
3142 addProguardKeepRule(keep, ta
3192 writeProguardForLayouts(ProguardKeepSet* keep, const sp<AaptAssets>& assets) argument
3263 writeProguardSpec(const char* filename, const ProguardKeepSet& keep, status_t err) argument
3296 ProguardKeepSet keep; local
3320 ProguardKeepSet keep; local
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java392 boolean keep = false;
394 keep = idler.queueIdle();
399 if (!keep) {
813 * wait for more. Return true to keep your idle handler active, false
830 * then return <code>true</code> to keep the listener active or <code>false</code>
849 * keep the listener active. Otherwise, it should return <code>false</code>
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java241 public void setKeep(Map<String, ClassReader> keep) { argument
242 mKeep = keep;
296 mLog.info("# keep classes: %d", mKeep.size());
349 * 2- For "keep" classes, we want to rewrite all native methods as indicated above.
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp380 tof->keep();
/frameworks/av/services/audioflinger/
H A DTracks.cpp489 sp<Track> keep(this);
840 // and keep the track active to avoid problems if user is seeking
1673 sp<RecordTrack> keep(this);
H A DAudioFlinger.cpp1536 sp<NotificationClient> keep(this);
2099 // keep strong reference on the playback thread so that
2386 // keep strong reference on the record thread so that
3284 #define TEE_MAX_KEEP 10 // number of entries to keep
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp240 sp<NotificationClient> keep(this);
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java3265 HashSet<ProviderId> keep = new HashSet<>();
3270 // add the missing ones and collect which ones to keep
3287 keep.add(providerId);
3293 keep.add(providerId);
3321 // prune the ones we don't want to keep
3327 && !keep.contains(provider.id)) {
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java436 // sequence number for Networks; keep in sync with system/netd/NetworkController.cpp
887 // Watch for whether or not to keep mobile data always on.
4047 // the default network request. This allows callers to keep track of
4299 // Request used to optionally keep mobile data active even when higher
4786 boolean keep = newNetwork.isVPN();
4815 keep = true;
4845 keep = true;
4958 if (keep) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java983 // List of packages names to keep cached, even if they are uninstalled for all users
2800 // skip setup wizard; allow it to keep the high priority filter
4379 // in such a case we need to keep the APK on the device. The check for
5385 // to keep the review required permission flag per user while an
5514 // to keep the review required permission flag per user while an
10029 // delete the package and for updated system apps keep the data as
10194 // We keep references to the derived CPU Abis from settings in oder to reuse
10531 // dictated by the zygote configuration (and init.rc). We should keep track
11100 // right now to keep it from launching
12472 // to keep th
[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 552 milliseconds