Searched refs:to (Results 1 - 25 of 274) sorted by relevance

1234567891011

/frameworks/native/libs/utils/
H A DTextOutput.cpp10 * Unless required by applicable law or agreed to in writing, software
37 TextOutput& operator<<(TextOutput& to, bool val) argument
39 if (val) to.print("true", 4);
40 else to.print("false", 5);
41 return to;
44 TextOutput& operator<<(TextOutput& to, int val) argument
48 to.print(buf, strlen(buf));
49 return to;
52 TextOutput& operator<<(TextOutput& to, long val) argument
56 to
60 operator <<(TextOutput& to, unsigned int val) argument
68 operator <<(TextOutput& to, unsigned long val) argument
76 operator <<(TextOutput& to, long long val) argument
84 operator <<(TextOutput& to, unsigned long long val) argument
92 print_float(TextOutput& to, double value) argument
104 operator <<(TextOutput& to, float val) argument
109 operator <<(TextOutput& to, double val) argument
114 operator <<(TextOutput& to, const void* val) argument
127 operator <<(TextOutput& to, const TypeCode& val) argument
146 operator <<(TextOutput& to, const HexDump& val) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwbdecoder_mem_funcs.h10 * Unless required by applicable law or agreed to in writing, software
26 Permission to distribute, modify and use this file under the standard license
58 #define pv_memset(to, c, n) memset(to, c, n)
61 #define pv_memcpy(to, from, n) memcpy(to, from, n)
62 #define pv_memmove(to, from, n) memmove(to, from, n)
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dmp3_mem_funcs.h10 * Unless required by applicable law or agreed to in writing, software
64 #define pv_memset(to, c, n) memset(to, c, n)
67 #define pv_memcpy(to, from, n) memcpy(to, from, n)
68 #define pv_memmove(to, from, n) memmove(to, from, n)
/frameworks/native/include/utils/
H A DTextOutput.h10 * Unless required by applicable law or agreed to in writing, software
39 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } argument
51 // Text output stream for printing to the log (via utils/Log.h).
54 // Text output stream for printing to stdout.
57 // Text output stream for printing to stderr.
62 TextOutput& endl(TextOutput& to);
63 TextOutput& indent(TextOutput& to);
64 TextOutput& dedent(TextOutput& to);
126 endl(TextOutput& to) argument
132 indent(TextOutput& to) argument
138 dedent(TextOutput& to) argument
144 operator <<(TextOutput& to, const char* str) argument
150 operator <<(TextOutput& to, char c) argument
156 operator <<(TextOutput& to, TextOutputManipFunc func) argument
[all...]
/frameworks/base/tools/aidl/
H A DAST.cpp5 WriteModifiers(FILE* to, int mod, int mask) argument
10 fprintf(to, "@Override ");
14 fprintf(to, "public ");
17 fprintf(to, "private ");
20 fprintf(to, "protected ");
24 fprintf(to, "static ");
28 fprintf(to, "final ");
32 fprintf(to, "abstract ");
37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments) argument
41 arguments[i]->Write(to);
81 Write(FILE* to) argument
109 Write(FILE* to) argument
124 Write(FILE* to) argument
161 WriteDeclaration(FILE* to) argument
172 Write(FILE* to) argument
196 Write(FILE* to) argument
221 Write(FILE* to) argument
253 Write(FILE* to) argument
278 Write(FILE* to) argument
356 Write(FILE* to) argument
382 Write(FILE* to) argument
419 Write(FILE* to) argument
437 Write(FILE* to) argument
463 Write(FILE* to) argument
491 Write(FILE* to) argument
517 Write(FILE* to) argument
542 Write(FILE* to) argument
566 Write(FILE* to) argument
583 Write(FILE* to) argument
600 Write(FILE* to) argument
621 Write(FILE* to) argument
643 Write(FILE* to) argument
671 Write(FILE* to) argument
692 Write(FILE* to) argument
731 Write(FILE* to) argument
814 Write(FILE* to) argument
891 Write(FILE* to) argument
[all...]
H A DAST.h31 void WriteModifiers(FILE* to, int mod, int mask);
39 virtual void Write(FILE* to) = 0;
45 virtual void Write(FILE* to) = 0;
54 virtual void Write(FILE* to);
64 virtual void Write(FILE* to);
79 void WriteDeclaration(FILE* to);
80 void Write(FILE* to);
93 void Write(FILE* to);
108 virtual void Write(FILE* to);
114 virtual void Write(FILE* to)
[all...]
H A Dgenerate_java.cpp80 FILE* to; local
82 to = stdout;
84 /* open file in binary mode to ensure that the tool produces the
87 to = fopen(filename.c_str(), "wb");
88 if (to == NULL) {
89 fprintf(stderr, "unable to open %s for write\n", filename.c_str());
94 document->Write(to);
96 fclose(to);
/frameworks/compile/mclinker/lib/LD/
H A DELFSectionMap.cpp16 const char* to; member in struct:NameMap
78 NamePair& pair = append(map[i].from, map[i].to, exist);
81 << map[i].to
83 << pair.to;
/frameworks/base/core/tests/overlaytests/
H A DAndroid.mk1 # Dummy makefile to halt recursive directory traversal.
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java10 * Unless required by applicable law or agreed to in writing, software
29 * accepts an incoming connection, and it will then forward the incoming/outgoing streams to a
36 private Socket from, to; field in class:Forwarder
41 public Forwarder (Socket from, Socket to, ForwardServer server) { argument
44 this.to = to;
49 Thread outgoing = new Thread(new SocketPipe(from, to));
50 Thread incoming = new Thread(new SocketPipe(to, from));
59 shutdown(to);
/frameworks/av/media/libnbaio/
H A DAndroid.mk17 # libsndfile license is incompatible; uncomment to use for local debug only
19 #LOCAL_C_INCLUDES += path/to/libsndfile/src
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DAndroid.mk25 # chance to fix this test, we don't want to break normal builds.
/frameworks/base/media/mca/filterfw/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
46 # to add this library to the prelink map and set this to true. However,
47 # it's difficult to do this for applications that are not supplied as
/frameworks/av/services/audioflinger/
H A DAndroid.mk9 # FIXME Move this library to frameworks/native
24 # uncomment to enable AudioResampler::MED_QUALITY
29 # uncomment for debugging timing problems related to StateQueue::push()
63 # uncomment to display CPU load adjusted for CPU frequency
73 # uncomment for dumpsys to write most recent audio output to .wav file
77 # uncomment to enable the audio watchdog
/frameworks/base/core/java/android/app/
H A DActionBar.java10 * Unless required by applicable law or agreed to in writing, software
48 * your activity, you can enable an action mode that offers actions specific to the selected
54 * <p>For information about how to use the action bar, including how to add action items, navigation
63 * will dispatch onOptionsItemSelected to the host Activity with
71 * e.g. this might be presented to the user as a dropdown list.
83 * navigation modes to use a wider logo in place of the standard icon.
101 * e.g. show an arrow to the left indicating the action that will be taken.
103 * Set this flag if selecting the 'home' button in the action bar to return
104 * up by a single level in your UI rather than back to th
[all...]
/frameworks/native/libs/gui/tests/
H A DAndroid.mk33 # Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
34 # to integrate with auto-test framework.
41 # team really wants is to build the stuff defined by this makefile.
/frameworks/native/services/surfaceflinger/tests/
H A DAndroid.mk28 # Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
29 # to integrate with auto-test framework.
36 # team really wants is to build the stuff defined by this makefile.
/frameworks/base/cmds/bmgr/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/ime/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/input/
H A DAndroid.mk13 $(transform-prebuilt-to-target)
/frameworks/base/cmds/pm/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/svc/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java10 * Unless required by applicable law or agreed to in writing, software
25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
27 * views you want to display the columns, and the XML file that defines
34 * returned value is false and the view to bind is a TextView,
36 * is false and the view to bind is an ImageView,
44 * to get control over the filtering process. You can refer to
50 * A list of columns containing the data to bind to th
77 SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) argument
102 SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) argument
360 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
29 # Need to run as system app to get access to Settings. This test won't work for user builds.
/frameworks/compile/libbcc/runtime/make/
H A Doptions.mk3 # This list of such variables should be kept up to date with AvailableOptions in
6 # The compiler to use.
9 # The compiler flags to use.
12 # The list of functions to include in the library.

Completed in 379 milliseconds

1234567891011