Home
last modified time | relevance | path

Searched refs:extend (Results 1 – 25 of 81) sorted by relevance

1234

/frameworks/base/core/java/android/widget/
DOverScroller.java246 public void extendDuration(int extend) { in extendDuration() argument
247 mScrollerX.extendDuration(extend); in extendDuration()
248 mScrollerY.extendDuration(extend); in extendDuration()
707 void extendDuration(int extend) { in extendDuration() argument
710 mDuration = elapsedTime + extend; in extendDuration()
DScroller.java537 public void extendDuration(int extend) { in extendDuration() argument
539 mDuration = passed + extend; in extendDuration()
/frameworks/compile/llvm-ndk-cc/tests/
Dtest.py84 SrcFiles.extend(glob.glob('*.cpp'))
122 Args.extend(glob.glob('*.bc'))
/frameworks/base/docs/html/tools/help/
Dmonkeyrunner_concepts.jd255 You can extend the monkeyrunner API with classes you write in the Java programming language
256 and build into one or more <code>.jar</code> files. You can use this feature to extend the
257 monkeyrunner API with your own classes or to extend the existing classes. You can also use this
266 In your plugin code, you can import and extend the the main monkeyrunner classes
/frameworks/base/docs/html/training/basics/fragments/
Dcreating.jd41 extend the {@link android.support.v4.app.Fragment} class using the Support Library so your app
55 <p>To create a fragment, extend the {@link android.support.v4.app.Fragment} class, then override
Dsupport-lib.jd82 extend the {@link android.support.v4.app.FragmentActivity} class instead of the traditional {@link
/frameworks/native/opengl/libs/GLES_trace/tools/
Dgenapi.py353 apis.extend(a)
/frameworks/base/docs/html/training/id-auth/
Dcustom_auth.jd58 android.accounts.AccountAuthenticatorActivity}, which you can extend to create your own custom
106 <p>The easiest way to create an authenticator class is to extend
/frameworks/base/docs/html/tools/testing/
Dtesting_otheride.jd244 ordinary classes, you should extend one of the Android test classes or JUnit classes,
255 {@link android.test android.test}. These extend the JUnit
260 For test classes that extend {@link junit.framework.TestCase TestCase}, you probably want to
541 Runs all test classes that extend {@link android.test.InstrumentationTestCase}.
548 Runs all test classes that do <em>not</em> extend either
Dtesting_android.jd233 extend the possible types of comparisons, and another class of assertions for testing the UI.
309 Android provides several test case classes that extend {@link junit.framework.TestCase} and
358 {@link android.app.Activity} test cases extend this base class with other functionality that
364 Because Android test case classes extend JUnit, you can use assertion methods to display the
/frameworks/base/docs/html/guide/topics/ui/
Dsettings.jd396 <p>To display your settings in an activity, extend the {@link
914 <p>When you extend the {@link android.preference.Preference} class, there are a few important
933 <p>If you directly extend the {@link android.preference.Preference} class, you need to implement
935 selects the item. However, most custom settings extend {@link android.preference.DialogPreference} …
936 show a dialog, which simplifies the procedure. When you extend {@link
974 android.preference.Preference} class you extend. If you extend {@link
1082 extend the {@link android.preference.Preference.BaseSavedState} class. You need to override just
Dui-events.jd30 …vent()</code> method is called on that object. However, in order to intercept this, you must extend
37 come a time when you do want to extend a View class, in order to build a custom component.
38 Perhaps you want to extend the {@link android.widget.Button}
Dcustom-components.jd126 The most generic view you can extend is, unsurprisingly, {@link
161 use 3D graphics, you must extend {@link android.view.SurfaceView SurfaceView}
443 similar to what you want, you can simply extend that component and just
/frameworks/base/docs/html/guide/topics/graphics/
Doverview.jd49 for a wide array of user interfaces. You can also extend these widgets to modify the way they
/frameworks/base/docs/html/training/gestures/
Dviewgroup.jd206 for a parent to extend the touchable area of a child view beyond the child's bounds.
212 "delegate view" (that is, the child whose touch area the parent will extend).
Dscroll.jd39 class. Any standard layout that might extend beyond the bounds of its container should be
Dscale.jd192 as a helper class that you can extend if you don’t care about all of the reported events.</p>
/frameworks/base/docs/html/training/custom-views/
Dcreate-view.jd58 <p>All of the view classes defined in the Android framework extend {@link android.view.View}. Your
60 extend {@link android.view.View View} directly, or you can save time by extending one of the
Doptimizing-view.jd87 to extend {@link android.view.ViewGroup ViewGroup} as part of a custom view. PieChart has child
/frameworks/base/docs/html/guide/components/
Daidl.jd96 {@link android.os.Binder} and implements methods from your AIDL interface. You must extend the
214 <p>To implement the interface generated from the {@code .aidl}, extend the generated {@link
253 for your service, extend {@link android.app.Service Service} and implement {@link
/frameworks/base/docs/html/tools/help/uiautomator/
Dindex.jd148 …nment for running multiple tests. All {@code uiautomator} test cases should extend this class.</td>
/frameworks/base/docs/html/training/cloudsync/
Dbackupapi.jd79 and extend {@code BackupAgentHelper}. Then override the {@link
/frameworks/base/docs/html/training/accessibility/
Daccessible-app.jd165 <p>As an example, if you want to extend an image view such that you can write
/frameworks/base/docs/html/training/graphics/opengl/
Denvironment.jd122 android.opengl.GLSurfaceView} instance, but don’t do that. You need to extend this class in
/frameworks/base/docs/html/training/articles/
Dperf-anr.jd94 class. Simply extend {@link android.os.AsyncTask} and implement the

1234