/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
WindowCallback.java | 31 public boolean dispatchKeyEvent(KeyEvent event) { 36 public boolean dispatchKeyShortcutEvent(KeyEvent event) { 41 public boolean dispatchTouchEvent(MotionEvent event) { 46 public boolean dispatchTrackballEvent(MotionEvent event) { 51 public boolean dispatchGenericMotionEvent(MotionEvent event) { 56 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) { 66 public boolean onCreatePanelMenu(int featureId, Menu menu) { 71 public boolean onPreparePanel(int featureId, View view, Menu menu) { 76 public boolean onMenuOpened(int featureId, Menu menu) { 81 public boolean onMenuItemSelected(int featureId, MenuItem item) [all...] |
/frameworks/native/opengl/tools/glgen/src/ |
CType.java | 20 boolean isConst; 21 boolean isPointer; 30 public CType(String baseType, boolean isConst, boolean isPointer) { 40 public void setIsConst(boolean isConst) { 44 public boolean isConst() { 48 public void setIsPointer(boolean isPointer) { 52 public boolean isPointer() { 56 public boolean isEGLHandle() { 66 boolean isVoid() [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
ApiHelper.java | 27 public static final boolean AT_LEAST_16 = Build.VERSION.SDK_INT >= 16; 29 public static final boolean HAS_APP_GALLERY = 32 public static final boolean HAS_ANNOUNCE_FOR_ACCESSIBILITY = 34 public static final boolean HAS_AUTO_FOCUS_MOVE_CALLBACK = 36 public static final boolean HAS_MEDIA_ACTION_SOUND = 38 public static final boolean HAS_MEDIA_COLUMNS_WIDTH_AND_HEIGHT = 40 public static final boolean HAS_SET_BEAM_PUSH_URIS = 42 public static final boolean HAS_SURFACE_TEXTURE_RECORDING = 44 public static final boolean HAS_ROBOTO_MEDIUM_FONT = 47 public static final boolean HAS_CAMERA_HDR_PLUS = isKitKatOrHigher() [all...] |
/packages/apps/Nfc/src/com/android/nfc/ |
DeviceHost.java | 53 boolean connect(int technology); 54 boolean reconnect(); 55 boolean disconnect(); 57 boolean presenceCheck(); 58 boolean isPresent(); 68 byte[] transceive(byte[] data, boolean raw, int[] returnCode); 70 boolean checkNdef(int[] out); 72 boolean writeNdef(byte[] data); 74 boolean formatNdef(byte[] key); 75 boolean isNdefFormatable() [all...] |
NfcDiscoveryParameters.java | 38 public NfcDiscoveryParameters.Builder setEnableLowPowerDiscovery(boolean enable) { 43 public NfcDiscoveryParameters.Builder setEnableReaderMode(boolean enable) { 53 public NfcDiscoveryParameters.Builder setEnableHostRouting(boolean enable) { 58 public NfcDiscoveryParameters.Builder setEnableP2p(boolean enable) { 77 private boolean mEnableLowPowerDiscovery = true; 78 private boolean mEnableReaderMode = false; 79 private boolean mEnableHostRouting = false; 80 private boolean mEnableP2p = false; 88 public boolean shouldEnableLowPowerDiscovery() { 92 public boolean shouldEnableReaderMode() [all...] |
/cts/tests/tests/jni/src/android/jni/cts/ |
StaticNonce.java | 41 public static native boolean returnBoolean(); 56 public static native boolean takeBoolean(boolean v); 57 public static native boolean takeByte(byte v); 58 public static native boolean takeShort(short v); 59 public static native boolean takeChar(char v); 60 public static native boolean takeInt(int v); 61 public static native boolean takeLong(long v); 62 public static native boolean takeFloat(float v); 63 public static native boolean takeDouble(double v) [all...] |
/external/clang/test/Sema/ |
bool-compare.c | 8 if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}} 33 if (!a > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is always false}} 34 if (!a > 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}} 37 if (!a > -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true}} 39 if (!a < 0) {} // expected-warning {{comparison of constant 0 with boolean expression is always false}} 41 if (!a < 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always true}} 44 if (!a < -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always false}} 46 if (!a >= 0) {} // expected-warning {{comparison of constant 0 with boolean expression is always true}} 48 if (!a >= 2) {} // expected-warning {{comparison of constant 2 with boolean expression is always false}} 51 if (!a >= -1) {} // expected-warning {{comparison of constant -1 with boolean expression is always true} [all...] |
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
HieroSettings.java | 40 private boolean bold, italic, mono; 46 private boolean nativeRendering; 47 private boolean font2Active = false; 72 mono = Boolean.parseBoolean(value); 76 bold = Boolean.parseBoolean(value); 78 italic = Boolean.parseBoolean(value); 82 font2Active = Boolean.parseBoolean(value); 100 nativeRendering = Boolean.parseBoolean(value); 210 /** @see UnicodeFont#UnicodeFont(String, int, boolean, boolean) [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowWebView.java | 24 private boolean runFlag = false; 25 private boolean clearCacheCalled = false; 26 private boolean clearCacheIncludeDiskFiles = false; 27 private boolean clearFormDataCalled = false; 28 private boolean clearHistoryCalled = false; 29 private boolean clearViewCalled = false; 30 private boolean destroyCalled = false; 32 private boolean canGoBack; 109 public void clearCache(boolean includeDiskFiles) { 114 public boolean wasClearCacheCalled() [all...] |
ShadowPowerManager.java | 14 private boolean isScreenOn = true; 22 public boolean isScreenOn() { 26 public void setIsScreenOn(boolean screenOn) { 32 private boolean refCounted = true; 34 private boolean locked; 61 public synchronized boolean isHeld() { 66 public void setReferenceCounted(boolean value) {
|
/external/v8/test/webkit/fast/js/ |
primitive-property-access-edge-cases-expected.txt | 31 PASS checkGet(true, Boolean) is true 34 PASS checkSet(true, Boolean) is true 37 PASS checkGetStrict(true, Boolean) is true 40 PASS checkSetStrict(true, Boolean) is true 43 PASS checkRead(true, Boolean) is true 46 PASS checkWrite(true, Boolean) is true 49 PASS checkReadStrict(true, Boolean) is true 52 PASS checkWriteStrict(true, Boolean) threw exception TypeError: Cannot create property 'foo' on boolean 'true'. 55 PASS checkNumericGet(true, Boolean) is tru [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
GLEnvironment.java | 34 private boolean mManageContext = true; 69 public boolean isActive() { 73 public boolean isContextActive() { 77 public static boolean isAnyContextActive() { 151 private native boolean nativeInitWithNewContext(); 153 private native boolean nativeInitWithCurrentContext(); 155 private native boolean nativeIsActive(); 157 private native boolean nativeIsContextActive(); 159 private static native boolean nativeIsAnyContextActive(); 161 private native boolean nativeActivate() [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
UnlockMethodCache.java | 41 private boolean mSecure; 43 private boolean mCanSkipBouncer; 44 private boolean mTrustManaged; 45 private boolean mFaceUnlockRunning; 46 private boolean mTrusted; 65 public boolean isMethodSecure() { 69 public boolean isTrusted() { 76 public boolean canSkipBouncer() { 88 private void update(boolean updateAlways) { 91 boolean secure = mLockPatternUtils.isSecure(user) [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
MethodAdapter.java | 23 * The adapter calls the void {@link #onInvokeV(String, boolean, Object)} listener 39 public void onInvokeV(String signature, boolean isNative, Object caller) { 43 * Same as {@link #onInvokeV(String, boolean, Object)} but returns an integer or similar. 44 * @see #onInvokeV(String, boolean, Object) 45 * @return an integer, or a boolean, or a short or a byte. 48 public int onInvokeI(String signature, boolean isNative, Object caller) { 54 * Same as {@link #onInvokeV(String, boolean, Object)} but returns a long. 55 * @see #onInvokeV(String, boolean, Object) 59 public long onInvokeL(String signature, boolean isNative, Object caller) { 65 * Same as {@link #onInvokeV(String, boolean, Object)} but returns a float [all...] |
/art/test/076-boolean-put/src/ |
Main.java | 18 * Test access to private boolean fields. 20 * Accessing private boolean fields from an inner class causes the compiler 21 * to generate an accessor method that performs the boolean operation. 23 * not a boolean, which makes the verifier upset when the result of the 24 * operation is written back to a boolean field. 27 private boolean mInstance; 28 private static boolean mStatic;
|
/external/selinux/libsepol/man/man3/ |
sepol_genbools.3 | 3 sepol_genbools \- Rewrite a binary policy with different boolean settings 14 (data, len) to use the boolean settings specified in the file named by 15 boolpath. The boolean settings are specified by name=value lines 20 does likewise, but obtains the boolean settings from the parallel arrays 25 An errno of ENOENT indicates that the boolean file did not exist. 27 boolean file was undefined in the policy or had an invalid value specified; 29 boolean settings are ignored.
|
/external/wpa_supplicant_8/src/pae/ |
ieee802_1x_cp.h | 20 Boolean protect; 21 Boolean replay_protect; 37 void ieee802_1x_cp_set_electedself(void *cp_ctx, Boolean status); 45 void ieee802_1x_cp_set_usingreceivesas(void *cp_ctx, Boolean status); 46 void ieee802_1x_cp_set_allreceiving(void *cp_ctx, Boolean status); 47 void ieee802_1x_cp_set_servertransmitting(void *cp_ctx, Boolean status); 48 void ieee802_1x_cp_set_usingtransmitas(void *cp_ctx, Boolean status);
|
/frameworks/base/core/java/com/android/internal/widget/ |
DecorContentParent.java | 37 boolean hasIcon(); 38 boolean hasLogo(); 42 boolean canShowOverflowMenu(); 43 boolean isOverflowMenuShowing(); 44 boolean isOverflowMenuShowPending(); 45 boolean showOverflowMenu(); 46 boolean hideOverflowMenu();
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
ProviderPropertiesUnbundled.java | 31 public static ProviderPropertiesUnbundled create(boolean requiresNetwork, 32 boolean requiresSatellite, boolean requiresCell, boolean hasMonetaryCost, 33 boolean supportsAltitude, boolean supportsSpeed, boolean supportsBearing,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
IRecentsNonSystemUserCallbacks.aidl | 29 void showRecents(boolean triggeredFromAltTab, boolean draggingInRecents, boolean animate, 30 boolean reloadTasks, boolean fromHome, int recentsGrowTarget); 31 void hideRecents(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
BluetoothController.java | 27 boolean isBluetoothSupported(); 28 boolean isBluetoothEnabled(); 32 boolean isBluetoothConnected(); 33 boolean isBluetoothConnecting(); 35 void setBluetoothEnabled(boolean enabled); 39 boolean canConfigBluetooth(); 42 void onBluetoothStateChange(boolean enabled);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IWapPushManager.aidl | 33 boolean addPackage(String x_app_id, String content_type, 35 int app_type, boolean need_signature, boolean further_processing); 41 boolean updatePackage(String x_app_id, String content_type, 43 int app_type, boolean need_signature, boolean further_processing); 49 boolean deletePackage(String x_app_id, String content_type,
|
/frameworks/support/compat/ics/android/support/v4/view/ |
MenuItemCompatIcs.java | 23 public static boolean expandActionView(MenuItem item) { 27 public static boolean collapseActionView(MenuItem item) { 31 public static boolean isActionViewExpanded(MenuItem item) { 46 boolean onMenuItemActionExpand(MenuItem item); 47 boolean onMenuItemActionCollapse(MenuItem item); 59 public boolean onMenuItemActionExpand(MenuItem item) { 64 public boolean onMenuItemActionCollapse(MenuItem item) {
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
DecorContentParent.java | 39 boolean hasIcon(); 40 boolean hasLogo(); 44 boolean canShowOverflowMenu(); 45 boolean isOverflowMenuShowing(); 46 boolean isOverflowMenuShowPending(); 47 boolean showOverflowMenu(); 48 boolean hideOverflowMenu();
|
/packages/apps/Gallery/tests/src/com/android/camera/gallery/ |
MockImage.java | 32 boolean rotateAsNeeded) { 37 boolean rotateAsNeeded, boolean useNative) { 85 public boolean isDrm() { 89 public boolean isReadonly() { 97 public boolean rotateImageBy(int degrees) { 104 public Bitmap thumbBitmap(boolean rotateAsNeeded) {
|