Home
last modified time | relevance | path

Searched defs:out (Results 1 – 25 of 1054) sorted by relevance

12345678910>>...43

/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDumpHelpers.cpp26 void dumpVal(std::string& out, const char* name, bool value) { in dumpVal()
30 void dumpVal(std::string& out, const char* name, const void* value) { in dumpVal()
34 void dumpVal(std::string& out, const char* name, int value) { in dumpVal()
38 void dumpVal(std::string& out, const char* name, float value) { in dumpVal()
42 void dumpVal(std::string& out, const char* name, uint32_t value) { in dumpVal()
46 void dumpHex(std::string& out, const char* name, uint64_t value) { in dumpHex()
50 void dumpVal(std::string& out, const char* name, const char* value) { in dumpVal()
54 void dumpVal(std::string& out, const char* name, const std::string& value) { in dumpVal()
58 void dumpVal(std::string& out, const char* name, const char* valueName, int value) { in dumpVal()
62 void dumpVal(std::string& out, const char* name, const std::string& valueName, int value) { in dumpVal()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DWap230WspContentTypeTest.java257 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testDecodeReturnsFalse_WhenOnlyAZeroBytePresent() local
266 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testConstrainedMediaExtensionMedia() local
281 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthExtensionMedia() local
297 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownShortInteger() local
313 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownShortIntegerWithUnknownValue() local
329 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownLongInteger() local
348 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormShortLengthWellKnownLongIntegerWithUnknownValue() local
368 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownShortInteger() local
386 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownShortIntegerWithUnknownValue() local
403 ByteArrayOutputStream out = new ByteArrayOutputStream(); in testGeneralFormLengthQuoteWellKnownLongInteger() local
[all …]
/frameworks/base/libs/androidfw/
DConfigDescription.cpp35 static bool parseMcc(const char* name, ResTable_config* out) { in parseMcc()
65 static bool parseMnc(const char* name, ResTable_config* out) { in parseMnc()
96 static bool parseLayoutDirection(const char* name, ResTable_config* out) { in parseLayoutDirection()
120 static bool parseScreenLayoutSize(const char* name, ResTable_config* out) { in parseScreenLayoutSize()
156 static bool parseScreenLayoutLong(const char* name, ResTable_config* out) { in parseScreenLayoutLong()
180 static bool parseScreenRound(const char* name, ResTable_config* out) { in parseScreenRound()
203 static bool parseWideColorGamut(const char* name, ResTable_config* out) { in parseWideColorGamut()
226 static bool parseHdr(const char* name, ResTable_config* out) { in parseHdr()
249 static bool parseOrientation(const char* name, ResTable_config* out) { in parseOrientation()
267 static bool parseUiModeType(const char* name, ResTable_config* out) { in parseUiModeType()
[all …]
/frameworks/base/tools/aapt/
DAaptConfig.cpp34 bool parse(const String8& str, ConfigDescription* out) { in parse()
299 bool parseMcc(const char* name, ResTable_config* out) { in parseMcc()
329 bool parseMnc(const char* name, ResTable_config* out) { in parseMnc()
360 bool parseLayoutDirection(const char* name, ResTable_config* out) { in parseLayoutDirection()
381 bool parseScreenLayoutSize(const char* name, ResTable_config* out) { in parseScreenLayoutSize()
412 bool parseScreenLayoutLong(const char* name, ResTable_config* out) { in parseScreenLayoutLong()
432 bool parseScreenRound(const char* name, ResTable_config* out) { in parseScreenRound()
452 bool parseWideColorGamut(const char* name, ResTable_config* out) { in parseWideColorGamut()
472 bool parseHdr(const char* name, ResTable_config* out) { in parseHdr()
492 bool parseOrientation(const char* name, ResTable_config* out) { in parseOrientation()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
DEventListTest.java60 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddAndQueryEvents() local
71 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddEventsNotInOrder() local
83 List<Event> out = mEventList.queryEvents( in testQueryEventsByType() local
85 assertEventListEquals(Lists.newArrayList(E1, E2), out); in testQueryEventsByType() local
95 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 103L, 109L); in testQueryEventsByTimeRange() local
97 assertEventListEquals(Lists.newArrayList(E2, E3), out); in testQueryEventsByTimeRange() local
107 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 900L, 900L); in testQueryEventsOutOfRange() local
125 List<Event> out = mEventList.queryEvents(Event.ALL_EVENT_TYPES, 0L, 999L); in testAddDuplicateEvents() local
/frameworks/base/wifi/java/src/android/net/wifi/
DSoftApConfToXmlMigrationUtil.java187 final XmlSerializer out = new FastXmlSerializer(); in convertConfToXml() local
198 XmlUtils.writeValueXml(softApConf.getSsid(), XML_TAG_SSID, out); in convertConfToXml() local
200 XmlUtils.writeValueXml(softApConf.getBssid().toString(), XML_TAG_BSSID, out); in convertConfToXml() local
202 XmlUtils.writeValueXml(softApConf.getBand(), XML_TAG_AP_BAND, out); in convertConfToXml() local
203 XmlUtils.writeValueXml(softApConf.getChannel(), XML_TAG_CHANNEL, out); in convertConfToXml() local
204 XmlUtils.writeValueXml(softApConf.isHiddenSsid(), XML_TAG_HIDDEN_SSID, out); in convertConfToXml() local
205 XmlUtils.writeValueXml(softApConf.getSecurityType(), XML_TAG_SECURITY_TYPE, out); in convertConfToXml() local
207 XmlUtils.writeValueXml(softApConf.getPassphrase(), XML_TAG_PASSPHRASE, out); in convertConfToXml() local
210 XML_TAG_MAX_NUMBER_OF_CLIENTS, out); in convertConfToXml() local
212 XML_TAG_CLIENT_CONTROL_BY_USER, out); in convertConfToXml() local
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
DFastDataTest.java91 try (FastDataOutput out = new FastDataOutput(new ByteArrayOutputStream(), BOUNCE_SIZE)) { in testUTF_Bounds()
111 final DataOutputStream out = new DataOutputStream(outStream); in testTranscode() local
123 final FastDataOutput out = new FastDataOutput(outStream, BOUNCE_SIZE); in testTranscode() local
133 private static void doTranscodeWrite(DataOutput out) throws IOException { in doTranscodeWrite()
163 doBounce((out) -> { in testBounce_Char() argument
174 doBounce((out) -> { in testBounce_Short() argument
191 doBounce((out) -> { in testBounce_Int() argument
208 doBounce((out) -> { in testBounce_Long() argument
225 doBounce((out) -> { in testBounce_UTF() argument
242 doBounce((out) -> { in testBounce_UTF_Exact() argument
[all …]
/frameworks/base/errorprone/refaster/
DEfficientXml.java32 void beforeToString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToString()
37 void beforeValueOf(TypedXmlSerializer out, String n, int v) throws Exception { in beforeValueOf()
42 void beforeUtils(TypedXmlSerializer out, String n, int v) throws Exception { in beforeUtils()
47 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix()
52 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after()
59 void beforeToHexString(TypedXmlSerializer out, String n, int v) throws Exception { in beforeToHexString()
64 void beforeRadix(TypedXmlSerializer out, String n, int v) throws Exception { in beforeRadix()
69 void after(TypedXmlSerializer out, String n, int v) throws Exception { in after()
122 void beforeToString(TypedXmlSerializer out, String n, long v) throws Exception { in beforeToString()
127 void beforeValueOf(TypedXmlSerializer out, String n, long v) throws Exception { in beforeValueOf()
[all …]
/frameworks/base/media/mca/filterpacks/native/base/
Dvec_types.h60 Vec<T, dim> out; variable
68 Vec<T, dim> out; variable
76 Vec<T, dim> out; variable
84 Vec<T, dim> out; variable
92 T out = 0; in dot() local
100 Vec<T, dim> out; variable
108 Vec<T, dim> out; variable
116 Vec<T, dim> out; variable
/frameworks/base/services/core/java/com/android/server/connectivity/
DIpConnectivityEventBuilder.java74 final IpConnectivityEvent out = toProto(in); in toProto() local
84 final IpConnectivityEvent out = buildEvent(ev.netId, ev.transports, ev.ifname); in toProto() local
100 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
113 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
134 final IpConnectivityEvent out = buildEvent(0, 0, in.iface); in toProto() local
148 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); in toProto() local
168 private static boolean setEvent(IpConnectivityEvent out, Parcelable in) { in setEvent()
217 private static void setDhcpErrorEvent(IpConnectivityEvent out, DhcpErrorEvent in) { in setDhcpErrorEvent()
223 private static void setDhcpClientEvent(IpConnectivityEvent out, DhcpClientEvent in) { in setDhcpClientEvent()
230 private static void setIpManagerEvent(IpConnectivityEvent out, IpManagerEvent in) { in setIpManagerEvent()
[all …]
/frameworks/rs/cpp/
DScriptIntrinsics.cpp92 void ScriptIntrinsicBlend::forEachClear(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachClear()
100 void ScriptIntrinsicBlend::forEachSrc(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrc()
108 void ScriptIntrinsicBlend::forEachDst(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDst()
116 void ScriptIntrinsicBlend::forEachSrcOver(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcOver()
124 void ScriptIntrinsicBlend::forEachDstOver(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstOver()
132 void ScriptIntrinsicBlend::forEachSrcIn(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcIn()
140 void ScriptIntrinsicBlend::forEachDstIn(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstIn()
148 void ScriptIntrinsicBlend::forEachSrcOut(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcOut()
156 void ScriptIntrinsicBlend::forEachDstOut(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachDstOut()
164 void ScriptIntrinsicBlend::forEachSrcAtop(const sp<Allocation>& in, const sp<Allocation>& out) { in forEachSrcAtop()
[all …]
/frameworks/base/core/tests/coretests/src/android/util/
DXmlTest.java57 final TypedXmlSerializer out = Xml.newFastSerializer(); in testLargeValues_FastIndenting() local
73 private static void doLargeValues(TypedXmlSerializer out, TypedXmlPullParser in) in doLargeValues()
112 final TypedXmlSerializer out = Xml.newFastSerializer(); in testPersistableBundle_FastIndenting() local
128 private static void doPersistableBundle(TypedXmlSerializer out, TypedXmlPullParser in) in doPersistableBundle()
165 static byte[] doPersistableBundleWrite(TypedXmlSerializer out, PersistableBundle bundle) in doPersistableBundleWrite()
200 final TypedXmlSerializer out = Xml.newFastSerializer(); in testVerify_FastIndenting() local
216 private static void doVerify(TypedXmlSerializer out, TypedXmlPullParser in) throws Exception { in doVerify()
232 static void doVerifyWrite(TypedXmlSerializer out) throws Exception { in doVerifyWrite()
/frameworks/base/tools/aapt2/java/
DJavaClassGenerator_test.cpp49 StringOutputStream out(&result); in TEST() local
73 StringOutputStream out(&output); in TEST() local
97 StringOutputStream out(&output); in TEST() local
133 StringOutputStream out(&output); in TEST() local
169 StringOutputStream out(&output); in TEST() local
199 StringOutputStream out(&output); in TEST() local
212 StringOutputStream out(&output); in TEST() local
225 StringOutputStream out(&output); in TEST() local
289 StringOutputStream out(&output); in TEST() local
313 StringOutputStream out(&output); in TEST() local
[all …]
DAnnotationProcessor_test.cpp41 StringOutputStream out(&annotations); in TEST() local
54 StringOutputStream out(&annotations); in TEST() local
69 StringOutputStream out(&annotations); in TEST() local
84 StringOutputStream out(&annotations); in TEST() local
99 StringOutputStream out(&annotations); in TEST() local
/frameworks/proto_logging/stats/stats_log_api_gen/
Dmain.cpp235 FILE* out = fopen(cppFilename.c_str(), "w"); in run() local
258 FILE* out = fopen(headerFilename.c_str(), "w"); in run() local
289 FILE* out = fopen(javaFilename.c_str(), "w"); in run() local
304 FILE* out = fopen(rustFilename.c_str(), "w"); in run() local
318 FILE* out = fopen(rustHeaderFilename.c_str(), "w"); in run() local
Dutils.cpp137 void write_namespace(FILE* out, const string& cppNamespaces) { in write_namespace()
145 void write_closing_namespace(FILE* out, const string& cppNamespaces) { in write_closing_namespace()
152 static void write_cpp_usage(FILE* out, const string& method_name, const string& atom_code_name, in write_cpp_usage()
184 void write_native_atom_constants(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl) { in write_native_atom_constants()
218 void write_native_method_signature(FILE* out, const string& signaturePrefix, in write_native_method_signature()
251 void write_native_method_call(FILE* out, const string& methodName, in write_native_method_call()
278 void write_java_atom_codes(FILE* out, const Atoms& atoms) { in write_java_atom_codes()
302 void write_java_enum_values(FILE* out, const Atoms& atoms) { in write_java_enum_values()
324 void write_java_usage(FILE* out, const string& method_name, const string& atom_code_name, in write_java_usage()
343 int write_java_non_chained_methods(FILE* out, const SignatureInfoMap& signatureInfoMap) { in write_java_non_chained_methods()
[all …]
Drust_writer.cpp102 static void write_rust_method_signature(FILE* out, const char* namePrefix, in write_rust_method_signature()
161 static bool write_rust_usage(FILE* out, const string& method_name, in write_rust_usage()
179 static void write_rust_atom_constants(FILE* out, const Atoms& atoms, in write_rust_atom_constants()
210 static void write_rust_atom_constant_values(FILE* out, const shared_ptr<AtomDecl>& atomDecl) { in write_rust_atom_constant_values()
231 static void write_rust_annotation_constants(FILE* out) { in write_rust_annotation_constants()
249 static void write_annotations(FILE* out, int argIndex, const AtomDecl& atomDecl, in write_annotations()
302 static int write_rust_method_body(FILE* out, const AtomDecl& atomDecl, in write_rust_method_body()
384 static int write_rust_stats_write_method(FILE* out, const shared_ptr<AtomDecl>& atomDecl, in write_rust_stats_write_method()
402 static void write_rust_stats_write_non_chained_method(FILE* out, in write_rust_stats_write_non_chained_method()
444 static void write_rust_struct(FILE* out, const shared_ptr<AtomDecl>& atomDecl, in write_rust_struct()
[all …]
Dnative_writer.cpp24 static void write_native_annotation_constants(FILE* out) { in write_native_annotation_constants()
34 static void write_annotations(FILE* out, int argIndex, in write_annotations()
90 static int write_native_method_body(FILE* out, vector<java_type_t>& signature, in write_native_method_body()
145 static int write_native_stats_write_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_native_stats_write_methods()
223 static void write_native_stats_write_non_chained_methods(FILE* out, in write_native_stats_write_non_chained_methods()
262 static int write_native_build_stats_event_methods(FILE* out, in write_native_build_stats_event_methods()
292 static void write_native_method_header(FILE* out, const string& methodName, in write_native_method_header()
308 int write_stats_log_cpp(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_cpp()
348 int write_stats_log_header(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_header()
Djava_writer.cpp25 static int write_java_q_logger_class(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_q_logger_class()
42 static void write_java_annotation_constants(FILE* out, const int minApiLevel, in write_java_annotation_constants()
67 static void write_annotations(FILE* out, int argIndex, in write_annotations()
116 static void write_method_signature(FILE* out, const vector<java_type_t>& signature, in write_method_signature()
135 static int write_method_body(FILE* out, const vector<java_type_t>& signature, in write_method_body()
263 static int write_java_pushed_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_pushed_methods()
321 static int write_java_pulled_methods(FILE* out, const SignatureInfoMap& signatureInfoMap, in write_java_pulled_methods()
349 int write_stats_log_java(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_java()
/frameworks/base/libs/androidfw/tests/
DConfigLocale_test.cpp32 char out[4] = {1, 1, 1, 1}; in TEST() local
55 char out[4] = {1, 1, 1, 1}; in TEST() local
71 char out[4] = {1, 1, 1, 1}; in TEST() local
95 char out[4] = {1, 1, 1, 1}; in TEST() local
107 char out[4] = {1, 1, 1, 1}; in TEST() local
116 const char* script, const char* variant, ResTable_config* out) { in fillIn()
203 char out[4] = {1, 1, 1, 1}; in TEST() local
326 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
340 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
354 char out[RESTABLE_MAX_LOCALE_LEN]; in TEST() local
/frameworks/base/core/java/com/android/internal/util/
DXmlUtils.java401 public static final void writeMapXml(Map val, OutputStream out) in writeMapXml()
423 public static final void writeListXml(List val, OutputStream out) in writeListXml()
448 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out) in writeMapXml()
470 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out, in writeMapXml()
504 public static final void writeMapXml(Map val, TypedXmlSerializer out, in writeMapXml()
515 writeValueXml(e.getValue(), (String)e.getKey(), out, callback); in writeMapXml() local
533 public static final void writeListXml(List val, String name, TypedXmlSerializer out) in writeListXml()
550 writeValueXml(val.get(i), null, out); in writeListXml() local
557 public static final void writeSetXml(Set val, String name, TypedXmlSerializer out) in writeSetXml()
590 TypedXmlSerializer out) in writeByteArrayXml()
[all …]
/frameworks/base/core/jni/
Dandroid_app_admin_SecurityLog.cpp38 jobject out) { in android_app_admin_SecurityLog_readEvents()
49 jobject out) { in android_app_admin_SecurityLog_readEventsSince()
59 jobject out) { in android_app_admin_SecurityLog_readPreviousEvents()
70 jobject out) { in android_app_admin_SecurityLog_readEventsOnWrapping()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DVectorUtil.java23 public static void sub(double[] a, double[] b, double[] out) { in sub()
29 public static void mult(double[] a, double b, double[] out) { in mult()
43 public static void cross(double[] a, double[] b, double[] out) { in cross()
60 double[] out) { in add()
/frameworks/minikin/tests/unittest/
DFontFileParserTest.cpp28 static size_t writeU16(uint16_t x, uint8_t* out, size_t offset) { in writeU16()
34 static size_t writeU32(uint32_t x, uint8_t* out, size_t offset) { in writeU32()
50 std::vector<uint8_t> out(46); in buildHeadTable() local
77 uint32_t out = 0; in TEST() local
86 uint32_t out = 0; in TEST() local
/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/
DSourceTransformerTest.kt189 val out = sourceJarWriter.processClass(TEST_CODE, PATH, PATH, code) in <lambda>() constant
231 val out = sourceJarWriter.processClass(TEST_CODE_MULTICALLS, PATH, PATH, code) in <lambda>() constant
269 val out = sourceJarWriter.processClass(TEST_CODE_MULTILINE, PATH, PATH, code) in <lambda>() constant
306 val out = sourceJarWriter.processClass(TEST_CODE_NO_PARAMS, PATH, PATH, code) in <lambda>() constant
340 val out = sourceJarWriter.processClass(TEST_CODE, PATH, PATH, code) in <lambda>() constant
378 val out = sourceJarWriter.processClass(TEST_CODE_MULTILINE, PATH, PATH, code) in <lambda>() constant
416 val out = sourceJarWriter.processClass(TEST_CODE, PATH, PATH, code) in <lambda>() constant
442 val out = sourceJarWriter.processClass(TEST_CODE_MULTILINE, PATH, PATH, code) in <lambda>() constant

12345678910>>...43