Searched refs:from (Results 1 - 25 of 762) 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:
35 apply from: 'rules.gradle'
H A Dbuild.gradle8 * this will build the dependencies like support libraries from source, whereas standalone.gradle
9 * will get it from maven central.
22 // For builds in the Android tree we want to build the dependencies from source for reproducible
40 apply from: 'rules.gradle'
H A Dstandalone.gradle17 apply from: 'standalone-rules.gradle'
H A Dself.gradle4 apply from: 'standalone-rules.gradle'
5 apply from: '../tools/gradle/dist-library-instrumentation-tests.gradle'
6 apply from: '../tools/gradle/dist-unit-tests.gradle'
72 from "${project.ext.distDir}/setup-wizard-lib-gingerbreadCompat-debug-androidTest.apk"
/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/support/app-toolkit/
H A Dbuild.gradle19 apply from: 'buildSrc/repos.gradle'
20 apply from: 'init.gradle'
/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...]
/frameworks/av/media/libstagefright/foundation/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...]
/frameworks/av/media/libstagefright/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...]
/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/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/robolectric/
H A DPatchedGradleManifestFactory.java58 if (FileFsFile.from(buildOutputDir, "data-binding-layout-out", flavor, type).exists()) {
61 res = FileFsFile.from(buildOutputDir, "data-binding-layout-out", flavor, type);
62 } else if (FileFsFile.from(buildOutputDir, "res", "merged", flavor, type).exists()) {
64 res = FileFsFile.from(buildOutputDir, "res", "merged", flavor, type);
65 } else if (FileFsFile.from(buildOutputDir, "res", flavor, type).exists()) {
66 res = FileFsFile.from(buildOutputDir, "res", flavor, type);
68 res = FileFsFile.from(buildOutputDir, "bundles", flavor, type, "res");
71 if (FileFsFile.from(buildOutputDir, "assets", flavor, type).exists()) {
72 assets = FileFsFile.from(buildOutputDir, "assets", flavor, type);
74 assets = FileFsFile.from(buildOutputDi
[all...]
/frameworks/support/
H A Dbuild.gradle19 apply from: 'buildSrc/repos.gradle'
21 apply from: 'buildSrc/init.gradle'
/frameworks/base/tests/net/java/com/android/server/connectivity/
H A DLingerMonitorTest.java88 NetworkAgentInfo from = wifiNai(100);
91 mMonitor.noteLingerDefaultNetwork(from, to);
92 verifyNotification(from, to);
99 NetworkAgentInfo from = wifiNai(100);
102 mMonitor.noteLingerDefaultNetwork(from, to);
103 verifyToast(from, to);
110 NetworkAgentInfo from = wifiNai(100);
113 mMonitor.noteLingerDefaultNetwork(from, to);
114 verifyNotification(from, to);
124 NetworkAgentInfo from
303 transition(String from, String to) argument
325 verifyToast(NetworkAgentInfo from, NetworkAgentInfo to) argument
330 verifyNotification(NetworkAgentInfo from, NetworkAgentInfo to) argument
[all...]
/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/media-compat/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/core-ui/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java39 * This field should be made private, so it is hidden from the SDK.
46 * This field should be made private, so it is hidden from the SDK.
67 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
70 mOriginalFrom = from;
71 findColumns(c, from);
83 * @param from A list of column names representing the data to bind to the UI. Can be null
85 * @param to The views that should display column in the "from" parameter.
87 * are given the values of the first N columns in the from
92 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, argument
96 mOriginalFrom = from;
314 findColumns(Cursor c, String[] from) argument
349 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]

Completed in 9652 milliseconds

1234567891011>>