Searched defs:runtime (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
H A DVMRuntime_Delegate.java31 /*package*/ static Object newUnpaddedArray(VMRuntime runtime, Class<?> componentType, argument
/frameworks/native/cmds/installd/
H A Dotapreopt.cpp668 // This needs to be kept in sync with ART, see art/runtime/gc/space/image_space.cc.
694 // This needs to be kept in sync with ART, see art/runtime/gc/space/image_space.cc.
925 // Choose a random relocation offset. Taken from art/runtime/gc/image_space.cc.
960 bool runtime,
964 if (runtime) {
965 out.push_back("--runtime-arg");
958 AddCompilerOptionFromSystemProperty(const char* system_property, const char* prefix, bool runtime, std::vector<std::string>& out) const argument
/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. ...
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DJobStatus.java280 * wallclock runtime rather than resetting it on every boot.
797 private void formatRunTime(PrintWriter pw, long runtime, long defaultValue, long now) { argument
798 if (runtime == defaultValue) {
801 TimeUtils.formatDuration(runtime - now, pw);
805 private void formatRunTime(StringBuilder sb, long runtime, long defaultValue, long now) { argument
806 if (runtime == defaultValue) {
809 TimeUtils.formatDuration(runtime - now, sb);

Completed in 234 milliseconds