Home
last modified time | relevance | path

Searched full:boolean (Results 1 – 25 of 40364) sorted by relevance

12345678910>>...1615

/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/
H A Dcom_github_javaparser_ast_visitor_EqualsVisitor.txt6 Line 83) SINGLETON.nodeEquals(n1, n2) ==> boolean
7 Line 95) !nodeEquals(n1.getComment(), n2.getComment()) ==> boolean
8 Line 96) false ==> boolean
9 Line 98) !nodesEquals(n1.getOrphanComments(), n2.getOrphanComments()) ==> boolean
10 Line 99) false ==> boolean
11 Line 101) true ==> boolean
12 Line 105) nodes1 == null ==> boolean
13 Line 106) nodes2 == null ==> boolean
14 Line 107) true ==> boolean
15 Line 109) false ==> boolean
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/lang/invoke/VarHandles/
H A DVarHandleTestAccessBoolean.java48 static final boolean static_final_v = true;
50 static boolean static_v;
52 final boolean final_v = true;
54 boolean v;
70 VarHandleTestAccessBoolean.class, "final_v", boolean.class); in setup()
73 VarHandleTestAccessBoolean.class, "v", boolean.class); in setup()
76 VarHandleTestAccessBoolean.class, "static_final_v", boolean.class); in setup()
79 VarHandleTestAccessBoolean.class, "static_v", boolean.class); in setup()
81 vhArray = MethodHandles.arrayElementVarHandle(boolean[].class); in setup()
139 types.add(new Object[] {vhArray, Arrays.asList(boolean[].class, int.class)}); in typesProvider()
[all …]
H A DVarHandleTestMethodHandleAccessBoolean.java45 static final boolean static_final_v = true;
47 static boolean static_v;
49 final boolean final_v = true;
51 boolean v;
66 VarHandleTestMethodHandleAccessBoolean.class, "final_v", boolean.class); in setup()
69 VarHandleTestMethodHandleAccessBoolean.class, "v", boolean.class); in setup()
72 VarHandleTestMethodHandleAccessBoolean.class, "static_final_v", boolean.class); in setup()
75 VarHandleTestMethodHandleAccessBoolean.class, "static_v", boolean.class); in setup()
77 vhArray = MethodHandles.arrayElementVarHandle(boolean[].class); in setup()
128 boolean x = (boolean) hs.get(TestAccessMode.GET).invokeExact(recv); in testInstanceField()
[all …]
H A DVarHandleTestMethodTypeBoolean.java49 static final boolean static_final_v = true;
51 static boolean static_v = true;
53 final boolean final_v = true;
55 boolean v = true;
70 VarHandleTestMethodTypeBoolean.class, "final_v", boolean.class); in setup()
73 VarHandleTestMethodTypeBoolean.class, "v", boolean.class); in setup()
76 VarHandleTestMethodTypeBoolean.class, "static_final_v", boolean.class); in setup()
79 VarHandleTestMethodTypeBoolean.class, "static_v", boolean.class); in setup()
81 vhArray = MethodHandles.arrayElementVarHandle(boolean[].class); in setup()
133 boolean x = (boolean) vh.get(null); in testInstanceFieldWrongMethodType()
[all …]
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
H A DEqualsVisitor.java78 public class EqualsVisitor implements GenericVisitor<Boolean, Node> {
82 public static boolean equals(final Node n1, final Node n2) { in equals()
94 private boolean commonNodeEquality(Node n1, Node n2) { in commonNodeEquality()
104 private <T extends Node> boolean nodesEquals(final List<T> nodes1, final List<T> nodes2) { in nodesEquals()
124 private <T extends Node> boolean nodeEquals(final T n1, final T n2) { in nodeEquals()
145 private boolean objEquals(final Object n1, final Object n2) { in objEquals()
160 @Override public Boolean visit(final CompilationUnit n1, final Node arg) { in visit()
164 return Boolean.FALSE; in visit()
168 return Boolean.FALSE; in visit()
172 return Boolean.FALSE; in visit()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
H A DBooleanUtilsTest.java45 final Boolean[] expected = {Boolean.FALSE, Boolean.TRUE}; in test_booleanValues()
51 final List<Boolean> expected = Arrays.asList(Boolean.FALSE, Boolean.TRUE); in test_values()
58 final List<Boolean> list = new ArrayList<>(); in test_forEach()
60 assertEquals(Arrays.asList(Boolean.FALSE, Boolean.TRUE), list); in test_forEach()
65 assertFalse(BooleanUtils.isFalse(Boolean.TRUE)); in test_isFalse_Boolean()
66 assertTrue(BooleanUtils.isFalse(Boolean.FALSE)); in test_isFalse_Boolean()
72 assertTrue(BooleanUtils.isNotFalse(Boolean.TRUE)); in test_isNotFalse_Boolean()
73 assertFalse(BooleanUtils.isNotFalse(Boolean.FALSE)); in test_isNotFalse_Boolean()
79 assertFalse(BooleanUtils.isNotTrue(Boolean.TRUE)); in test_isNotTrue_Boolean()
80 assertTrue(BooleanUtils.isNotTrue(Boolean.FALSE)); in test_isNotTrue_Boolean()
[all …]
/aosp_15_r20/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl67 void setPasswordQuality(in ComponentName who, int quality, boolean parent); in setPasswordQuality()
68 int getPasswordQuality(in ComponentName who, int userHandle, boolean parent); in getPasswordQuality()
70 void setPasswordMinimumLength(in ComponentName who, int length, boolean parent); in setPasswordMinimumLength()
71 int getPasswordMinimumLength(in ComponentName who, int userHandle, boolean parent); in getPasswordMinimumLength()
73 void setPasswordMinimumUpperCase(in ComponentName who, int length, boolean parent); in setPasswordMinimumUpperCase()
74 int getPasswordMinimumUpperCase(in ComponentName who, int userHandle, boolean parent); in getPasswordMinimumUpperCase()
76 void setPasswordMinimumLowerCase(in ComponentName who, int length, boolean parent); in setPasswordMinimumLowerCase()
77 int getPasswordMinimumLowerCase(in ComponentName who, int userHandle, boolean parent); in getPasswordMinimumLowerCase()
79 void setPasswordMinimumLetters(in ComponentName who, int length, boolean parent); in setPasswordMinimumLetters()
80 int getPasswordMinimumLetters(in ComponentName who, int userHandle, boolean parent); in getPasswordMinimumLetters()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DBooleanUtils.java27 * Operations on boolean primitives and Boolean objects.
38 …private static final List<Boolean> BOOLEAN_LIST = Collections.unmodifiableList(Arrays.asList(Boole…
93 * @param array an array of {@code boolean}s
100 public static boolean and(final boolean... array) { in and()
102 for (final boolean element : array) { in and()
113 * BooleanUtils.and(Boolean.TRUE, Boolean.TRUE) = Boolean.TRUE
114 * BooleanUtils.and(Boolean.FALSE, Boolean.FALSE) = Boolean.FALSE
115 * BooleanUtils.and(Boolean.TRUE, Boolean.FALSE) = Boolean.FALSE
116 * BooleanUtils.and(Boolean.TRUE, Boolean.TRUE, Boolean.TRUE) = Boolean.TRUE
117 * BooleanUtils.and(Boolean.FALSE, Boolean.FALSE, Boolean.TRUE) = Boolean.FALSE
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/primitives/
H A DBooleansTest.java44 private static final boolean[] EMPTY = {};
45 private static final boolean[] ARRAY_FALSE = {false};
46 private static final boolean[] ARRAY_TRUE = {true};
47 private static final boolean[] ARRAY_FALSE_FALSE = {false, false};
48 private static final boolean[] ARRAY_FALSE_TRUE = {false, true};
50 private static final boolean[] VALUES = {false, true};
53 assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode()); in testHashCode()
54 assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode()); in testHashCode()
72 for (boolean x : VALUES) { in testCompare()
73 for (boolean y : VALUES) { in testCompare()
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/primitives/
H A DBooleansTest.java44 private static final boolean[] EMPTY = {};
45 private static final boolean[] ARRAY_FALSE = {false};
46 private static final boolean[] ARRAY_TRUE = {true};
47 private static final boolean[] ARRAY_FALSE_FALSE = {false, false};
48 private static final boolean[] ARRAY_FALSE_TRUE = {false, true};
50 private static final boolean[] VALUES = {false, true};
53 assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode()); in testHashCode()
54 assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode()); in testHashCode()
72 for (boolean x : VALUES) { in testCompare()
73 for (boolean y : VALUES) { in testCompare()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/aconfig/com_android_systemui_flags_lib/android_common/turbine/
Dcom_android_systemui_flags_lib.jar ... boolean appClipsBacklinks () public boolean bindKeyguardMediaVisibility () public boolean bouncerUiRevamp () public boolean bpIconA11y () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common/turbine-combined/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common_apex33/turbine/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common/turbine/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common_apex33/turbine-combined/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/frameworks/base/com.android.window.flags.window-aconfig-java/android_common/turbine/
Dcom.android.window.flags.window-aconfig-java.jar ... boolean aeBackStackRestore () public boolean allowDisableActivityRecordInputSink () public boolean allowHideScmButton () public boolean allowMultipleAdjacentTaskFragments () public boolean
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/keyguard/
DKeyguardFingerprintListenModel.java15 private boolean listening;
16 private boolean allowOnCurrentOccludingActivity;
17 private boolean alternateBouncerShowing;
18 private boolean biometricEnabledForUser;
19 private boolean biometricPromptShowing;
20 private boolean bouncerIsOrWillShow;
21 private boolean canSkipBouncer;
22 private boolean credentialAttempted;
23 private boolean deviceInteractive;
24 private boolean dreaming;
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/aconfig/com_android_systemui_flags_lib/android_common/javac/
Dcom_android_systemui_flags_lib.jar ... boolean appClipsBacklinks () public boolean bindKeyguardMediaVisibility () public boolean bouncerUiRevamp () public boolean bpIconA11y () public boolean ...
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DBooleanTest.java24 * java.lang.Boolean#hashCode()
27 assertEquals(1231, Boolean.TRUE.hashCode()); in test_hashCode()
28 assertEquals(1237, Boolean.FALSE.hashCode()); in test_hashCode()
32 * java.lang.Boolean#Boolean(String)
35 assertEquals(Boolean.TRUE, new Boolean("TRUE")); in test_ConstructorLjava_lang_String()
36 assertEquals(Boolean.TRUE, new Boolean("true")); in test_ConstructorLjava_lang_String()
37 assertEquals(Boolean.TRUE, new Boolean("True")); in test_ConstructorLjava_lang_String()
39 assertEquals(Boolean.FALSE, new Boolean("yes")); in test_ConstructorLjava_lang_String()
40 assertEquals(Boolean.FALSE, new Boolean("false")); in test_ConstructorLjava_lang_String()
44 * java.lang.Boolean#Boolean(boolean)
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common/javac/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/flags/bluetooth_flags_java_lib/android_common_apex33/javac/
Dbluetooth_flags_java_lib.jar ... boolean a2dpClearPendingStartOnSessionRestart () public boolean a2dpFixCodecTypeInJava () public boolean a2dpIgnoreStartedWhenResponder () public boolean a2dpLhdcApi () public boolean
/aosp_15_r20/out/soong/.intermediates/frameworks/base/com.android.window.flags.window-aconfig-java/android_common/javac/
Dcom.android.window.flags.window-aconfig-java.jar ... boolean aeBackStackRestore () public boolean allowDisableActivityRecordInputSink () public boolean allowHideScmButton () public boolean allowMultipleAdjacentTaskFragments () public boolean
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/aconfig/aconfig_settings_flags_lib/android_common/turbine-combined/
Daconfig_settings_flags_lib.jar ... boolean activeUnlockFinishParent () public boolean addSecurityAlgorithmsToEngMenu () public boolean appArchiving () public boolean biometricOnboardingEducation () public boolean ...
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/aconfig/aconfig_settings_flags_lib/android_common/repackaged-jarjar/turbine/
Daconfig_settings_flags_lib.jar ... () public static boolean activeUnlockFinishParent () public static boolean addSecurityAlgorithmsToEngMenu () public static boolean appArchiving () public
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/aconfig/aconfig_settings_flags_lib/android_common/turbine/
Daconfig_settings_flags_lib.jar ... boolean activeUnlockFinishParent () public boolean addSecurityAlgorithmsToEngMenu () public boolean appArchiving () public boolean biometricOnboardingEducation () public boolean ...

12345678910>>...1615