Home
last modified time | relevance | path

Searched refs:framework (Results 1 – 25 of 774) sorted by relevance

12345678910>>...31

/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
DAbstractService.java17 package com.android.framework.multidexlegacytestservices;
39 new com.android.framework.multidexlegacytestservices.manymethods.Big043().get43();
41 new com.android.framework.multidexlegacytestservices.manymethods.Big044().get44();
44 …instanceFieldNotInited = new com.android.framework.multidexlegacytestservices.manymethods.Big042()… in AbstractService()
124 … int value = new com.android.framework.multidexlegacytestservices.manymethods.Big001().get1() + in getValue()
125 new com.android.framework.multidexlegacytestservices.manymethods.Big002().get2() + in getValue()
126 new com.android.framework.multidexlegacytestservices.manymethods.Big003().get3() + in getValue()
127 new com.android.framework.multidexlegacytestservices.manymethods.Big004().get4() + in getValue()
128 new com.android.framework.multidexlegacytestservices.manymethods.Big005().get5() + in getValue()
129 new com.android.framework.multidexlegacytestservices.manymethods.Big006().get6() + in getValue()
[all …]
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/
DAndroid.mk14 PFW_CORE := external/parameter-framework
28 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework
49 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Policy
62 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Policy
70 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/parameter-framework/Structure/Policy
76 LOCAL_MODULE := parameter-framework.policy
79 LOCAL_MODULE_RELATIVE_PATH := parameter-framework/Settings/Policy
86 PFW_TOPLEVEL_FILE := $(TARGET_OUT_ETC)/parameter-framework/ParameterFrameworkConfigurationPolicy.xml
112 LOCAL_MODULE := parameter-framework.policy.no-output
115 LOCAL_MODULE_RELATIVE_PATH := parameter-framework/Settings/Policy
[all …]
/frameworks/base/core/tests/coretests/src/android/animation/
DEventsTest.java76 } catch (junit.framework.AssertionFailedError e) { in run()
104 } catch (junit.framework.AssertionFailedError e) { in run()
125 } catch (junit.framework.AssertionFailedError e) { in run()
146 } catch (junit.framework.AssertionFailedError e) { in run()
281 } catch (junit.framework.AssertionFailedError e) { in testStartCancel()
304 } catch (junit.framework.AssertionFailedError e) { in testStartEnd()
327 } catch (junit.framework.AssertionFailedError e) { in testStartDelayedCancel()
350 } catch (junit.framework.AssertionFailedError e) { in testStartDelayedEnd()
373 } catch (junit.framework.AssertionFailedError e) { in testPlayingCancel()
396 } catch (junit.framework.AssertionFailedError e) { in testPlayingEnd()
[all …]
DViewPropertyAnimatorTest.java75 } catch (junit.framework.AssertionFailedError e) { in run()
214 } catch (junit.framework.AssertionFailedError e) { in testStartCancel()
237 } catch (junit.framework.AssertionFailedError e) { in testStartDelayedCancel()
260 } catch (junit.framework.AssertionFailedError e) { in testPlayingCancel()
284 } catch (junit.framework.AssertionFailedError e) { in testPlayingDelayedCancel()
311 } catch (junit.framework.AssertionFailedError e) { in testPlayingDelayedCancelMidDelay()
335 } catch (junit.framework.AssertionFailedError e) { in testStartDoubleCancel()
359 } catch (junit.framework.AssertionFailedError e) { in testStartDelayedDoubleCancel()
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
DUnitTestSuiteBuilderTest.java21 import junit.framework.Assert;
22 import junit.framework.AssertionFailedError;
23 import junit.framework.Test;
24 import junit.framework.TestCase;
25 import junit.framework.TestListener;
26 import junit.framework.TestResult;
27 import junit.framework.TestSuite;
DInstrumentationTestSuiteBuilderTest.java23 import junit.framework.AssertionFailedError;
24 import junit.framework.Test;
25 import junit.framework.TestCase;
26 import junit.framework.TestListener;
27 import junit.framework.TestResult;
28 import junit.framework.TestSuite;
DTestSuiteBuilderTest.java29 import junit.framework.AssertionFailedError;
30 import junit.framework.Test;
31 import junit.framework.TestCase;
32 import junit.framework.TestListener;
33 import junit.framework.TestResult;
34 import junit.framework.TestSuite;
DListTestCaseNames.java19 import junit.framework.Test;
20 import junit.framework.TestCase;
21 import junit.framework.TestSuite;
/frameworks/base/docs/html/training/transitions/
Doverview.jd21 transitions framework. This framework applies one or more animations to all the views in the
24 <p>The framework has the following features:</p>
63 <p>This animation is an example of using the transitions framework. The framework
66 tree of views. The framework animates each view by changing one or more of its property values
70 <p>The transitions framework works in parallel with view hierarchies and animations. The
71 purpose of the framework is to store the state of view hierarchies, change between these
75 <p>The diagram in Figure 2 illustrates the relationship between view hierarchies, framework
81 <p class="img-caption"><strong>Figure 2.</strong> Relationships in the transitions framework.</p>
83 <p>The transitions framework provides abstractions for scenes, transitions, and transition
84 managers. These are described in detail in the following sections. To use the framework, you
[all …]
Dcustom-transitions.jd62 period of time, so the framework needs to have both the starting and ending value of
68 are specific to a transition, the transitions framework does not provide every property value
69 to a transition. Instead, the framework invokes callback methods that allow a transition to
70 capture only the property values it needs and store them in the framework.</p>
75 <p>To pass the starting view values to the framework, implement the
77 method. The framework calls this method for every view in the starting scene. The method
81 framework by storing them in the map.</p>
124 <p>The framework calls the {@link android.transition.Transition#captureEndValues} method
143 starting and ending scenes. The framework maintains separate maps for the starting and ending
153 framework calls this method, it passes in the scene root view and the {@link
[all …]
Dindex.jd41 <p>Android includes the <em>transitions framework</em>, which enables you to easily
42 animate changes between two view hierarchies. The framework animates the views at runtime by
43 changing some of their property values over time. The framework includes built-in animations
46 <p>This class teaches you to use the built-in animations in the transitions framework to
63 Learn the main features and components of the transitions framework.
78 Learn how to create other animation effects not included in the transitions framework.
/frameworks/base/
DCleanSpec.mk165 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/framework-res_intermediates)
169 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
170 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
171 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
172 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
173 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
174 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
175 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
176 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
177 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework-base_intermedia…
[all …]
/frameworks/base/docs/html/topic/libraries/support-library/
Dindex.jd2 … offers backward-compatible versions of a number of features that are not built into the framework.
34 into the framework. These libraries offer backward-compatible versions of
36 framework, and provide a range of utilities that apps can draw on.
43 appropriate to include in the Android framework itself. For example, an app
61 <a href="#backward">Backward-compatible</a> versions of framework
95 (API level 21) that relies on framework classes cannot display
96 material-design elements, as that version of the Android framework doesn't
108 possible on the functionality that the framework provides. In these cases,
111 framework provides the necessary functionality, the support library calls on
112 the framework to perform the task. If the app is running on an earlier
[all …]
/frameworks/base/core/java/android/test/
DInstrumentationTestSuite.java21 import junit.framework.TestSuite;
22 import junit.framework.Test;
23 import junit.framework.TestResult;
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
DTestResultInstrumentation.java22 import junit.framework.AssertionFailedError;
23 import junit.framework.Test;
24 import junit.framework.TestListener;
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
DUiAutomatorInstrumentationTestRunner.java24 import junit.framework.AssertionFailedError;
25 import junit.framework.Test;
26 import junit.framework.TestListener;
/frameworks/base/test-runner/src/android/test/
DInstrumentationCoreTestRunner.java24 import junit.framework.AssertionFailedError;
25 import junit.framework.Test;
26 import junit.framework.TestCase;
27 import junit.framework.TestListener;
DNoExecTestResult.java18 import junit.framework.TestCase;
19 import junit.framework.TestResult;
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-stub-provider.jd38 The sync adapter framework is designed to work with device data managed by the flexible and
39 highly secure content provider framework. For this reason, the sync adapter framework expects
40 that an app that uses the framework has already defined a content provider for its local data.
41 If the sync adapter framework tries to run your sync adapter, and your app doesn't have a
54 adapter to handle data transfer. To satisfy the sync adapter framework requirement for a
65 plug your sync adapter into the framework.
135 The sync adapter framework verifies that your app has a content provider by checking that your
161 the provider. This value doesn't affect the interaction between the sync adapter framework
170 setIsSyncable()} in your code. The flag allows the sync adapter framework to make data
200 Now that you have created the dependencies required by the sync adapter framework, you can
Dcreating-authenticator.jd43 The sync adapter framework assumes that your sync adapter transfers data between device storage
45 framework expects you to provide a component called an authenticator as part of your sync
46 adapter. This component plugs into the Android accounts and authentication framework and
54 allows the sync adapter framework to call the authenticator's methods.
58 satisfy the requirements of the sync adapter framework. If you need to provide a real
139 In order for the sync adapter framework to access your authenticator, you must create a bound
140 Service for it. This service provides an Android binder object that allows the framework
141 to call your authenticator and pass data between the authenticator and the framework.
144 Since the framework starts this {@link android.app.Service} the first time it needs to
180 provide these framework with metadata that describes the component. This metadata declares the
[all …]
Dindex.jd49 consider using Android's sync adapter framework. This framework helps manage and automate data
51 this framework, you can take advantage of several features that aren't available to data
95 framework, and how to run the sync adapter to run in various ways.
109 Learn how to add an account-handling component that the sync adapter framework expects to be
117 Learn how to add a content provider component that the sync adapter framework expects to be
127 adapter framework can run automatically.
133 Learn how to trigger and schedule data transfers using the sync adapter framework.
/frameworks/rs/api/
Drs_core.spec28 as the Android framework APIs for RenderScript. For documentation on the Android framework
32framework APIs interact, see the <a target="_parent" href="http://developer.android.com/guide/topi…
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/src/com/android/framework/externallocallpermstestapp/
DExternalLocAllPermsTest.java16 package com.android.framework.externallocallpermstestapp;
21 import junit.framework.TestCase;
/frameworks/base/test-runner/tests/src/android/test/
DTestCaseUtilTest.java19 import junit.framework.Test;
20 import junit.framework.TestCase;
21 import junit.framework.TestSuite;
/frameworks/base/docs/html/guide/topics/media/
Dmediarouteprovider.jd46 <p>The Android media router framework allows manufacturers to enable playback on their devices
57 <p>The Android media router framework enables media app developers and media playback device
60 framework and play content to devices that participate in the media router framework. Media
61 playback device manufacturers can participate in the framework by publishing a {@link
64 device through the media router framework.</p>
66 <img src="{@docRoot}images/mediarouter/media-route-provider-framework.png" alt="" id="figure1"/>
79 transport mechanisms to make the device compatible with the media router framework.</li>
101 <p>There are two main types of playback supported by the media router framework. A media route
144 <p>The media router framework must be able to discover and connect to your media route provider
145 to allow other applications to use your route. In order to do this, the media router framework
[all …]

12345678910>>...31