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

12345678

/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/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DSocketConnect.java13 private InputStream from; field in class:SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException { argument
17 this.from = from.getInputStream();
28 int r = from.read(buffer);
34 from.close();
/frameworks/base/services/java/com/android/server/am/
H A DActivityResult.java29 public ActivityResult(ActivityRecord from, String resultWho, argument
32 mFrom = 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/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.
702 * <p>If you pass <code>null</code> to this method, the default drawable from the theme
722 * <p>If you pass <code>0</code> to this method, the default drawable from the theme
915 * Set the {@link TabListener} that will handle switching to and from this tab.
1010 @ViewDebug.IntToString(from = -1, to = "NONE"),
1011 @ViewDebug.IntToString(from
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp18 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:NameMap
73 pScript.sectionMap().append(map[i].from, map[i].to, exist);
/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/compile/mclinker/lib/Object/
H A DSectionMap.cpp27 : from(pFrom), to(pTo) {
95 if ('*' == pNamePair.from[0])
98 if (pNamePair.from.size() > pInput.size())
105 pNamePair.from.c_str(),
106 pNamePair.from.size())) {
/frameworks/base/core/tests/coretests/src/android/view/
H A DMerge.java39 LayoutInflater.from(this).inflate(R.layout.merge_tag, mLayout);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptGroupThunker.java84 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) { argument
87 bN.addConnection(tt.getNObj(), from.mN, to.mN);
94 public Builder addConnection(Type t, Script.KernelID from, Script.KernelID to) { argument
97 bN.addConnection(tt.getNObj(), from.mN, to.mN);
H A DScriptGroup.java40 * Currently, all kernels in a ScriptGroup must be from separate
41 * Script objects. Attempting to use multiple kernels from the same
60 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { argument
61 mFrom = from;
66 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { argument
67 mFrom = from;
100 * Allocation provided from outside of the ScriptGroup.
162 * must come from different Script objects. Additionally, all kernels
191 // do a DFS from original node, looking for original node
322 * @param from Th
327 addConnection(Type t, Script.KernelID from, Script.FieldID to) argument
367 addConnection(Type t, Script.KernelID from, Script.KernelID to) argument
[all...]
/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.java79 void migrateFrom(SipPhoneBase from) { argument
80 migrate(mRingbackRegistrants, from.mRingbackRegistrants);
81 migrate(mPreciseCallStateRegistrants, from.mPreciseCallStateRegistrants);
82 migrate(mNewRingingConnectionRegistrants, from.mNewRingingConnectionRegistrants);
83 migrate(mIncomingRingRegistrants, from.mIncomingRingRegistrants);
84 migrate(mDisconnectRegistrants, from.mDisconnectRegistrants);
85 migrate(mServiceStateRegistrants, from.mServiceStateRegistrants);
86 migrate(mMmiCompleteRegistrants, from.mMmiCompleteRegistrants);
87 migrate(mMmiRegistrants, from.mMmiRegistrants);
88 migrate(mUnknownConnectionRegistrants, from
92 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) {
233 MetaData::typed_data::typed_data(const typed_data &from) argument
234 : mType(from.mType),
236 allocateStorage(from.mSize);
237 memcpy(storage(), from.storage(), mSize);
241 const MetaData::typed_data &from) {
242 if (this != &from) {
244 mType = from.mType;
245 allocateStorage(from
240 operator =( const MetaData::typed_data &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/core/java/android/content/
H A DUndoManager.java686 int findPrevState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { argument
689 if (from == -1) {
690 from = N-1;
692 if (from >= N) {
696 return from;
699 while (from >= 0) {
700 UndoState state = states.get(from);
702 return from;
704 from--;
710 int findNextState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { argument
[all...]
/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/base/graphics/java/android/renderscript/
H A DScriptGroup.java40 * Currently, all kernels in a ScriptGroup must be from separate
41 * Script objects. Attempting to use multiple kernels from the same
59 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { argument
60 mFrom = from;
65 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { argument
66 mFrom = from;
99 * Allocation provided from outside of the ScriptGroup.
161 * must come from different Script objects. Additionally, all kernels
185 // do a DFS from original node, looking for original node
311 * @param from Th
316 addConnection(Type t, Script.KernelID from, Script.FieldID to) argument
351 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 1816 milliseconds

12345678