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

1234567891011>>

/frameworks/opt/setupwizard/library/
H A Dstandalone-rules.gradle18 // dependencies from maven. To add a dependency, you want to specify something like this:
34 apply from: 'rules.gradle'
H A Dbuild.gradle3 * building from the Android source tree. The difference between this and standalone.gradle is that
4 * this will build the dependencies like support libraries from source, whereas standalone.gradle
5 * will get it from maven central.
18 // For builds in the Android tree we want to build the dependencies from source for reproducible
35 apply from: 'rules.gradle'
H A Dstandalone.gradle17 apply from: 'standalone-rules.gradle'
H A Dself.gradle7 apply from: 'build.gradle'
8 apply from: '../tools/gradle/docs.gradle'
/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/core/java/com/android/internal/app/procstats/
H A DDurationsTable.java29 * Add all of the durations from the other table into this one.
33 public void addDurations(DurationsTable from) { argument
34 final int N = from.getKeyCount();
36 final int key = from.getKeyAt(i);
37 this.addDuration(SparseMappingTable.getIdFromKey(key), from.getValue(key));
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityResult.java28 public ActivityResult(ActivityRecord from, String resultWho, argument
31 mFrom = from;
/frameworks/data-binding/integration-tests/App With Spaces/
H A Dbuild.gradle18 apply from: "${project.projectDir}/../../propLoader.gradle"
/frameworks/data-binding/integration-tests/IndependentLibrary/
H A Dbuild.gradle18 apply from: "${project.projectDir}/../../propLoader.gradle"
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
H A Dbuild.gradle18 apply from: "${project.projectDir}/../../propLoader.gradle"
/frameworks/data-binding/samples/BindingDemo/
H A Dbuild.gradle20 apply from: "${project.projectDir}/../../propLoader.gradle"
/frameworks/av/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); } argument
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); } argument
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { argument
51 if (elem.first == from) {
60 bool ALookup<T, U>::rlookup(const U& from, T *to) const { argument
62 if (elem.second == from) {
[all...]
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/base/core/java/android/text/style/
H A DReplacementSpan.java43 @IntRange(from = 0) int start, @IntRange(from = 0) int end,
60 @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x,
/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/support/v4/java/android/support/v4/media/session/
H A DParcelableVolumeInfo.java42 public ParcelableVolumeInfo(Parcel from) { argument
43 volumeType = from.readInt();
44 controlType = from.readInt();
45 maxVolume = from.readInt();
46 currentVolume = from.readInt();
47 audioStream = from.readInt();
/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(c, 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(Cursor c, String[] from) argument
344 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/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/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DTarget.java125 private Target(Target from) { argument
126 System.arraycopy(from.mSaturationTargets, 0, mSaturationTargets, 0,
128 System.arraycopy(from.mLightnessTargets, 0, mLightnessTargets, 0,
130 System.arraycopy(from.mWeights, 0, mWeights, 0, mWeights.length);
136 @FloatRange(from = 0, to = 1)
144 @FloatRange(from = 0, to = 1)
152 @FloatRange(from = 0, to = 1)
160 @FloatRange(from = 0, to = 1)
168 @FloatRange(from = 0, to = 1)
176 @FloatRange(from
[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/support/annotations/src/android/support/annotation/
H A DRequiresApi.java43 @IntRange(from=1)
47 @IntRange(from=1)
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/
H A DPrintServicePlugin.java40 void onChanged(@IntRange(from = 0) int numDiscoveredPrinters);

Completed in 1574 milliseconds

1234567891011>>