/external/webkit/WebCore/dom/ |
OverflowEvent.idl | 33 readonly attribute boolean horizontalOverflow; 34 readonly attribute boolean verticalOverflow; 37 in boolean horizontalOverflow, 38 in boolean verticalOverflow);
|
PageTransitionEvent.idl | 30 readonly attribute boolean persisted; 32 void initPageTransitionEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in boolean persisted);
|
ProgressEvent.idl | 29 readonly attribute boolean lengthComputable; 33 in boolean canBubbleArg, 34 in boolean cancelableArg, 35 in boolean lengthComputableArg,
|
/frameworks/base/awt/java/awt/im/spi/ |
InputMethod.java | 37 public void deactivate(boolean isTemporary); 51 public boolean isCompositionEnabled(); 61 public void setCompositionEnabled(boolean enable); 65 public boolean setLocale(Locale locale);
|
/frameworks/base/core/java/android/app/admin/ |
IDevicePolicyManager.aidl | 34 boolean isActivePasswordSufficient(); 40 boolean resetPassword(String password, int flags); 50 boolean isAdminActive(in ComponentName policyReceiver); 52 boolean packageHasActiveAdmins(String packageName);
|
/frameworks/base/core/java/android/view/ |
FocusFinderHelper.java | 36 public boolean isBetterCandidate(int direction, Rect source, Rect rect1, Rect rect2) { 40 public boolean beamBeats(int direction, Rect source, Rect rect1, Rect rect2) { 44 public boolean isCandidate(Rect srcRect, Rect destRect, int direction) { 48 public boolean beamsOverlap(int direction, Rect rect1, Rect rect2) {
|
/frameworks/base/graphics/java/android/graphics/ |
PathMeasure.java | 48 public PathMeasure(Path path, boolean forceClosed) { 58 public void setPath(Path path, boolean forceClosed) { 85 public boolean getPosTan(float distance, float pos[], float tan[]) { 106 public boolean getMatrix(float distance, Matrix matrix, int flags) { 117 public boolean getSegment(float startD, float stopD, Path dst, boolean startWithMoveTo) { 124 public boolean isClosed() { 132 public boolean nextContour() { 140 private static native int native_create(int native_path, boolean forceClosed); 141 private static native void native_setPath(int native_instance, int native_path, boolean forceClosed) [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Light.java | 44 boolean mIsMono; 45 boolean mIsLocal; 53 public void lightSetIsMono(boolean isMono) { 57 public void lightSetIsLocal(boolean isLocal) {
|
/frameworks/base/services/java/com/android/server/status/ |
TrackingView.java | 30 boolean mTracking; 40 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 46 public boolean dispatchKeyEvent(KeyEvent event) { 47 boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ITelephonyRegistry.aidl | 26 void listen(String pkg, IPhoneStateListener callback, int events, boolean notifyNow); 31 void notifyMessageWaitingChanged(boolean mwi); 32 void notifyCallForwardingChanged(boolean cfi); 34 void notifyDataConnection(int state, boolean isDataConnectivityPossible,
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
StkResponseMessage.java | 24 boolean usersYesNoSelection = false; 25 boolean usersConfirm = false; 43 public void setYesNo(boolean yesNo) { 47 public void setConfirmation(boolean confirm) {
|
Input.java | 33 public boolean ucs2; 34 public boolean packed; 35 public boolean digitOnly; 36 public boolean echo; 37 public boolean yesNo; 38 public boolean helpAvailable; 96 boolean setIcon(Bitmap Icon) { return true; }
|
/frameworks/base/test-runner/src/junit/runner/ |
LoadingTestCollector.java | 22 protected boolean isTestClass(String classFileName) { 43 boolean isTestClass(Class testClass) { 53 boolean hasSuiteMethod(Class testClass) { 62 boolean hasPublicConstructor(Class testClass) {
|
/sdk/layoutlib_utils/src/com/android/layoutlib/utils/ |
ResourceValue.java | 25 private final boolean mIsFramwork; 27 public ResourceValue(String type, String name, boolean isFramwork) { 33 public ResourceValue(String type, String name, String value, boolean isFramework) { 60 public boolean isFramework() {
|
/dalvik/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
DdmVmInternal.java | 32 native public static void threadNotify(boolean enable); 43 native public static boolean heapInfoNotify(int when); 51 native public static boolean heapSegmentNotify(int when, int what, 52 boolean isNative); 71 native public static void enableRecentAllocations(boolean enable); 74 * Return a boolean indicating whether or not the "recent allocation" 77 native public static boolean getRecentAllocationStatus();
|
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/ |
GroupImpl.java | 38 public boolean addMember(Principal principal) {
49 public boolean removeMember(Principal principal) {
57 public boolean equals(Object obj) {
68 public boolean equals(Group group1) {
80 public boolean isMember(Principal principal) {
93 boolean isMemberRecurse(Principal principal, Vector vector) {
95 boolean flag = false;
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
NSInfo.java | 41 public NSInfo(boolean hasProcessedNS, boolean hasXMLNSAttrs) 63 public NSInfo(boolean hasProcessedNS, boolean hasXMLNSAttrs, 81 public NSInfo(String namespace, boolean hasXMLNSAttrs) 94 public boolean m_hasXMLNSAttrs; 97 public boolean m_hasProcessedNS;
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.9.1.js | 119 array[item++] = new TestCase( SECTION, "new Boolean(true) == new Boolean(true)", false, new Boolean(true) == new Boolean(true) ); 120 array[item++] = new TestCase( SECTION, "new Boolean(false) == new Boolean(false)", false, new Boolean(false) == new Boolean(false) ); 125 array[item++] = new TestCase( SECTION, "x = new Boolean(true); y = x; z = x; z == y", true, eval("x = new Boolean(true); y = x; z = x; z == y") ) [all...] |
11.9.2.js | 118 array[item++] = new TestCase( SECTION, "new Boolean(true) != new Boolean(true)", true, new Boolean(true) != new Boolean(true) ); 119 array[item++] = new TestCase( SECTION, "new Boolean(false) != new Boolean(false)", true, new Boolean(false) != new Boolean(false) ); 124 array[item++] = new TestCase( SECTION, "x = new Boolean(true); y = x; z = x; z != y", false, eval("x = new Boolean(true); y = x; z = x; z != y") ) [all...] |
11.9.3.js | 118 array[item++] = new TestCase( SECTION, "new Boolean(true) == new Boolean(true)", false, new Boolean(true) == new Boolean(true) ); 119 array[item++] = new TestCase( SECTION, "new Boolean(false) == new Boolean(false)", false, new Boolean(false) == new Boolean(false) ); 124 array[item++] = new TestCase( SECTION, "x = new Boolean(true); y = x; z = x; z == y", true, eval("x = new Boolean(true); y = x; z = x; z == y") ) [all...] |
/frameworks/base/core/java/android/database/ |
ContentObserver.java | 36 private boolean mSelf; 38 public NotificationRunnable(boolean self) { 54 public boolean deliverSelfNotifications() { 62 public void onChange(boolean selfChange) { 118 public boolean deliverSelfNotifications() { 129 public void onChange(boolean selfChange) {} 131 public final void dispatchChange(boolean selfChange) {
|
/frameworks/base/location/java/android/location/ |
GpsSatellite.java | 25 boolean mValid; 26 boolean mHasEphemeris; 27 boolean mHasAlmanac; 28 boolean mUsedInFix; 95 public boolean hasEphemeris() { 104 public boolean hasAlmanac() { 114 public boolean usedInFix() {
|
/frameworks/base/opengl/tools/glgen/stubs/jsr239/ |
GLImplHeader.java-impl | 51 private boolean haveCheckedExtensions; 52 private boolean have_OES_blend_equation_separate; 53 private boolean have_OES_blend_subtract; 54 private boolean have_OES_framebuffer_object; 55 private boolean have_OES_texture_cube_map; 64 private static boolean allowIndirectBuffers(String appName) { 65 boolean result = false;
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
VideoObject.java | 53 public boolean equals(Object other) { 66 boolean rotateAsNeeded, boolean useNative) { 92 public boolean isReadonly() { 96 public boolean isDrm() { 100 public boolean rotateImageBy(int degrees) { 104 public Bitmap thumbBitmap(boolean rotateAsNeeded) {
|
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/regex/ |
NativeRegEx.java | 47 public static native boolean matches(int regex, int startIndex); 53 public static native boolean lookingAt(int regex, int startIndex); 59 public static native boolean find(int regex, int startIndex); 65 public static native boolean findNext(int regex); 97 public static native void useTransparentBounds(int regex, boolean value); 102 public static native boolean hasTransparentBounds(int regex); 107 public static native void useAnchoringBounds(int regex, boolean value); 112 public static native boolean hasAnchoringBounds(int regex); 117 public static native boolean hitEnd(int regex); 123 public static native boolean requireEnd(int regex) [all...] |