Searched refs:that (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/base/opengl/java/android/opengl/
H A DEGLConfig.java34 EGLConfig that = (EGLConfig) o;
35 return getHandle() == that.getHandle();
H A DEGLContext.java34 EGLContext that = (EGLContext) o;
35 return getHandle() == that.getHandle();
H A DEGLDisplay.java34 EGLDisplay that = (EGLDisplay) o;
35 return getHandle() == that.getHandle();
H A DEGLSurface.java34 EGLSurface that = (EGLSurface) o;
35 return getHandle() == that.getHandle();
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLConfig.java34 EGLConfig that = (EGLConfig) o;
35 return getHandle() == that.getHandle();
H A DEGLContext.java34 EGLContext that = (EGLContext) o;
35 return getHandle() == that.getHandle();
H A DEGLDisplay.java34 EGLDisplay that = (EGLDisplay) o;
35 return getHandle() == that.getHandle();
H A DEGLSurface.java34 EGLSurface that = (EGLSurface) o;
35 return getHandle() == that.getHandle();
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java47 * Indicates that the widget can be displayed on the home screen. This is the default value.
52 * Indicates that the widget can be displayed on the keyguard.
103 * How often, in milliseconds, that this AppWidget wants to be updated.
134 * The activity to launch that will configure the AppWidget.
189 * A widget which is displayed on both needs to ensure that it follows the design guidelines
256 AppWidgetProviderInfo that = new AppWidgetProviderInfo();
257 that.provider = this.provider == null ? null : this.provider.clone();
258 that.minWidth = this.minWidth;
259 that.minHeight = this.minHeight;
260 that
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java33 EGLDisplayImpl that = (EGLDisplayImpl) o;
35 return mEGLDisplay == that.mEGLDisplay;
H A DEGLSurfaceImpl.java38 EGLSurfaceImpl that = (EGLSurfaceImpl) o;
40 return mEGLSurface == that.mEGLSurface;
H A DEGLContextImpl.java41 EGLContextImpl that = (EGLContextImpl) o;
43 return mEGLContext == that.mEGLContext;
/frameworks/base/tools/aapt/
H A DSourcePos.cpp19 ErrorPos(const ErrorPos& that);
36 ErrorPos::ErrorPos(const ErrorPos& that) argument
37 :file(that.file),
38 line(that.line),
39 error(that.error),
40 fatal(that.fatal)
105 SourcePos::SourcePos(const SourcePos& that) argument
106 : file(that.file), line(that.line)
H A DSourcePos.h16 SourcePos(const SourcePos& that);
/frameworks/base/core/java/android/text/format/
H A DTime.java41 * The Julian day of the epoch, that is, January 1, 1970 on the Gregorian
172 // Set the daylight-saving indicator to the unknown value -1 so that
225 * the other fields. Requires that it be normalized for MONTH_DAY and
379 * format that does not include the "time" field. For example, all of the
431 * (that is, strings that contain no time or time offset). For example,
474 * Returns the timezone string that is currently set for the device.
505 * ambiguous because it falls in the hour that is repeated when switching
510 * assuming that DST changes at 2am on Sunday, Nov 4, 2007.
530 * to read back the same milliseconds that yo
555 set(Time that) argument
618 before(Time that) argument
630 after(Time that) argument
[all...]
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java119 TestMethod that = (TestMethod) o;
122 ? !enclosingClassname.equals(that.enclosingClassname)
123 : that.enclosingClassname != null) {
127 ? !testMethodName.equals(that.testMethodName)
128 : that.testMethodName != null) {
/frameworks/support/v4/
H A DAndroid.mk17 # A helper sub-library that makes direct use of Eclair APIs.
26 # A helper sub-library that makes direct use of Eclair MR1 APIs.
36 # A helper sub-library that makes direct use of Froyo APIs.
46 # A helper sub-library that makes direct use of Gingerbread APIs.
56 # A helper sub-library that makes direct use of Honeycomb APIs.
66 # A helper sub-library that makes direct use of Honeycomb MR2 APIs.
76 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
86 # A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs.
96 # A helper sub-library that makes direct use of JellyBean APIs.
106 # A helper sub-library that make
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIconList.java74 * Parcelable.Creator that instantiates StatusBarIconList objects
139 public void copyFrom(StatusBarIconList that) { argument
140 if (that.mSlots == null) {
144 final int N = that.mSlots.length;
148 this.mSlots[i] = that.mSlots[i];
149 this.mIcons[i] = that.mIcons[i] != null ? that.mIcons[i].clone() : null;
H A DStatusBarIcon.java52 StatusBarIcon that = new StatusBarIcon(this.iconPackage, this.user, this.iconId,
54 that.visible = this.visible;
55 return that;
90 * Parcelable.Creator that instantiates StatusBarIcon objects
/frameworks/base/core/java/android/os/
H A DParcelUuid.java105 ParcelUuid that = (ParcelUuid) object;
107 return (this.mUuid.equals(that.mUuid));
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs5 Below are template spans for adding localized doc titles. Please ensure that
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java26 * classes and subpackages of that package. This is a version that does.
69 ClassPathPackageInfo that = (ClassPathPackageInfo) obj;
70 return (this.packageName).equals(that.packageName);
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java28 * This class describes all device configuration information that can
57 * resource qualifier. 0 if undefined. Note that the actual MNC may be 0; in order to check
82 /** Constant for {@link #screenLayout}: bits that encode the size. */
85 * value indicating that no size has been set. */
120 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
123 * value indicating that no size has been set. */
126 * value that corresponds to the
131 * value that corresponds to the
136 /** Constant for {@link #screenLayout}: bits that encode the layout direction. */
141 * value indicating that n
1171 compareTo(Configuration that) argument
1222 equals(Configuration that) argument
1228 equals(Object that) argument
[all...]
/frameworks/support/v7/mediarouter/
H A DAndroid.mk19 # SDK version than the resources. The resources library and the R class that it
33 # A helper sub-library that makes direct use of JellyBean APIs.
40 # A helper sub-library that makes direct use of JellyBean MR1 APIs.
48 # A helper sub-library that makes direct use of JellyBean MR2 APIs.
56 # Here is the final static library that apps can link against.
58 # Applications that use this library must specify LOCAL_RESOURCE_DIR
/frameworks/support/v7/appcompat/
H A DAndroid.mk17 # Here is the final static library that apps can link against.
19 # Applications that use this library must specify LOCAL_RESOURCE_DIR

Completed in 474 milliseconds

12