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

1234567891011>>

/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/binder/
H A DTextOutput.h10 * Unless required by applicable law or agreed to in writing, software
41 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } argument
53 // Text output stream for printing to the log (via utils/Log.h).
56 // Text output stream for printing to stdout.
59 // Text output stream for printing to stderr.
64 TextOutput& endl(TextOutput& to);
65 TextOutput& indent(TextOutput& to);
66 TextOutput& dedent(TextOutput& to);
69 operator <<(TextOutput& to, const T& val) argument
122 operator <<(TextOutput& to, decltype(std::endl<char, std::char_traits<char>>) ) argument
130 operator <<(TextOutput& to, const char &c) argument
136 operator <<(TextOutput& to, const bool &val) argument
143 operator <<(TextOutput& to, const String16& val) argument
152 endl(TextOutput& to) argument
158 indent(TextOutput& to) argument
164 dedent(TextOutput& to) argument
170 operator <<(TextOutput& to, TextOutputManipFunc func) argument
[all...]
/frameworks/native/libs/binder/include/binder/
H A DTextOutput.h10 * Unless required by applicable law or agreed to in writing, software
41 inline Bundle(TextOutput& to) : mTO(to) { to.pushBundle(); } argument
53 // Text output stream for printing to the log (via utils/Log.h).
56 // Text output stream for printing to stdout.
59 // Text output stream for printing to stderr.
64 TextOutput& endl(TextOutput& to);
65 TextOutput& indent(TextOutput& to);
66 TextOutput& dedent(TextOutput& to);
69 operator <<(TextOutput& to, const T& val) argument
122 operator <<(TextOutput& to, decltype(std::endl<char, std::char_traits<char>>) ) argument
130 operator <<(TextOutput& to, const char &c) argument
136 operator <<(TextOutput& to, const bool &val) argument
143 operator <<(TextOutput& to, const String16& val) argument
152 endl(TextOutput& to) argument
158 indent(TextOutput& to) argument
164 dedent(TextOutput& to) argument
170 operator <<(TextOutput& to, TextOutputManipFunc func) argument
[all...]
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DSocketConnect.java14 private OutputStream to; field in class:SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException { argument
18 this.to = to.getOutputStream();
32 to.write(buffer, 0, r);
35 to.close();
/frameworks/base/core/tests/overlaytests/
H A DAndroid.mk1 # Dummy makefile to halt recursive directory traversal.
/frameworks/av/include/media/stagefright/foundation/
H A DALookup.h10 * Unless required by applicable law or agreed to in writing, software
30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const {
52 *to = elem.second;
60 bool ALookup<T, U>::rlookup(const U& from, T *to) cons
[all...]
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DALookup.h10 * Unless required by applicable law or agreed to in writing, software
30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const {
52 *to = elem.second;
60 bool ALookup<T, U>::rlookup(const U& from, T *to) cons
[all...]
/frameworks/av/media/libstagefright/include/foundation/
H A DALookup.h10 * Unless required by applicable law or agreed to in writing, software
30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const {
52 *to = elem.second;
60 bool ALookup<T, U>::rlookup(const U& from, T *to) cons
[all...]
/frameworks/base/docs/
H A D__DEPRECATED__DO_NOT_EDIT__.txt6 All authoring of content has been moved to Piper (go/dac-source).
11 so you may continue to update JavaDoc comments to update documentation.
16 For answers to further questions, please email: android-writers@google.com
/frameworks/base/docs/html/
H A D__DEPRECATED__DO_NOT_EDIT__.txt6 All authoring of content has been moved to Piper (go/dac-source).
11 so you may continue to update JavaDoc comments to update documentation.
16 For answers to further questions, please email: android-writers@google.com
/frameworks/native/libs/binder/
H A DTextOutput.cpp10 * Unless required by applicable law or agreed to in writing, software
45 TextOutput& operator<<(TextOutput& to, const TypeCode& val) argument
47 printTypeCode(val.typeCode(), textOutputPrinter, (void*)&to);
48 return to;
64 TextOutput& operator<<(TextOutput& to, const HexDump& val) argument
68 textOutputPrinter, (void*)&to);
69 return to;
/frameworks/base/tests/net/java/com/android/server/connectivity/
H A DLingerMonitorTest.java10 * Unless required by applicable law or agreed to in writing, software
89 NetworkAgentInfo to = cellNai(101);
91 mMonitor.noteLingerDefaultNetwork(from, to);
92 verifyNotification(from, to);
100 NetworkAgentInfo to = cellNai(101);
102 mMonitor.noteLingerDefaultNetwork(from, to);
103 verifyToast(from, to);
111 NetworkAgentInfo to = cellNai(101);
113 mMonitor.noteLingerDefaultNetwork(from, to);
114 verifyNotification(from, to);
303 transition(String from, String to) argument
325 verifyToast(NetworkAgentInfo from, NetworkAgentInfo to) argument
330 verifyNotification(NetworkAgentInfo from, NetworkAgentInfo to) argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
H A DReflectIntermediateClass.java10 * Unless required by applicable law or agreed to in writing, software
23 * Offer an indirection to some Big0xx classes and have their initialization
28 public static int get(int from, int to, int sleepMillis) throws ClassNotFoundException, argument
32 for (int i = from; i <= to; i++) {
/frameworks/base/libs/hwui/utils/
H A DGLUtils.cpp10 * Unless required by applicable law or agreed to in writing, software
25 #error Setting DEBUG_OPENGL to HIGH requires setting HWUI_ENABLE_OPENGL_VALIDATION to true in the Android.mk!
/frameworks/base/tools/preload2/
H A DAndroid.mk7 # To connect to devices (and take hprof dumps).
14 # convenience (and to not depend on internal JDK APIs).
20 # Copy to build artifacts
23 # Copy the preload-tool shell script to the host's bin directory.
/frameworks/rs/script_api/
H A Drs_convert.spec10 # Unless required by applicable law or agreed to in writing, software
20 The functions below convert from a numerical vector type to another, or from one color
21 representation to another.
34 Converts a vector from one numerical type to another. The conversion are done entry per entry.
36 E.g calling <code>a = convert_short3(b);</code> is equivalent to doing
39 Converting floating point values to integer types truncates.
41 Converting numbers too large to fit the destination type yields undefined results.
42 For example, converting a float that contains 1.0e18 to a short is undefined.
43 Use @clamp() to avoid this.
107 of this range, the resulting outputs will be clamped to b
[all...]
H A Drs_object_types.spec10 # Unless required by applicable law or agreed to in writing, software
20 The types below are used to manipulate RenderScript objects like allocations, samplers,
25 // Opaque handle to a RenderScript object. Do not use this directly.
44 summary: Handle to an element
46 An opaque handle to a RenderScript element.
53 summary: Handle to a Type
55 An opaque handle to a RenderScript type.
62 summary: Handle to an allocation
64 An opaque handle to a RenderScript allocation.
71 summary: Handle to
[all...]
H A Drs_io.spec10 # Unless required by applicable law or agreed to in writing, software
20 These functions are used to:<ul>
21 <li>Send information to the Java client, and</li>
23 <li>Send the processed allocation or receive the next allocation to process.</li></ul>
29 arg: rs_allocation a, "Allocation to work on."
44 arg: rs_allocation a, "Allocation to work on."
45 summary: Send new content to the queue
47 Send the contents of the Allocation to the queue.
59 summary: Send a message to the client, non-blocking
61 Sends a message back to th
[all...]
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DListChangeRegistry.java10 * Unless required by applicable law or agreed to in writing, software
50 callback.onItemRangeMoved(sender, listChanges.start, listChanges.to,
101 * @param to The index of where the element was moved to.
104 public void notifyMoved(ObservableList list, int from, int to, int count) { argument
105 ListChanges listChanges = acquire(from, to, count);
113 * @param start The index of the first element to be removed.
121 private static ListChanges acquire(int start, int to, int count) { argument
127 listChanges.to = to;
148 public int to; field in class:ListChangeRegistry.ListChanges
[all...]
/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc49 // Force i<N>86 to i386.
54 // On darwin, we want to update the version to match that of the
74 /// srandom - set the initial seed value for future calls to random().
/frameworks/native/services/surfaceflinger/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/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/coretests/apks/install_bad_dex/
H A DAndroid.mk10 # Override target specific variable PRIVATE_DEX_FILE to inject bad classes.dex file.
/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.

Completed in 726 milliseconds

1234567891011>>