HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2201 - 2225 of 5424) sorted by null

<<81828384858687888990>>

  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutService.java 538 // If the cache says background, reach out to AM. Since it'll internally need to hold
798 static void writeTagValue(XmlSerializer out, String tag, String value) throws IOException {
801 out.startTag(null, tag);
802 out.attribute(null, ATTR_VALUE, value);
803 out.endTag(null, tag);
806 static void writeTagValue(XmlSerializer out, String tag, long value) throws IOException {
807 writeTagValue(out, tag, Long.toString(value));
810 static void writeTagValue(XmlSerializer out, String tag, ComponentName name) throws IOException {
812 writeTagValue(out, tag, name.flattenToString());
815 static void writeTagExtra(XmlSerializer out, String tag, PersistableBundle bundle
863 XmlSerializer out = new FastXmlSerializer(); local
967 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
ShortcutPackage.java 1327 NAME_CATEGORIES, out); local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.3.Final/
netty-buffer-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/
netty-buffer-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/
gmaven-runtime-support-1.5.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.7.0/
javapoet-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.6.2/
gson-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.8.0/
gson-2.8.0.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.2.0/
javapoet-1.2.0.jar 
  /frameworks/base/services/core/java/com/android/server/
StorageManagerService.java 1647 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 456 public void writeXml(XmlSerializer out) throws IOException {
457 out.startTag(null, ZEN_TAG);
458 out.attribute(null, ZEN_ATT_VERSION, Integer.toString(XML_VERSION));
459 out.attribute(null, ZEN_ATT_USER, Integer.toString(user));
461 out.startTag(null, ALLOW_TAG);
462 out.attribute(null, ALLOW_ATT_CALLS, Boolean.toString(allowCalls));
463 out.attribute(null, ALLOW_ATT_REPEAT_CALLERS, Boolean.toString(allowRepeatCallers));
464 out.attribute(null, ALLOW_ATT_MESSAGES, Boolean.toString(allowMessages));
465 out.attribute(null, ALLOW_ATT_REMINDERS, Boolean.toString(allowReminders));
466 out.attribute(null, ALLOW_ATT_EVENTS, Boolean.toString(allowEvents))
    [all...]
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-gradle/1.0.0/
jarjar-gradle-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-testutil/1.8.2/
ant-testutil-1.8.2.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /art/test/912-classes/src-art/art/
Test912.java 67 System.out.println(TestForInitFail.dummy);
89 System.out.println();
93 System.out.println();
117 System.out.println(Arrays.toString(result));
122 System.out.println(Integer.toHexString(mod));
129 System.out.println(c.getName() + " interface=" + isInterface + " array=" + isArray +
134 System.out.println(Arrays.toString(getClassFields(c)));
138 System.out.println(Arrays.toString(getClassMethods(c)));
142 System.out.println(c + " " + Integer.toBinaryString(getClassStatus(c)));
146 System.out.println(c + " " + Arrays.toString(getImplementedInterfaces(c)))
    [all...]
  /art/test/924-threads/src/art/
Test924.java 58 System.out.println("currentThread OK");
93 System.out.println(Integer.toHexString(getThreadState(null)));
94 System.out.println(Integer.toHexString(getThreadState(Thread.currentThread())));
196 // Filter out JIT thread. It may or may not be there depending on configuration.
223 System.out.println(expectedList);
244 System.out.println("Expected failure setting TLS for non-live thread");
246 System.out.println(e.getMessage());
252 System.out.println("Expected failure setting TLS for non-live thread");
254 System.out.println(e.getMessage());
316 System.out.println("Constructed thread")
    [all...]
  /art/test/989-method-trace-throw/src/art/
Test989.java 64 String out = m.toString() + " returned "; local
66 out += "<exception>";
68 out += result;
70 return out;
83 System.out.println("Normal: Entering " + m);
88 System.out.println("Normal: Leaving " + getInfo(m, exception, result));
96 System.out.println("ThrowEnter: Entering " + m);
102 System.out.println("ThrowEnter: Leaving " + getInfo(m, exception, result));
111 System.out.println("ThrowExit: Entering " + m);
119 System.out.println("ThrowExit: Leaving " + getInfo(m, exception, result))
    [all...]
  /art/test/ti-stress/
stress.cc 48 std::ofstream file(fname, std::ios::binary | std::ios::out | std::ios::trunc);
53 static bool ReadIntoBuffer(const std::string& fname, /*out*/std::vector<unsigned char>* data) {
68 /*out*/std::vector<unsigned char>* dex) {
71 // Clear out file so even if something suppresses the exit value we will still detect dexter
354 /*out*/void** out_address) {
617 std::vector<unsigned char> out; local
629 } else if (DoExtractClassFromData(data, name_str, class_data_len, class_data, /*out*/ &out)) {
632 CHECK_EQ(JVMTI_ERROR_NONE, jvmti->Allocate(out.size(), &new_data));
633 memcpy(new_data, out.data(), out.size())
    [all...]
  /bionic/libc/kernel/uapi/rdma/
ib_user_cm.h 47 __u16 out; member in struct:ib_ucm_cmd_hdr
  /bionic/tests/
string_test.cpp 1473 const char* out = basename(in); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 478 public static int copy(InputStream in, OutputStream out) throws IOException {
484 out.write(buffer, 0, c);

Completed in 1940 milliseconds

<<81828384858687888990>>