Home
last modified time | relevance | path

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

12345678910>>...53

/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.cc29 std::string out; in GetInsnListDebugString() local
55 std::string out; in GetRegOperandDebugString() local
65 std::string out(StringPrintf("%2d MachineBasicBlock live_in=[", id())); in GetDebugString() local
103 std::string out; in GetDebugString() local
141 std::string out("PSEUDO_COND_BRANCH "); in GetDebugString() local
170 std::string out("PSEUDO_INDIRECT_JUMP "); in GetDebugString() local
176 std::string out("PSEUDO_COPY "); in GetDebugString() local
192 std::string out("PSEUDO_READ_FLAGS "); in GetDebugString() local
201 std::string out("PSEUDO_WRITE_FLAGS "); in GetDebugString() local
/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 …]
/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/core/tests/coretests/src/android/widget/
DRemoteViewsSerializersTest.kt242 val out = ProtoOutputStream() in <lambda>() constant
259 val out = ProtoOutputStream() in <lambda>() constant
270 val out = ProtoOutputStream() in <lambda>() constant
283 val out = ProtoOutputStream() in <lambda>() constant
295 val out = ProtoOutputStream() in <lambda>() constant
307 val out = ProtoOutputStream() in <lambda>() constant
323 val out = ProtoOutputStream() in <lambda>() constant
335 val out = ProtoOutputStream() in <lambda>() constant
348 val out = ProtoOutputStream() in <lambda>() constant
359 val out = ProtoOutputStream() in <lambda>() constant
[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.h44 std::stringstream out; in streamableToString() local
84 std::string out; variable
99 std::string out; variable
115 std::string out; variable
127 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/proto_logging/stats/stats_log_api_gen/
Dutils.cpp65 static void write_native_histogram_helper_signature(FILE* out, const string& atomName, in write_native_histogram_helper_signature()
74 FILE* out, const string& atomName, const string& fieldName, in write_native_histogram_helper_definition()
113 static int write_java_histogram_helper(FILE* out, const string& atomName, const string& fieldName, in write_java_histogram_helper()
155 static int write_src_header(FILE* out, const fs::path& filePath) { in write_src_header()
178 static int write_src_body(FILE* out, const fs::path& filePath, int indent, in write_src_body()
209 static int write_srcs_bodies(FILE* out, const char* path, int indent, in write_srcs_bodies()
473 void write_namespace(FILE* out, const string& cppNamespaces) { in write_namespace()
481 void write_closing_namespace(FILE* out, const string& cppNamespaces) { in write_closing_namespace()
488 static void write_cpp_usage(FILE* out, const string& method_name, const string& atom_code_name, in write_cpp_usage()
515 void write_native_atom_constants(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_native_atom_constants()
[all …]
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()
342 int write_stats_log_header_vendor(FILE* out, const Atoms& atoms, const AtomDecl& attributionDecl, in write_stats_log_header_vendor()
/frameworks/base/core/java/android/widget/
DRemoteViewsSerializers.java93 public static void writeIconToProto(@NonNull ProtoOutputStream out, in writeIconToProto()
232 public static void writeCharSequenceToProto(@NonNull ProtoOutputStream out, in writeCharSequenceToProto()
616 public static void writeAbsoluteSizeSpanToProto(@NonNull ProtoOutputStream out, in writeAbsoluteSizeSpanToProto()
642 public static void writeAccessibilityClickableSpanToProto(@NonNull ProtoOutputStream out, in writeAccessibilityClickableSpanToProto()
672 public static void writeAccessibilityReplacementSpanToProto(@NonNull ProtoOutputStream out, in writeAccessibilityReplacementSpanToProto()
700 public static void writeAccessibilityURLSpanToProto(@NonNull ProtoOutputStream out, in writeAccessibilityURLSpanToProto()
723 public static void writeAlignmentSpanStandardToProto(@NonNull ProtoOutputStream out, in writeAlignmentSpanStandardToProto()
749 public static void writeAnnotationToProto(@NonNull ProtoOutputStream out, Annotation span) { in writeAnnotationToProto()
771 public static void writeBackgroundColorSpanToProto(@NonNull ProtoOutputStream out, in writeBackgroundColorSpanToProto()
807 public static void writeBulletSpanToProto(@NonNull ProtoOutputStream out, BulletSpan span) { in writeBulletSpanToProto()
[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/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/native/services/inputflinger/reader/mapper/gestures/
DGestureConverter.cpp92 std::stringstream out; in dump() local
108 std::list<NotifyArgs> out; in reset() local
136 std::list<NotifyArgs> out; in setEnableSystemGestures() local
231 std::list<NotifyArgs> out; in handleMove() local
251 std::list<NotifyArgs> out = {}; in handleButtonsChange() local
354 std::list<NotifyArgs> out; in releaseAllButtons() local
383 std::list<NotifyArgs> out; in handleScroll() local
442 std::list<NotifyArgs> out; in handleFling() local
476 std::list<NotifyArgs> out; in endScroll() local
492 std::list<NotifyArgs> out = {}; in handleMultiFingerSwipe() local
[all …]

12345678910>>...53