Home
last modified time | relevance | path

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

12345678910>>...51

/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/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/libs/androidfw/
DConfigDescription.cpp36 static bool parseMcc(const char* name, ResTable_config* out) { in parseMcc()
66 static bool parseMnc(const char* name, ResTable_config* out) { in parseMnc()
97 static bool parseGrammaticalInflection(const std::string& name, ResTable_config* out) { in parseGrammaticalInflection()
114 static bool parseLayoutDirection(const char* name, ResTable_config* out) { in parseLayoutDirection()
138 static bool parseScreenLayoutSize(const char* name, ResTable_config* out) { in parseScreenLayoutSize()
174 static bool parseScreenLayoutLong(const char* name, ResTable_config* out) { in parseScreenLayoutLong()
198 static bool parseScreenRound(const char* name, ResTable_config* out) { in parseScreenRound()
221 static bool parseWideColorGamut(const char* name, ResTable_config* out) { in parseWideColorGamut()
244 static bool parseHdr(const char* name, ResTable_config* out) { in parseHdr()
267 static 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/libs/binary_translation/backend/common/
Dmachine_ir_debug.cc28 std::string out; in GetInsnListDebugString() local
54 std::string out; in GetRegOperandDebugString() local
64 std::string out(StringPrintf("%2d MachineBasicBlock live_in=[", id())); in GetDebugString() local
94 std::string out; in GetDebugString() local
132 std::string out("PSEUDO_COND_BRANCH "); in GetDebugString() local
161 std::string out("PSEUDO_INDIRECT_JUMP "); in GetDebugString() local
167 std::string out("PSEUDO_COPY "); in GetDebugString() local
183 std::string out("PSEUDO_READ_FLAGS "); in GetDebugString() local
192 std::string out("PSEUDO_WRITE_FLAGS "); in GetDebugString() local
/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/libs/binary_translation/intrinsics/riscv64_to_x86_64/
Dmachine_ir_intrinsic_binding.json19 "out": [ 0 ] array
25 "out": [ 0 ] array
31 "out": [ 0 ] array
37 "out": [ 0 ] array
43 "out": [ 0 ] array
49 "out": [ 0 ] array
56 "out": [ 0 ] array
62 "out": [ 0 ] array
69 "out": [ 0 ] array
75 "out": [ 0 ] array
[all …]
Dintrinsic_def.json31 "out": [ "Type0" ] array
37 "out": [ "uint64_t" ] array
53 "out": [ "Type0" ], array
71 "out": [ "Type0" ], array
97 "out": [ "Type0" ], array
123 "out": [ "Type0" ], array
141 "out": [ "Type0" ], array
159 "out": [ "Type0" ], array
177 "out": [ "Type0" ], array
195 "out": [ "Type0" ] array
[all …]
/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/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/core/tests/coretests/src/com/android/internal/util/
DFastDataTest.java89 private FastDataOutput createFastDataOutput(@NonNull OutputStream out, int bufferSize) { in createFastDataOutput()
139 try (FastDataOutput out = createFastDataOutput(new ByteArrayOutputStream(), BOUNCE_SIZE)) { in testUTF_Bounds()
163 final DataOutputStream out = new DataOutputStream(outStream); in testTranscode() local
175 final FastDataOutput out = createFastDataOutput(outStream, BOUNCE_SIZE); in testTranscode() local
185 private static void doTranscodeWrite(DataOutput out) throws IOException { in doTranscodeWrite()
215 doBounce((out) -> { in testBounce_Char() argument
226 doBounce((out) -> { in testBounce_Short() argument
243 doBounce((out) -> { in testBounce_Int() argument
260 doBounce((out) -> { in testBounce_Long() argument
277 doBounce((out) -> { in testBounce_UTF() argument
[all …]
/frameworks/native/include/input/
DPrintTools.h39 std::stringstream out; in streamableToString() local
77 std::string out; variable
92 std::string out; variable
108 std::string out; variable
120 std::string out; variable
/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
114 StringOutputStream out(&annotations); in TEST() local
129 StringOutputStream out(&annotations); in TEST() local
149 StringOutputStream out(&annotations); in TEST() local
/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.java59 final TypedXmlSerializer out = Xml.newFastSerializer(); in testLargeValues_FastIndenting() local
75 private static void doLargeValues(TypedXmlSerializer out, TypedXmlPullParser in) in doLargeValues()
114 final TypedXmlSerializer out = Xml.newFastSerializer(); in testPersistableBundle_FastIndenting() local
130 private static void doPersistableBundle(TypedXmlSerializer out, TypedXmlPullParser in) in doPersistableBundle()
167 static byte[] doPersistableBundleWrite(TypedXmlSerializer out, PersistableBundle bundle) in doPersistableBundleWrite()
202 final TypedXmlSerializer out = Xml.newFastSerializer(); in testVerify_FastIndenting() local
218 private static void doVerify(TypedXmlSerializer out, TypedXmlPullParser in) throws Exception { in doVerify()
234 static void doVerifyWrite(TypedXmlSerializer out) throws Exception { in doVerifyWrite()
/frameworks/base/tools/aapt2/format/binary/
DResEntryWriter_test.cpp60 BigBuffer out(512); in TEST_F() local
72 BigBuffer out(512); in TEST_F() local
101 BigBuffer out(512); in TEST_F() local
112 BigBuffer out(512); in TEST_F() local
131 BigBuffer out(512); in TEST_F() local
142 BigBuffer out(512); in TEST_F() local
170 BigBuffer out(512); in TEST_F() local
181 BigBuffer out(512); in TEST_F() local
/frameworks/proto_logging/stats/stats_log_api_gen/
Dnative_writer_vendor.cpp33 static void write_native_vendor_annotation_header(FILE* out, const string& annotationName, in write_native_vendor_annotation_header()
40 static void write_native_vendor_annotation_footer(FILE* out, const char* indent) { in write_native_vendor_annotation_footer()
45 static void write_native_vendor_annotation_int(FILE* out, const string& annotationName, int value, in write_native_vendor_annotation_int()
52 static void write_native_vendor_annotation_int_constant(FILE* out, const string& annotationName, in write_native_vendor_annotation_int_constant()
61 static void write_native_vendor_annotation_bool(FILE* out, const string& annotationName, bool value, in write_native_vendor_annotation_bool()
69 static void write_native_annotations_vendor_for_field(FILE* out, int argIndex, in write_native_annotations_vendor_for_field()
154 static int write_native_create_vendor_atom_methods(FILE* out, in write_native_create_vendor_atom_methods()
290 int write_stats_log_cpp_vendor(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_cpp_vendor()
320 int write_stats_log_header_vendor(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_header_vendor()
Dutils.cpp266 void write_namespace(FILE* out, const string& cppNamespaces) { in write_namespace()
274 void write_closing_namespace(FILE* out, const string& cppNamespaces) { in write_closing_namespace()
281 static void write_cpp_usage(FILE* out, const string& method_name, const string& atom_code_name, in write_cpp_usage()
308 void write_native_atom_constants(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_native_atom_constants()
343 void write_native_atom_enums(FILE* out, const Atoms& atoms) { in write_native_atom_enums()
368 void write_native_method_signature(FILE* out, const string& signaturePrefix, in write_native_method_signature()
400 void write_native_method_header(FILE* out, const string& methodName, in write_native_method_header()
410 void write_native_header_preamble(FILE* out, const string& cppNamespace, bool includePull, in write_native_header_preamble()
439 void write_native_header_epilogue(FILE* out, const string& cppNamespace) { in write_native_header_epilogue()
444 void write_java_atom_codes(FILE* out, const Atoms& atoms) { in write_java_atom_codes()
[all …]
Djava_writer_vendor.cpp34 static void write_vendor_annotation_int(FILE* out, const string& annotationName, int value, in write_vendor_annotation_int()
45 static void write_vendor_annotation_int_constant(FILE* out, const string& annotationName, in write_vendor_annotation_int_constant()
57 static void write_vendor_annotation_bool(FILE* out, const string& annotationName, bool value, in write_vendor_annotation_bool()
69 static bool write_value_annotations_array_init(FILE* out, const AtomDeclSet& atomDeclSet, in write_value_annotations_array_init()
86 static bool write_annotations_vendor_for_field(FILE* out, int argIndex, in write_annotations_vendor_for_field()
185 static int write_method_body_vendor(FILE* out, const vector<java_type_t>& signature, in write_method_body_vendor()
311 static int write_java_pushed_methods_vendor(FILE* out, const SignatureInfoMap& signatureInfoMap) { in write_java_pushed_methods_vendor()
337 static void write_java_enum_values_vendor(FILE* out, const Atoms& atoms) { in write_java_enum_values_vendor()
370 int write_stats_log_java_vendor(FILE* out, const Atoms& atoms, const string& javaClass, in write_stats_log_java_vendor()
/frameworks/libs/binary_translation/base/include/berberis/base/
Dformat_buffer.h60 bool PutString(Out* out, const Style& style, const char* s) { in PutString()
86 bool PutChar(Out* out, const Style& style, char c) { in PutChar()
96 bool PutUInt(Out* out, in PutUInt()
158 bool PutInt(Out* out, const Style& style, intmax_t v, size_t base) { in PutInt()
171 bool Put(Out* out) { in Put()
187 bool PutSpec(Out* out) { in PutSpec()
213 bool PutLongSpec(Out* out, const Style& style) { in PutLongSpec()
228 bool PutLongLongSpec(Out* out, const Style& style) { in PutLongLongSpec()
241 bool PutSizeTSpec(Out* out, const Style& style) { in PutSizeTSpec()
357 bool FormatBufferImpl(Out* out, const char* format, Args* args) { in FormatBufferImpl()
[all …]
/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.java403 public static final void writeMapXml(Map val, OutputStream out) in writeMapXml()
425 public static final void writeListXml(List val, OutputStream out) in writeListXml()
450 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out) in writeMapXml()
472 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out, in writeMapXml()
506 public static final void writeMapXml(Map val, TypedXmlSerializer out, in writeMapXml()
517 writeValueXml(e.getValue(), (String)e.getKey(), out, callback); in writeMapXml() local
535 public static final void writeListXml(List val, String name, TypedXmlSerializer out) in writeListXml()
552 writeValueXml(val.get(i), null, out); in writeListXml() local
559 public static final void writeSetXml(Set val, String name, TypedXmlSerializer out) in writeSetXml()
592 TypedXmlSerializer out) in writeByteArrayXml()
[all …]

12345678910>>...51