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

123456

/frameworks/base/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/base/media/libstagefright/codecs/aacdec/
H A Daac_mem_funcs.h10 * Unless required by applicable law or agreed to in writing, software
41 #define pv_memset(to, c, n) memset(to, c, n)
44 #define pv_memcpy(to, from, n) memcpy(to, from, n)
45 #define pv_memmove(to, from, n) memmove(to, from, n)
/frameworks/base/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/base/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/base/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
146 WriteDeclaration(FILE* to) argument
157 Write(FILE* to) argument
181 Write(FILE* to) argument
206 Write(FILE* to) argument
238 Write(FILE* to) argument
263 Write(FILE* to) argument
330 Write(FILE* to) argument
356 Write(FILE* to) argument
375 Write(FILE* to) argument
393 Write(FILE* to) argument
419 Write(FILE* to) argument
447 Write(FILE* to) argument
473 Write(FILE* to) argument
498 Write(FILE* to) argument
522 Write(FILE* to) argument
539 Write(FILE* to) argument
556 Write(FILE* to) argument
577 Write(FILE* to) argument
599 Write(FILE* to) argument
627 Write(FILE* to) argument
673 Write(FILE* to) argument
756 Write(FILE* to) argument
833 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);
69 void WriteDeclaration(FILE* to);
70 void Write(FILE* to);
83 void Write(FILE* to);
98 virtual void Write(FILE* to);
104 virtual void Write(FILE* to) = 0;
113 virtual void Write(FILE* to);
[all...]
/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
40 public Forwarder (Socket from, Socket to, ForwardServer server) { argument
43 this.to = to;
48 Thread outgoing = new Thread(new SocketPipe(from, to));
49 Thread incoming = new Thread(new SocketPipe(to, from));
58 shutdown(to);
/frameworks/base/media/libstagefright/rtsp/
H A DARTPAssembler.cpp10 * Unless required by applicable law or agreed to in writing, software
67 void ARTPAssembler::CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from) { argument
74 to->meta()->setInt64("ntp-time", ntpTime);
75 to->meta()->setInt32("rtp-time", rtpTime);
78 to->setInt32Data(from->int32Data());
H A DARTPAssembler.h10 * Unless required by applicable law or agreed to in writing, software
46 static void CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from);
/frameworks/base/services/camera/tests/CameraServiceTest/
H A DAndroid.mk25 # chance to fix this test, we don't want to break normal builds.
/frameworks/base/tools/localize/
H A DSourcePos.h23 static void PrintErrors(FILE* to);
H A DSourcePos.cpp28 void Print(FILE* to) const;
86 ErrorPos::Print(FILE* to) const
89 fprintf(to, "%s:%d: %s\n", this->file.c_str(), this->line, this->error.c_str());
91 fprintf(to, "%s: %s\n", this->file.c_str(), this->error.c_str());
158 SourcePos::PrintErrors(FILE* to) argument
162 it->Print(to);
/frameworks/base/cmds/am/
H A DAndroid.mk13 $(transform-prebuilt-to-target)
/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/tools/aapt/
H A DSourcePos.h24 static void printErrors(FILE* to);
H A DSourcePos.cpp26 void print(FILE* to) const;
87 ErrorPos::print(FILE* to) const
92 fprintf(to, "%s:%d: %s %s\n", this->file.string(), this->line, type, this->error.string());
94 fprintf(to, "%s: %s %s\n", this->file.string(), type, this->error.string());
162 SourcePos::printErrors(FILE* to) argument
166 it->print(to);
/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
83 SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) argument
337 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/frameworks/base/core/java/android/text/
H A DSelection.java10 * Unless required by applicable law or agreed to in writing, software
62 * Set the selection anchor to <code>start</code> and the selection edge
63 * to <code>stop</code>.
82 * Move the cursor to offset <code>index</code>.
96 * Move the selection edge to offset <code>index</code>.
116 * Move the cursor to the buffer offset physically above the current
157 * Move the cursor to the buffer offset physically below the current
198 * Move the cursor to the buffer offset physically to the left of
200 * at the left edge of the line and there is not another line to mov
[all...]
/frameworks/base/core/java/android/text/method/
H A DBaseKeyListener.java10 * Unless required by applicable law or agreed to in writing, software
57 int to = TextUtils.getOffsetBefore(content, selEnd);
59 if (to != selEnd) {
60 content.delete(Math.min(to, selEnd), Math.max(to, selEnd));
/frameworks/base/graphics/jni/
H A DAndroid.mk3 # for the simulator on gHardy, and therefore libRS needs to be excluded
4 # from the simulator as well, and so in turn librs_jni needs to be

Completed in 386 milliseconds

123456