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

1234567891011>>

/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/core/java/com/android/server/am/
H A DActivityResult.java28 public ActivityResult(ActivityRecord from, String resultWho, argument
31 mFrom = from;
/frameworks/testing/espresso/idling-resource-interface/
H A Dbuild.gradle25 from sourceSets.main.allSource
/frameworks/testing/espresso/
H A Djavadoc.gradle23 from android.sourceSets.main.allSource
/frameworks/base/media/java/android/media/session/
H A DParcelableVolumeInfo.java45 public ParcelableVolumeInfo(Parcel from) { argument
46 volumeType = from.readInt();
47 controlType = from.readInt();
48 maxVolume = from.readInt();
49 currentVolume = from.readInt();
50 audioAttrs = AudioAttributes.CREATOR.createFromParcel(from);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscription.java15 * from this software without specific prior written permission.
37 * Class holding all the information of a subscription from UICC Card.
158 * @param from
161 public Subscription copyFrom(Subscription from) { argument
162 if (from != null) {
163 slotId = from.slotId;
164 m3gppIndex = from.m3gppIndex;
165 m3gpp2Index = from.m3gpp2Index;
166 subId = from.subId;
167 subStatus = from
[all...]
H A DSubscriptionData.java15 * from this software without specific prior written permission.
54 public SubscriptionData copyFrom(SubscriptionData from) { argument
55 if (from != null) {
56 subscription = new Subscription[from.getLength()];
57 for (int i = 0; i < from.getLength(); i++) {
59 subscription[i].copyFrom(from.subscription[i]);
/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/av/include/media/stagefright/foundation/
H A DAString.h33 AString(const String8 &from);
34 AString(const AString &from);
35 AString(const AString &from, size_t offset, size_t n);
38 AString &operator=(const AString &from);
41 void setTo(const AString &from, size_t offset, size_t n);
55 void append(const AString &from);
56 void append(const AString &from, size_t offset, size_t n);
67 void insert(const AString &from, size_t insertionPos);
68 void insert(const char *from, size_t size, size_t insertionPos);
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp53 AString::AString(const String8 &from) argument
57 setTo(from.string(), from.length());
60 AString::AString(const AString &from) argument
64 setTo(from, 0, from.size());
67 AString::AString(const AString &from, size_t offset, size_t n) argument
71 setTo(from, offset, n);
78 AString &AString::operator=(const AString &from) { argument
79 if (&from !
107 setTo(const AString &from, size_t offset, size_t n) argument
191 append(const AString &from) argument
195 append(const AString &from, size_t offset, size_t n) argument
274 insert(const AString &from, size_t insertionPos) argument
278 insert(const char *from, size_t size, size_t insertionPos) argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
H A DReflectIntermediateClass.java28 public static int get(int from, int to, int sleepMillis) throws ClassNotFoundException, argument
32 for (int i = from; i <= to; i++) {
/frameworks/testing/espresso/espresso-contrib/
H A Dbuild.gradle45 apply from: "$rootDir/javadoc.gradle
/frameworks/testing/espresso/espresso-contrib-tests/
H A Dbuild.gradle56 apply from: "$rootDir/javadoc.gradle"
/frameworks/testing/espresso/espresso-sample/
H A Dbuild.gradle49 apply from: "$rootDir/javadoc.gradle"
/frameworks/testing/espresso/espresso-lib-tests/
H A Dbuild.gradle60 apply from: "$rootDir/javadoc.gradle"
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerException.java35 public static PackageManagerException from(PackageParserException e) method in class:PackageManagerException
/frameworks/base/core/java/android/app/
H A DActionBar.java64 * object obtained from the Activity can be used to control either configuration transparently.</p>
68 * select items accessible directly from the action bar as "action items". You can also
84 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
681 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
694 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
707 * Remove all tabs from the action bar and deselect the current tab.
861 * <p>If you pass <code>null</code> to this method, the default drawable from the theme
881 * <p>If you pass <code>0</code> to this method, the default drawable from the theme
999 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
1014 * <p>The action bar's elevation is the distance it is placed from it
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DUtteranceProgressListener.java11 * The callbacks specified in this method can be called from multiple threads.
56 * @param errorCode one of the ERROR_* codes from {@link TextToSpeech}
68 static UtteranceProgressListener from( method in class:UtteranceProgressListener
/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);
/frameworks/base/core/java/android/view/
H A DWindowManager.java113 * {@link Gravity#END} it provides an offset from the given edge.
121 * an offset from the given edge.
148 * <li> <strong>Application windows</strong> (ranging from
154 * <li> <strong>Sub-windows</strong> (ranging from
159 * <li> <strong>System windows</strong> (ranging from
189 @ViewDebug.IntToString(from = TYPE_BASE_APPLICATION, to = "TYPE_BASE_APPLICATION"),
190 @ViewDebug.IntToString(from = TYPE_APPLICATION, to = "TYPE_APPLICATION"),
191 @ViewDebug.IntToString(from = TYPE_APPLICATION_STARTING, to = "TYPE_APPLICATION_STARTING"),
192 @ViewDebug.IntToString(from = TYPE_APPLICATION_PANEL, to = "TYPE_APPLICATION_PANEL"),
193 @ViewDebug.IntToString(from
[all...]
/frameworks/av/media/libstagefright/
H A DMetaData.cpp35 MetaData::MetaData(const MetaData &from) argument
37 mItems(from.mItems) {
244 MetaData::typed_data::typed_data(const typed_data &from) argument
245 : mType(from.mType),
247 allocateStorage(from.mSize);
248 memcpy(storage(), from.storage(), mSize);
252 const MetaData::typed_data &from) {
253 if (this != &from) {
255 mType = from.mType;
256 allocateStorage(from
251 operator =( const MetaData::typed_data &from) argument
[all...]

Completed in 746 milliseconds

1234567891011>>