Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 933) sorted by relevance

12345678910>>...38

/frameworks/support/v4/
Dbuild.gradle52 from sourceSets.eclair.output
53 from sourceSets.eclairmr1.output
54 from sourceSets.froyo.output
55 from sourceSets.gingerbread.output
56 from sourceSets.honeycomb.output
57 from sourceSets.honeycombmr2.output
58 from sourceSets.ics.output
59 from sourceSets.icsmr1.output
60 from sourceSets.jellybean.output
61 from sourceSets.jellybeanmr1.output
[all …]
/frameworks/av/media/libstagefright/foundation/
DAString.cpp51 AString::AString(const AString &from) in AString() argument
55 setTo(from, 0, from.size()); in AString()
58 AString::AString(const AString &from, size_t offset, size_t n) in AString() argument
62 setTo(from, offset, n); in AString()
69 AString &AString::operator=(const AString &from) { in operator =() argument
70 if (&from != this) { in operator =()
71 setTo(from, 0, from.size()); in operator =()
98 void AString::setTo(const AString &from, size_t offset, size_t n) { in setTo() argument
99 CHECK(&from != this); in setTo()
102 setTo(from.mData + offset, n); in setTo()
[all …]
/frameworks/base/core/java/android/widget/
DSimpleCursorAdapter.java77 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { in SimpleCursorAdapter() argument
80 mOriginalFrom = from; in SimpleCursorAdapter()
81 findColumns(c, from); in SimpleCursorAdapter()
102 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, in SimpleCursorAdapter() argument
106 mOriginalFrom = from; in SimpleCursorAdapter()
107 findColumns(c, from); in SimpleCursorAdapter()
138 final int[] from = mFrom; in bindView() local
146 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
150 String text = cursor.getString(from[i]); in bindView()
325 private void findColumns(Cursor c, String[] from) { in findColumns() argument
[all …]
/frameworks/support/v4/java/android/support/v4/widget/
DSimpleCursorAdapter.java62 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { in SimpleCursorAdapter() argument
65 mOriginalFrom = from; in SimpleCursorAdapter()
66 findColumns(from); in SimpleCursorAdapter()
87 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, in SimpleCursorAdapter() argument
91 mOriginalFrom = from; in SimpleCursorAdapter()
92 findColumns(from); in SimpleCursorAdapter()
123 final int[] from = mFrom; in bindView() local
131 bound = binder.setViewValue(v, cursor, from[i]); in bindView()
135 String text = cursor.getString(from[i]); in bindView()
309 private void findColumns(String[] from) { in findColumns() argument
[all …]
/frameworks/av/include/media/stagefright/foundation/
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/base/packages/services/Proxy/src/com/android/proxyhandler/
DSocketConnect.java13 private InputStream from; field in SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException { in SocketConnect() argument
17 this.from = from.getInputStream(); in SocketConnect()
28 int r = from.read(buffer); in run()
34 from.close(); in run()
/frameworks/base/core/java/android/app/
DActionBar.java1010 @ViewDebug.IntToString(from = -1, to = "NONE"),
1011 @ViewDebug.IntToString(from = Gravity.NO_GRAVITY, to = "NONE"),
1012 @ViewDebug.IntToString(from = Gravity.TOP, to = "TOP"),
1013 @ViewDebug.IntToString(from = Gravity.BOTTOM, to = "BOTTOM"),
1014 @ViewDebug.IntToString(from = Gravity.LEFT, to = "LEFT"),
1015 @ViewDebug.IntToString(from = Gravity.RIGHT, to = "RIGHT"),
1016 @ViewDebug.IntToString(from = Gravity.START, to = "START"),
1017 @ViewDebug.IntToString(from = Gravity.END, to = "END"),
1018 @ViewDebug.IntToString(from = Gravity.CENTER_VERTICAL, to = "CENTER_VERTICAL"),
1019 @ViewDebug.IntToString(from = Gravity.FILL_VERTICAL, to = "FILL_VERTICAL"),
[all …]
/frameworks/base/core/java/android/view/
DWindowManager.java188 @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 = TYPE_APPLICATION_MEDIA, to = "TYPE_APPLICATION_MEDIA"),
193 … @ViewDebug.IntToString(from = TYPE_APPLICATION_SUB_PANEL, to = "TYPE_APPLICATION_SUB_PANEL"),
194 …@ViewDebug.IntToString(from = TYPE_APPLICATION_ATTACHED_DIALOG, to = "TYPE_APPLICATION_ATTACHED_DI…
195 …@ViewDebug.IntToString(from = TYPE_APPLICATION_MEDIA_OVERLAY, to = "TYPE_APPLICATION_MEDIA_OVERLAY…
196 @ViewDebug.IntToString(from = TYPE_STATUS_BAR, to = "TYPE_STATUS_BAR"),
197 @ViewDebug.IntToString(from = TYPE_SEARCH_BAR, to = "TYPE_SEARCH_BAR"),
[all …]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dmp3_mem_funcs.h67 #define pv_memcpy(to, from, n) memcpy(to, from, n) argument
68 #define pv_memmove(to, from, n) memmove(to, from, n) argument
/frameworks/av/media/libstagefright/codecs/amrwb/src/
Dpvamrwbdecoder_mem_funcs.h61 #define pv_memcpy(to, from, n) memcpy(to, from, n) argument
62 #define pv_memmove(to, from, n) memmove(to, from, n) argument
/frameworks/support/v13/
Dbuild.gradle28 from sourceSets.ics.output
29 from sourceSets.icsmr1.output
30 from sourceSets.k.output
79 from sourceSets.main.allSource
80 from sourceSets.ics.allSource
81 from sourceSets.icsmr1.allSource
82 from sourceSets.k.allSource
87 from javadoc.destinationDir
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhoneBase.java79 void migrateFrom(SipPhoneBase from) { in migrateFrom() argument
80 migrate(mRingbackRegistrants, from.mRingbackRegistrants); in migrateFrom()
81 migrate(mPreciseCallStateRegistrants, from.mPreciseCallStateRegistrants); in migrateFrom()
82 migrate(mNewRingingConnectionRegistrants, from.mNewRingingConnectionRegistrants); in migrateFrom()
83 migrate(mIncomingRingRegistrants, from.mIncomingRingRegistrants); in migrateFrom()
84 migrate(mDisconnectRegistrants, from.mDisconnectRegistrants); in migrateFrom()
85 migrate(mServiceStateRegistrants, from.mServiceStateRegistrants); in migrateFrom()
86 migrate(mMmiCompleteRegistrants, from.mMmiCompleteRegistrants); in migrateFrom()
87 migrate(mMmiRegistrants, from.mMmiRegistrants); in migrateFrom()
88 migrate(mUnknownConnectionRegistrants, from.mUnknownConnectionRegistrants); in migrateFrom()
[all …]
/frameworks/native/opengl/libs/GLES_trace/src/
Dgltrace.pb.cpp1282 GLMessage_DataType::GLMessage_DataType(const GLMessage_DataType& from) in GLMessage_DataType() argument
1285 MergeFrom(from); in GLMessage_DataType()
1628 const ::google::protobuf::MessageLite& from) { in CheckTypeAndMergeFrom()
1629 MergeFrom(*::google::protobuf::down_cast<const GLMessage_DataType*>(&from)); in CheckTypeAndMergeFrom()
1632 void GLMessage_DataType::MergeFrom(const GLMessage_DataType& from) { in MergeFrom() argument
1633 GOOGLE_CHECK_NE(&from, this); in MergeFrom()
1634 intvalue_.MergeFrom(from.intvalue_); in MergeFrom()
1635 floatvalue_.MergeFrom(from.floatvalue_); in MergeFrom()
1636 charvalue_.MergeFrom(from.charvalue_); in MergeFrom()
1637 rawbytes_.MergeFrom(from.rawbytes_); in MergeFrom()
[all …]
/frameworks/av/media/libstagefright/
DMetaData.cpp34 MetaData::MetaData(const MetaData &from) in MetaData() argument
36 mItems(from.mItems) { in MetaData()
233 MetaData::typed_data::typed_data(const typed_data &from) in typed_data() argument
234 : mType(from.mType), in typed_data()
236 allocateStorage(from.mSize); in typed_data()
237 memcpy(storage(), from.storage(), mSize); in typed_data()
241 const MetaData::typed_data &from) { in operator =() argument
242 if (this != &from) { in operator =()
244 mType = from.mType; in operator =()
245 allocateStorage(from.mSize); in operator =()
[all …]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
DScriptGroup.java60 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { in ConnectLine() argument
61 mFrom = from; in ConnectLine()
66 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { in ConnectLine() argument
67 mFrom = from; in ConnectLine()
327 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) { in addConnection() argument
331 mT.addConnection(t, from, to); in addConnection()
335 Node nf = findNode(from); in addConnection()
345 ConnectLine cl = new ConnectLine(t, from, to); in addConnection()
346 mLines.add(new ConnectLine(t, from, to)); in addConnection()
367 public Builder addConnection(Type t, Script.KernelID from, Script.KernelID to) { in addConnection() argument
[all …]
/frameworks/compile/mclinker/lib/Object/
DSectionMap.cpp27 : from(pFrom), to(pTo) { in NamePair()
95 if ('*' == pNamePair.from[0]) in matched()
98 if (pNamePair.from.size() > pInput.size()) in matched()
105 pNamePair.from.c_str(), in matched()
106 pNamePair.from.size())) { in matched()
/frameworks/rs/scriptc/
Drs_allocation.rsh28 * a valid allocation. The results are undefined if the pointer is not from a
31 * This function is deprecated and will be removed in the SDK from a future
80 * Copy part of an allocation from another allocation.
100 * Copy a rectangular region into the allocation from another
134 * Extract a single element from an allocation.
228 * Receive a new set of contents from the queue.
237 * @param a allocation to get data from
245 * @param a 1D allocation to sample from
247 * @param location to sample from
253 * @param a 1D allocation to sample from
[all …]
Drs_element.rsh35 * @param e element to get data from
45 * @param e element to get data from
56 * @param e element to get data from
68 * @param e element to get data from
83 * @param e element to get data from
95 * @param e element to get data from
106 * @param e element to get data from
115 * @param e element to get data from
124 * @param e element to get data from
133 * @param e element to get data from
Drs_time.rsh36 * tm_sec - Seconds after the minute. This ranges from 0 to 59, but possibly
38 * tm_min - Minutes after the hour. This ranges from 0 to 59.
39 * tm_hour - Hours past midnight. This ranges from 0 to 23.
40 * tm_mday - Day of the month. This ranges from 1 to 31.
41 * tm_mon - Months since January. This ranges from 0 to 11.
43 * tm_wday - Days since Sunday. This ranges from 0 to 6.
44 * tm_yday - Days since January 1. This ranges from 0 to 365.
/frameworks/base/docs/html/guide/topics/resources/
Davailable-resources.jd24 Tween animations are saved in {@code res/anim/} and accessed from the {@code R.anim} class.<br/>
25 Frame animations are saved in {@code res/drawable/} and accessed from the {@code R.drawable} class.…
28 Saved in {@code res/color/} and accessed from the {@code R.color} class.</dd>
31 Saved in {@code res/drawable/} and accessed from the {@code R.drawable} class.</dd>
34 Saved in {@code res/layout/} and accessed from the {@code R.layout} class.</dd>
37 Saved in {@code res/menu/} and accessed from the {@code R.menu} class.</dd>
40 Saved in {@code res/values/} and accessed from the {@code R.string}, {@code R.array},
44 Saved in {@code res/values/} and accessed from the {@code R.style} class.</dd>
47 Saved in {@code res/values/} but each accessed from unique {@code R} sub-classes (such as {@code
/frameworks/base/graphics/java/android/renderscript/
DScriptGroup.java59 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) { in ConnectLine() argument
60 mFrom = from; in ConnectLine()
65 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) { in ConnectLine() argument
66 mFrom = from; in ConnectLine()
316 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) { in addConnection() argument
319 Node nf = findNode(from); in addConnection()
329 ConnectLine cl = new ConnectLine(t, from, to); in addConnection()
330 mLines.add(new ConnectLine(t, from, to)); in addConnection()
351 public Builder addConnection(Type t, Script.KernelID from, Script.KernelID to) { in addConnection() argument
354 Node nf = findNode(from); in addConnection()
[all …]
/frameworks/base/docs/html/design/patterns/
Dnavigation.jd46 <li>Dismisses contextual action bars, and removes the highlight from the selected items</li>
53 from multiple entry points&mdash;such as a settings screen that can be reached from any other screen
68 <p>When your app supports navigation from a list of items to a detail view of one of those items, i…
69 often desirable to support direction navigation from that item to another one which precedes or
70 follows it in the list. For example, in Gmail, it's easy to swipe left or right from a conversation
77 together by the referring list&mdash;for example, when browsing in the Play Store between apps from
85 view. Extending the Play Store example from above, imagine the user has navigated from the last
100 <li><em>If the destination screen is typically reached from one particular screen within your
111 screen. Up or Back from the compose screen would take the user to the Inbox, and from there the
123 <p>Unlike standard (direct) notifications, pressing Back from an indirect notification's
[all …]
/frameworks/base/libs/hwui/utils/
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 { in do_copy() argument
216 copy_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num); in do_copy()
225 void SortedList<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument
226 move_forward_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num); in do_move_forward()
230 void SortedList<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument
231 move_backward_type(reinterpret_cast<TYPE*> (dest), reinterpret_cast<const TYPE*> (from), num); in do_move_backward()
/frameworks/base/core/java/android/content/
DUndoManager.java686 int findPrevState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { in findPrevState() argument
689 if (from == -1) { in findPrevState()
690 from = N-1; in findPrevState()
692 if (from >= N) { in findPrevState()
696 return from; in findPrevState()
699 while (from >= 0) { in findPrevState()
700 UndoState state = states.get(from); in findPrevState()
702 return from; in findPrevState()
704 from--; in findPrevState()
710 int findNextState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { in findNextState() argument
[all …]
/frameworks/base/docs/html/distribute/
Dopen.jd7 From publishing in an app marketplace to serving your apps from a web site or
51 installation from <a href="#unknown-sources">unknown sources</a> and have opened your
55 only a few trusted users, but it provides few protections from piracy and unauthorized
67 <p>When users browse to the download link from their Android-powered devices,
70 users have configured their Settings to allow the installation of apps from
83 <h2 id="unknown-sources">User Opt-In for Apps from Unknown Sources</h2>
88 apps from unknown sources." style="width:240px;" />
91 setting before they can install apps not downloaded from Google Play.
95 <p>Android protects users from inadvertent download and install of apps from
99 the installation of applications from other sources, users need to enable the
[all …]

12345678910>>...38