Searched refs:to (Results 26 - 50 of 420) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/apks/install_bad_dex/
H A DAndroid.mk10 # Override target specific variable PRIVATE_DEX_FILE to inject bad classes.dex file.
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
29 # Need to run as system app to get access to Settings. This test won't work for user builds.
/frameworks/rs/api/
H A Drs_core.spec10 # Unless required by applicable law or agreed to in writing, software
21 RenderScript code is compiled on devices at runtime to allow platform-independence as well.
24 to write RenderScript code in C99. The RenderScript compute header files are automatically
27 To use RenderScript, you need to utilize the RenderScript runtime APIs documented here as well
31 For more information on how to develop with RenderScript and how the runtime and Android
H A Drs_allocation_data.spec10 # Unless required by applicable law or agreed to in writing, software
20 The functions below can be used to get and set the cells that comprise
30 They don't get or set elements, which are akin to data types; they get
37 arg: rs_allocation dstAlloc, "Allocation to copy cells into."
38 arg: uint32_t dstOff, "Offset in the destination of the first cell to be copied into."
40 arg: uint32_t count, "Number of cells to be copied."
42 arg: uint32_t srcOff, "Offset in the source of the first cell to be copied."
46 Copies the specified number of cells from one allocation to another.
48 The two allocations must be different. Using this function to copy whithin
62 arg: rs_allocation dstAlloc, "Allocation to cop
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java10 * Unless required by applicable law or agreed to in writing, software
28 * Used to write apps that run on platforms prior to Android 3.0. When running
30 * to switch to the framework's implementation. See the framework SDK
35 * A list of columns containing the data to bind to the UI.
41 * A list of View ids representing the views to which the data must be bound.
62 public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
64 mTo = to;
87 SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) argument
343 changeCursorAndColumns(Cursor c, String[] from, int[] to) argument
[all...]
/frameworks/av/media/libnbaio/
H A DAndroid.mk18 # libsndfile license is incompatible; uncomment to use for local debug only
20 #LOCAL_C_INCLUDES += path/to/libsndfile/src
/frameworks/base/tools/aapt/
H A DSourcePos.h27 static void printErrors(FILE* to);
H A DSourcePos.cpp29 void print(FILE* to) const;
66 ErrorPos::print(FILE* to) const
83 fprintf(to, "%s:%d: %s%s\n", this->file.string(), this->line, type, this->error.string());
85 fprintf(to, "%s: %s%s\n", this->file.string(), type, this->error.string());
88 fprintf(to, "%s%s\n", type, this->error.string());
156 SourcePos::printErrors(FILE* to) argument
160 it->print(to);
/frameworks/base/services/
H A DAndroid.mk15 # Uncomment to enable output of certain warnings (deprecated, unchecked)
19 # These should map to directory names relative to this
35 # The convention is to name each service module 'services.$(module_name)'
48 # include all the jni subdirs to collect their sources
63 # If we ran an mm[m] command, we still want to build the individual
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s10 ;// Unless required by applicable law or agreed to in writing, software
38 ; * 14496-2. Furthermore, indexes 6 to 9 indicate the
39 ; * alpha blocks spatially corresponding to luminance
40 ; * blocks 0 to 3 in the same macroblock.
41 ; * [in] pCoefBufRow pointer to the coefficient row buffer
42 ; * [in] pQpBuf pointer to the quantization parameter buffer
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s10 ;// Unless required by applicable law or agreed to in writing, software
38 ; * 14496-2. Furthermore, indexes 6 to 9 indicate the
39 ; * alpha blocks spatially corresponding to luminance
40 ; * blocks 0 to 3 in the same macroblock.
41 ; * [in] pCoefBufRow pointer to the coefficient row buffer
42 ; * [in] pQpBuf pointer to the quantization parameter buffer
/frameworks/base/core/java/android/app/
H A DActionBar.java10 * Unless required by applicable law or agreed to in writing, software
55 * Toolbar widget within the application layout. The application may signal to the Activity
58 * {@link android.R.styleable#Theme_windowActionBar windowActionBar} attribute to <code>false</code>
64 * object obtained from the Activity can be used to control either configuration transparently.</p>
73 * Apps wishing to express a stronger branding should use their brand colors heavily
82 * your activity, you can enable an action mode that offers actions specific to the selected
89 * <p>For information about how to use the action bar, including how to add action items, navigation
103 * will dispatch onOptionsItemSelected to the host Activity with
116 * e.g. this might be presented to th
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk6 # We have to include the subdir makefiles first
32 # intermediate dir to include all the test apks as raw resource
37 # Rules to copy all the test apks to the intermediate raw resource directory
42 $(call copy-file-to-new-target)
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs15 to learn the basics about Android app development."
43 app's activities. Although first introduced with API level 11, you can use the Support Library to
71 "How to build your app with alternative resources that provide an
102 "How Android activities live and die and how to create
158 "How to build a user interface for your app that is flexible enough
159 to present multiple UI components on large screens and a more constrained set of
190 "How to save data on the device, whether it's temporary files, downloaded
242 "How to build a user experience that leverages other apps available
243 on the device to perform advanced user tasks, such as capture a photo or view
256 Sending the User to Anothe
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java10 * Unless required by applicable law or agreed to in writing, software
34 * The interface that apps use to talk to the window manager.
36 * Use <code>Context.getSystemService(Context.WINDOW_SERVICE)</code> to get one of these.
38 * Each window manager instance is bound to a particular {@link Display}.
40 * {@link Context#createDisplayContext} to obtain a {@link Context} for that
42 * to get the WindowManager.
44 * The simplest way to show a window on another display is to create a
54 * Exception that is thrown when trying to ad
[all...]
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
28 # from installing library to /system/lib
31 # .. we want to avoid that... so we put it somewhere
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelMethod.java10 * Unless required by applicable law or agreed to in writing, software
54 * Returns the JNI description of the method which can be used to lookup it in SDK.
65 * @param args The arguments to the method
66 * @return Whether the arguments would be accepted as parameters to this method.
172 public static boolean isImplicitConversion(ModelClass from, ModelClass to) { argument
173 if (from != null && to != null && from.isPrimitive() && to.isPrimitive()) {
174 if (from.isBoolean() || to.isBoolean() || to.isChar()) {
178 int toConversionLevel = getImplicitConversionLevel(to);
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DListChangeRegistryTest.java10 * Unless required by applicable law or agreed to in writing, software
64 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
103 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
142 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
180 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
182 assertEquals(expectedTo, to);
220 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
/frameworks/base/core/java/android/text/
H A DSelection.java10 * Unless required by applicable law or agreed to in writing, software
64 * Set the selection anchor to <code>start</code> and the selection edge
65 * to <code>stop</code>.
84 * Move the cursor to offset <code>index</code>.
98 * Move the selection edge to offset <code>index</code>.
118 * Move the cursor to the buffer offset physically above the current
119 * offset, to the beginning if it is on the top line but not at the
163 * Move the cursor to the buffer offset physically below the current
164 * offset, to the end of the buffer if it is on the bottom line but
209 * Move the cursor to th
[all...]
/frameworks/base/core/java/android/annotation/
H A DFloatRange.java10 * Unless required by applicable law or agreed to in writing, software
32 * &#64;FloatRange(from=0.0,to=1.0)
48 double to() default Double.POSITIVE_INFINITY;
53 /** Whether the to value is included in the range */
H A DIntRange.java10 * Unless required by applicable law or agreed to in writing, software
32 * &#64;IntRange(from=0,to=255)
46 long to() default Long.MAX_VALUE;
/frameworks/support/annotations/src/android/support/annotation/
H A DFloatRange.java10 * Unless required by applicable law or agreed to in writing, software
32 * &#64;FloatRange(from=0.0,to=1.0)
46 double to() default Double.POSITIVE_INFINITY;
51 /** Whether the to value is included in the range */
H A DIntRange.java10 * Unless required by applicable law or agreed to in writing, software
32 * &#64;IntRange(from=0,to=255)
44 long to() default Long.MAX_VALUE;
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DValueAnimatorCompatImplEclairMr1.java10 * Unless required by applicable law or agreed to in writing, software
90 public void setIntValues(int from, int to) { argument
92 mIntValues[1] = to;
101 public void setFloatValues(float from, float to) { argument
103 mFloatValues[1] = to;
137 // Set our animated fraction to 1
164 // Check to see if we've passed the animation duration
/frameworks/base/libs/common_time/
H A DAndroid.mk20 # Uncomment to enable vesbose logging and debug service.

Completed in 1157 milliseconds

1234567891011>>