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

1234567

/frameworks/av/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/av/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/compile/mclinker/lib/LD/
H A DELFSectionMap.cpp15 const char* from; member in struct:NameMap
78 NamePair& pair = append(map[i].from, map[i].to, exist);
80 warning(diag::warn_duplicate_std_sectmap) << map[i].from
82 << pair.from
/frameworks/base/services/java/com/android/server/am/
H A DActivityResult.java29 public ActivityResult(ActivityRecord from, String resultWho, argument
32 mFrom = from;
H A DDeviceMonitor.java149 * Copies from a file to an output stream.
151 private void dump(File from, OutputStream out) throws IOException { argument
152 writeHeader(from, out);
156 in = new FileInputStream(from);
/frameworks/av/include/media/stagefright/foundation/
H A DAString.h29 AString(const AString &from);
30 AString(const AString &from, size_t offset, size_t n);
33 AString &operator=(const AString &from);
36 void setTo(const AString &from, size_t offset, size_t n);
50 void append(const AString &from);
51 void append(const AString &from, size_t offset, size_t n);
62 void insert(const AString &from, size_t insertionPos);
63 void insert(const char *from, size_t size, size_t insertionPos);
/frameworks/compile/libbcc/
H A Dlibbcc-gen-config-from-mk.mk17 # Build rules for extracting configuration from Android.mk
24 $(PRIVATE_PATH)/tools/build/gen-config-from-mk.py < $< > $@
26 $(LIBBCC_ROOT_PATH)/tools/build/gen-config-from-mk.py
H A Dlibbcc.mk35 LIBBCC_GEN_CONFIG_MK := $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp51 AString::AString(const AString &from) argument
55 setTo(from, 0, from.size());
58 AString::AString(const AString &from, size_t offset, size_t n) argument
62 setTo(from, offset, n);
69 AString &AString::operator=(const AString &from) { argument
70 if (&from != this) {
71 setTo(from, 0, from.size());
98 void AString::setTo(const AString &from, size_ argument
182 append(const AString &from) argument
186 append(const AString &from, size_t offset, size_t n) argument
265 insert(const AString &from, size_t insertionPos) argument
269 insert(const char *from, size_t size, size_t insertionPos) argument
[all...]
/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.
77 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
80 mOriginalFrom = from;
81 findColumns(c, from);
93 * @param from A list of column names representing the data to bind to the UI. Can be null
95 * @param to The views that should display column in the "from" parameter.
97 * are given the values of the first N columns in the from
102 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, argument
325 findColumns(Cursor c, String[] from) argument
360 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java36 * This field should be made private, so it is hidden from the SDK.
42 * This field should be made private, so it is hidden from the SDK.
62 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
65 mOriginalFrom = from;
66 findColumns(from);
78 * @param from A list of column names representing the data to bind to the UI. Can be null
80 * @param to The views that should display column in the "from" parameter.
82 * are given the values of the first N columns in the from
87 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, argument
91 mOriginalFrom = from;
309 findColumns(String[] from) argument
343 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java36 private Socket from, to; field in class:Forwarder
41 public Forwarder (Socket from, Socket to, ForwardServer server) { argument
43 this.from = from;
49 Thread outgoing = new Thread(new SocketPipe(from, to));
50 Thread incoming = new Thread(new SocketPipe(to, from));
58 shutdown(from);
/frameworks/base/core/java/android/app/
H A DActionBar.java42 * select items accessible directly from the action bar as "action items". You can also
50 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
557 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
565 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
573 * Remove all tabs from the action bar and deselect the current tab.
835 * Set the {@link TabListener} that will handle switching to and from this tab.
930 @ViewDebug.IntToString(from = -1, to = "NONE"),
931 @ViewDebug.IntToString(from = Gravity.NO_GRAVITY, to = "NONE"),
932 @ViewDebug.IntToString(from = Gravity.TOP, to = "TOP"),
933 @ViewDebug.IntToString(from
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DUtteranceProgressListener.java11 * The callbacks specified in this method can be called from multiple threads.
52 static UtteranceProgressListener from( method in class:UtteranceProgressListener
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptGroup.java51 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { argument
52 mFrom = from;
57 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { argument
58 mFrom = from;
267 * @param from The source for the connection.
272 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) { argument
273 //android.util.Log.v("RSR", "addConnection " + t +", " + from + ", " + to);
275 Node nf = findNode(from);
285 ConnectLine cl = new ConnectLine(t, from, to);
286 mLines.add(new ConnectLine(t, from, t
307 addConnection(Type t, Script.KernelID from, Script.KernelID to) 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.java111 * {@link Gravity#END} it provides an offset from the given edge.
119 * an offset from the given edge.
146 * <li> <strong>Application windows</strong> (ranging from
152 * <li> <strong>Sub-windows</strong> (ranging from
157 * <li> <strong>System windows</strong> (ranging from
188 @ViewDebug.IntToString(from = TYPE_BASE_APPLICATION, to = "TYPE_BASE_APPLICATION"),
189 @ViewDebug.IntToString(from = TYPE_APPLICATION, to = "TYPE_APPLICATION"),
190 @ViewDebug.IntToString(from = TYPE_APPLICATION_STARTING, to = "TYPE_APPLICATION_STARTING"),
191 @ViewDebug.IntToString(from = TYPE_APPLICATION_PANEL, to = "TYPE_APPLICATION_PANEL"),
192 @ViewDebug.IntToString(from
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java76 void migrateFrom(SipPhoneBase from) { argument
77 migrate(mRingbackRegistrants, from.mRingbackRegistrants);
78 migrate(mPreciseCallStateRegistrants, from.mPreciseCallStateRegistrants);
79 migrate(mNewRingingConnectionRegistrants, from.mNewRingingConnectionRegistrants);
80 migrate(mIncomingRingRegistrants, from.mIncomingRingRegistrants);
81 migrate(mDisconnectRegistrants, from.mDisconnectRegistrants);
82 migrate(mServiceStateRegistrants, from.mServiceStateRegistrants);
83 migrate(mMmiCompleteRegistrants, from.mMmiCompleteRegistrants);
84 migrate(mMmiRegistrants, from.mMmiRegistrants);
85 migrate(mUnknownConnectionRegistrants, from
89 migrate(RegistrantList to, RegistrantList from) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMetaData.cpp34 MetaData::MetaData(const MetaData &from) argument
36 mItems(from.mItems) {
230 MetaData::typed_data::typed_data(const typed_data &from) argument
231 : mType(from.mType),
233 allocateStorage(from.mSize);
234 memcpy(storage(), from.storage(), mSize);
238 const MetaData::typed_data &from) {
239 if (this != &from) {
241 mType = from.mType;
242 allocateStorage(from
237 operator =( const MetaData::typed_data &from) argument
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1071 GLMessage_DataType::GLMessage_DataType(const GLMessage_DataType& from) argument
1074 MergeFrom(from);
1378 const ::google::protobuf::MessageLite& from) {
1379 MergeFrom(*::google::protobuf::down_cast<const GLMessage_DataType*>(&from));
1382 void GLMessage_DataType::MergeFrom(const GLMessage_DataType& from) { argument
1383 GOOGLE_CHECK_NE(&from, this);
1384 intvalue_.MergeFrom(from.intvalue_);
1385 floatvalue_.MergeFrom(from.floatvalue_);
1386 charvalue_.MergeFrom(from.charvalue_);
1387 rawbytes_.MergeFrom(from
1377 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
1399 CopyFrom(const GLMessage_DataType& from) argument
1446 GLMessage_FrameBuffer(const GLMessage_FrameBuffer& from) argument
1611 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
1616 MergeFrom(const GLMessage_FrameBuffer& from) argument
1629 CopyFrom(const GLMessage_FrameBuffer& from) argument
1679 GLMessage(const GLMessage& from) argument
2002 CheckTypeAndMergeFrom( const ::google::protobuf::MessageLite& from) argument
2007 MergeFrom(const GLMessage& from) argument
2035 CopyFrom(const GLMessage& from) argument
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DReadRecInd.java26 * @param from the from value
34 public ReadRecInd(EncodedStringValue from, argument
41 setFrom(from);
/frameworks/base/libs/hwui/utils/
H A DSortedList.h98 virtual void do_copy(void* dest, const void* from, size_t num) const;
100 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
101 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
215 void SortedList<TYPE>::do_copy(void* dest, const void* from, size_t num) const {
216 copy_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num);
225 void SortedList<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const {
226 move_forward_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num);
230 void SortedList<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const {
231 move_backward_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num);
/frameworks/native/include/utils/
H A DSortedVector.h129 virtual void do_copy(void* dest, const void* from, size_t num) const;
131 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
132 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
141 // No user serviceable parts from here...
253 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { argument
254 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
263 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { argument
264 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
268 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { argument
269 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), nu
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DScriptGroup.java57 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { argument
58 mFrom = from;
63 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { argument
64 mFrom = from;
178 // do a DFS from original node, looking for original node
304 * @param from The source for the connection.
309 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) { argument
310 //android.util.Log.v("RSR", "addConnection " + t +", " + from + ", " + to);
312 Node nf = findNode(from);
322 ConnectLine cl = new ConnectLine(t, from, t
344 addConnection(Type t, Script.KernelID from, Script.KernelID to) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.h47 static void CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from);

Completed in 532 milliseconds

1234567