Searched refs:from (Results 1 - 25 of 69) sorted by relevance

123

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Daac_mem_funcs.h44 #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.h19 Portions of this file are derived from the following 3GPP standard:
23 Available from http://www.3gpp.org
27 terms listed above has been obtained from the copyright holder.
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.h67 #define pv_memcpy(to, from, n) memcpy(to, from, n)
68 #define pv_memmove(to, from, n) memmove(to, from, n)
/frameworks/base/media/libstagefright/
H A Dstring.cpp33 string::string(const string &from, size_type start, size_type length) { argument
34 CHECK(start <= from.size());
36 length = from.size() - start;
38 CHECK(start + length <= from.size());
41 mString.setTo(from.c_str() + start, length);
84 void string::erase(size_t from, size_t length) { argument
85 String8 s(mString.string(), from);
86 s.append(mString.string() + from + length);
H A DMetaData.cpp28 MetaData::MetaData(const MetaData &from) argument
30 mItems(from.mItems) {
189 MetaData::typed_data::typed_data(const typed_data &from) argument
190 : mType(from.mType),
192 allocateStorage(from.mSize);
193 memcpy(storage(), from.storage(), mSize);
197 const MetaData::typed_data &from) {
198 if (this != &from) {
200 mType = from.mType;
201 allocateStorage(from
196 operator =( const MetaData::typed_data &from) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityResult.java29 public ActivityResult(HistoryRecord from, String resultWho, argument
32 mFrom = from;
H A DDeviceMonitor.java145 * Copies from a file to an output stream.
147 private void dump(File from, OutputStream out) throws IOException { argument
148 writeHeader(from, out);
152 in = new FileInputStream(from);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java36 private Socket from, to; field in class:Forwarder
40 public Forwarder (Socket from, Socket to, ForwardServer server) { argument
42 this.from = from;
48 Thread outgoing = new Thread(new SocketPipe(from, to));
49 Thread incoming = new Thread(new SocketPipe(to, from));
57 shutdown(from);
/frameworks/base/media/libstagefright/include/
H A Dstagefright_string.h33 string(const string &from, size_type start, size_type length = npos);
39 void erase(size_type from, size_type length);
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
51 * This field should be made private, so it is hidden from the SDK.
57 * This field should be made private, so it is hidden from the SDK.
76 * @param from A list of column names representing the data to bind to the UI. Can be null
78 * @param to The views that should display column in the "from" parameter.
80 * are given the values of the first N columns in the from
83 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
86 mOriginalFrom = from;
87 findColumns(from);
93 * "from" paramete
304 findColumns(String[] from) argument
337 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
H A DSimpleCursorTreeAdapter.java25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
44 * The View IDs that will display a group's data fetched from the
52 * The View IDs that will display a child's data fetched from the
77 * @param groupTo The group views (from the group layouts) that should
78 * display column in the "from" parameter. These should all be
80 * given the values of the first N columns in the from parameter.
90 * @param childTo The child views (from the child layouts) that should
91 * display column in the "from" parameter. These should all be
93 * given the values of the first N columns in the from parameter.
118 * @param groupTo The group views (from th
231 bindView(View view, Context context, Cursor cursor, int[] from, int[] to) argument
[all...]
H A DLinearLayout.java77 @ViewDebug.IntToString(from = -1, to = "NONE"),
78 @ViewDebug.IntToString(from = Gravity.NO_GRAVITY, to = "NONE"),
79 @ViewDebug.IntToString(from = Gravity.TOP, to = "TOP"),
80 @ViewDebug.IntToString(from = Gravity.BOTTOM, to = "BOTTOM"),
81 @ViewDebug.IntToString(from = Gravity.LEFT, to = "LEFT"),
82 @ViewDebug.IntToString(from = Gravity.RIGHT, to = "RIGHT"),
83 @ViewDebug.IntToString(from = Gravity.CENTER_VERTICAL, to = "CENTER_VERTICAL"),
84 @ViewDebug.IntToString(from = Gravity.FILL_VERTICAL, to = "FILL_VERTICAL"),
85 @ViewDebug.IntToString(from = Gravity.CENTER_HORIZONTAL, to = "CENTER_HORIZONTAL"),
86 @ViewDebug.IntToString(from
[all...]
H A DSimpleAdapter.java33 * defines the views used to display the row, and a mapping from keys in the Map to specific
70 * "from"
73 * @param from A list of column names that will be added to the Map associated with each
75 * @param to The views that should display column in the "from" parameter. These should all be
77 * in the from parameter.
80 int resource, String[] from, int[] to) {
83 mFrom = from;
153 final String[] from = mFrom;
160 final Object data = dataSet.get(from[i]);
235 * @param value the value retrieved from th
79 SimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) argument
[all...]
H A DRelativeLayout.java1015 @ViewDebug.IntToString(from = ABOVE, to = "above"),
1016 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"),
1017 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"),
1018 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"),
1019 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1020 @ViewDebug.IntToString(from = ALIGN_PARENT_LEFT, to = "alignParentLeft"),
1021 @ViewDebug.IntToString(from = ALIGN_PARENT_RIGHT, to = "alignParentRight"),
1022 @ViewDebug.IntToString(from = ALIGN_PARENT_TOP, to = "alignParentTop"),
1023 @ViewDebug.IntToString(from = ALIGN_RIGHT, to = "alignRight"),
1024 @ViewDebug.IntToString(from
[all...]
/frameworks/base/include/utils/
H A DVectorImpl.h53 /*! must be called from subclasses destructor */
101 virtual void do_copy(void* dest, const void* from, size_t num) const = 0;
103 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0;
104 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0;
122 inline void _do_copy(void* dest, const void* from, size_t num) const;
124 inline void _do_move_forward(void* dest, const void* from, size_t num) const;
125 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
H A DSortedVector.h97 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
127 virtual void do_copy(void* dest, const void* from, size_t num) const;
129 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
130 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
136 // No user serviceable parts from here...
252 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const {
253 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
262 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const {
263 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
267 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_
[all...]
H A DVector.h94 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
123 //! insert on onr several items initialized from a prototype item
162 virtual void do_copy(void* dest, const void* from, size_t num) const;
164 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
165 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
170 // No user serviceable parts from here...
334 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { argument
335 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
344 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { argument
345 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), nu
349 do_move_backward(void* dest, const void* from, size_t num) const argument
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DMerge.java39 LayoutInflater.from(this).inflate(R.layout.merge_tag, mLayout);
/frameworks/base/core/java/android/view/
H A DWindowManager.java73 * an offset from the given edge.
80 * an offset from the given edge.
104 * <li> <strong>Application windows</strong> (ranging from
110 * <li> <strong>Sub-windows</strong> (ranging from
115 * <li> <strong>System windows</strong> (ranging from
146 @ViewDebug.IntToString(from = TYPE_BASE_APPLICATION, to = "TYPE_BASE_APPLICATION"),
147 @ViewDebug.IntToString(from = TYPE_APPLICATION, to = "TYPE_APPLICATION"),
148 @ViewDebug.IntToString(from = TYPE_APPLICATION_STARTING, to = "TYPE_APPLICATION_STARTING"),
149 @ViewDebug.IntToString(from = TYPE_APPLICATION_PANEL, to = "TYPE_APPLICATION_PANEL"),
150 @ViewDebug.IntToString(from
[all...]
H A DContextThemeWrapper.java24 * A ContextWrapper that allows you to modify the theme from what is in the
69 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DReadRecInd.java26 * @param from the from value
34 public ReadRecInd(EncodedStringValue from, argument
41 setFrom(from);
H A DSendReq.java54 * @param from the from value
61 EncodedStringValue from,
67 setFrom(from);
60 SendReq(byte[] contentType, EncodedStringValue from, int mmsVersion, byte[] transactionId) argument
/frameworks/base/include/media/stagefright/
H A DColorConverter.h30 ColorConverter(OMX_COLOR_FORMATTYPE from, OMX_COLOR_FORMATTYPE to);
/frameworks/base/libs/utils/
H A DVectorImpl.cpp363 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; variable
365 _do_copy(dest, from, mCount-where);
376 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; variable
377 _do_move_forward(to, from, s);
415 const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize;
417 _do_copy(dest, from, mCount-(where+amount));
429 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize;
430 _do_move_backward(to, from, s);
456 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const
459 do_copy(dest, from, nu
[all...]
/frameworks/base/graphics/jni/
H A DAndroid.mk4 # from the simulator as well, and so in turn librs_jni needs to be

Completed in 4524 milliseconds

123