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

/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/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.cpp99 Out->keep();
H A Dslang_rs_export_type.h101 * TODO: but if you do this, you won't be able to keep using First* & Last*
308 virtual bool keep();
420 virtual bool keep();
533 virtual bool keep();
620 virtual bool keep();
H A Dslang_rs_export_type.cpp960 bool RSExportType::keep() { function in class:slang::RSExportType
961 if (!RSExportable::keep())
1275 bool RSExportPointerType::keep() { function in class:slang::RSExportPointerType
1276 if (!RSExportType::keep())
1278 const_cast<RSExportType*>(mPointeeType)->keep();
1459 bool RSExportConstantArrayType::keep() { function in class:slang::RSExportConstantArrayType
1460 if (!RSExportType::keep())
1462 const_cast<RSExportType*>(mElementType)->keep();
1562 bool RSExportRecordType::keep() { function in class:slang::RSExportRecordType
1563 if (!RSExportType::keep())
[all...]
H A Dslang.cpp399 mDOS->keep();
431 mOS->keep();
561 ERT->keep();
/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/v17/leanback/src/android/support/v17/leanback/widget/
H A DVerticalGridPresenter.java304 * @param keep True if keep foreground of child of this grid.
306 public final void setKeepChildForeground(boolean keep) { argument
307 mKeepChildForeground = keep;
H A DListRowPresenter.java737 * it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
739 * @param keep true if keep foreground of child of this row, false ListRowPresenter might change
742 public final void setKeepChildForeground(boolean keep) { argument
743 mKeepChildForeground = keep;
750 * it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
/frameworks/base/tools/aapt/
H A DResource.cpp2787 addProguardKeepRule(ProguardKeepSet* keep, const String8& inClassName, argument
2807 String8 rule("-keep class ");
2817 keep->add(rule, location);
2821 addProguardKeepMethodRule(ProguardKeepSet* keep, const String8& memberName, argument
2834 keep->add(rule, location);
2838 writeProguardForAndroidManifest(ProguardKeepSet* keep, const sp<AaptAssets>& assets, bool mainDex) argument
2904 addProguardKeepRule(keep, agent, pkg.string(),
2949 addProguardKeepRule(keep, name, pkg.string(),
2967 writeProguardForXml(ProguardKeepSet* keep, const sp<AaptFile>& layoutFile, argument
3010 addProguardKeepRule(keep, ta
3060 writeProguardForLayouts(ProguardKeepSet* keep, const sp<AaptAssets>& assets) argument
3131 writeProguardSpec(const char* filename, const ProguardKeepSet& keep, status_t err) argument
3164 ProguardKeepSet keep; local
3188 ProguardKeepSet keep; local
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java390 boolean keep = false;
392 keep = idler.queueIdle();
397 if (!keep) {
780 * wait for more. Return true to keep your idle handler active, false
797 * then return <code>true</code> to keep the listener active or <code>false</code>
816 * 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.java230 public void setKeep(Map<String, ClassReader> keep) { argument
231 mKeep = keep;
285 mLog.info("# keep classes: %d", mKeep.size());
338 * 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/base/docs/html/training/
H A Dtraining_toc.cs1886 "How to keep your app's memory footprint small in order to improve performance
2032 "How to keep your app responsive to user interaction so the UI does not lock-up and
2062 "How to perform various tasks and keep your app's data and your user's data secure."
/frameworks/av/services/audioflinger/
H A DTracks.cpp447 sp<Track> keep(this);
783 // and keep the track active to avoid problems if user is seeking
1571 sp<RecordTrack> keep(this);
H A DEffects.cpp197 // keep a strong reference on this EffectModule to avoid calling the
199 sp<EffectModule> keep(this);
H A DAudioFlinger.cpp1452 sp<NotificationClient> keep(this);
1965 // keep strong reference on the playback thread so that
2229 // keep strong reference on the record thread so that
3002 #define TEE_MAX_KEEP 10 // number of entries to keep
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp293 sp<NotificationClient> keep(this);
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java3147 HashSet<ProviderId> keep = new HashSet<>();
3152 // add the missing ones and collect which ones to keep
3169 keep.add(providerId);
3175 keep.add(providerId);
3203 // prune the ones we don't want to keep
3209 && !keep.contains(provider.id)) {
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java420 // sequence number for Networks; keep in sync with system/netd/NetworkController.cpp
820 // Watch for whether or not to keep mobile data always on.
3973 // the default network request. This allows callers to keep track of
4211 // Request used to optionally keep mobile data active even when higher
4611 boolean keep = newNetwork.isVPN();
4628 keep = true;
4666 keep = true;
4763 if (keep) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java743 // List of packages names to keep cached, even if they are uninstalled for all users
2645 // skip setup wizard; allow it to keep the high priority filter
4135 // to keep the review required permission flag per user while an
4246 // to keep the review required permission flag per user while an
8442 // dictated by the zygote configuration (and init.rc). We should keep track
8593 // right now to keep it from launching
10012 // to keep the review required permission flag per user while an
10028 // For modern apps keep runtime permissions unchanged.
10064 // Also in permission review mode we keep dangerous permissions
12778 // installFlags. This is because we aim 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 6371 milliseconds