Home
last modified time | relevance | path

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

12345678910>>...710

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/
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 …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
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 …]
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
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 …]
/external/robolectric/shadows/framework/src/main/java/org/robolectric/fakes/
DRoboWebSettings.java9 private boolean blockNetworkImage = false;
10 private boolean javaScriptEnabled = false;
11 private boolean javaScriptCanOpenWindowAutomatically = false;
12 private boolean lightTouchEnabled = false;
13 private boolean needInitialFocus = false;
15 private boolean pluginsEnabled = false;
16 private boolean saveFormData = false;
17 private boolean supportMultipleWindows = false;
18 private boolean supportZoom = true;
19 private boolean useWideViewPort = false;
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
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 …]
/external/guava/android/guava-tests/test/com/google/common/primitives/
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};
54 assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode()); in testHashCode()
55 assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode()); in testHashCode()
73 for (boolean x : VALUES) { in testCompare()
74 for (boolean y : VALUES) { in testCompare()
[all …]
/external/guava/guava-tests/test/com/google/common/primitives/
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};
54 assertThat(Booleans.hashCode(true)).isEqualTo(Boolean.TRUE.hashCode()); in testHashCode()
55 assertThat(Booleans.hashCode(false)).isEqualTo(Boolean.FALSE.hashCode()); in testHashCode()
73 for (boolean x : VALUES) { in testCompare()
74 for (boolean y : VALUES) { in testCompare()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DObjectIdentityEqualsVisitor.java38 public class ObjectIdentityEqualsVisitor implements GenericVisitor<Boolean, Visitable> {
42 public static boolean equals(final Node n, final Node n2) { in equals()
47 public Boolean visit(final CompilationUnit n, final Visitable arg) { in visit()
52 public Boolean visit(final PackageDeclaration n, final Visitable arg) { in visit()
57 public Boolean visit(final TypeParameter n, final Visitable arg) { in visit()
62 public Boolean visit(final LineComment n, final Visitable arg) { in visit()
67 public Boolean visit(final BlockComment n, final Visitable arg) { in visit()
72 public Boolean visit(final ClassOrInterfaceDeclaration n, final Visitable arg) { in visit()
77 public Boolean visit(final EnumDeclaration n, final Visitable arg) { in visit()
82 public Boolean visit(final EnumConstantDeclaration n, final Visitable arg) { in visit()
[all …]
/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
DRenderNodeNatives.java50 public static native boolean nIsValid(long renderNode); in nIsValid()
56 public static native boolean nHasIdentityMatrix(long renderNode); in nHasIdentityMatrix()
58 public static native boolean nOffsetTopAndBottom(long renderNode, int offset); in nOffsetTopAndBottom()
60 public static native boolean nOffsetLeftAndRight(long renderNode, int offset); in nOffsetLeftAndRight()
62 public static native boolean nSetLeftTopRightBottom( in nSetLeftTopRightBottom()
65 public static native boolean nSetLeft(long renderNode, int left); in nSetLeft()
67 public static native boolean nSetTop(long renderNode, int top); in nSetTop()
69 public static native boolean nSetRight(long renderNode, int right); in nSetRight()
71 public static native boolean nSetBottom(long renderNode, int bottom); in nSetBottom()
81 public static native boolean nSetCameraDistance(long renderNode, float distance); in nSetCameraDistance()
[all …]
/external/mesa3d/src/freedreno/registers/dsi/
Ddsi.xml76 <bitfield name="CMD_DMA_DONE" pos="0" type="boolean"/>
77 <bitfield name="MASK_CMD_DMA_DONE" pos="1" type="boolean"/>
78 <bitfield name="CMD_MDP_DONE" pos="8" type="boolean"/>
79 <bitfield name="MASK_CMD_MDP_DONE" pos="9" type="boolean"/>
80 <bitfield name="VIDEO_DONE" pos="16" type="boolean"/>
81 <bitfield name="MASK_VIDEO_DONE" pos="17" type="boolean"/>
82 <bitfield name="BTA_DONE" pos="20" type="boolean"/>
83 <bitfield name="MASK_BTA_DONE" pos="21" type="boolean"/>
84 <bitfield name="ERROR" pos="24" type="boolean"/>
85 <bitfield name="MASK_ERROR" pos="25" type="boolean"/>
[all …]
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/
DCommandLineOptions.java30 private final boolean inPlace;
34 private final boolean aosp;
35 private final boolean version;
36 private final boolean help;
37 private final boolean stdin;
38 private final boolean fixImportsOnly;
39 private final boolean sortImports;
40 private final boolean removeUnusedImports;
41 private final boolean dryRun;
42 private final boolean setExitIfChanged;
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/
DDefaultVisitorAdapter.java15 public class DefaultVisitorAdapter implements GenericVisitor<Type, Boolean> {
17 public Type visit(CompilationUnit node, Boolean aBoolean) { in visit()
22 public Type visit(PackageDeclaration node, Boolean aBoolean) { in visit()
27 public Type visit(TypeParameter node, Boolean aBoolean) { in visit()
32 public Type visit(LineComment node, Boolean aBoolean) { in visit()
37 public Type visit(BlockComment node, Boolean aBoolean) { in visit()
42 public Type visit(ClassOrInterfaceDeclaration node, Boolean aBoolean) { in visit()
47 public Type visit(EnumDeclaration node, Boolean aBoolean) { in visit()
52 public Type visit(EnumConstantDeclaration node, Boolean aBoolean) { in visit()
57 public Type visit(AnnotationDeclaration node, Boolean aBoolean) { in visit()
[all …]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
DDefaultVisitorAdapter.java15 public class DefaultVisitorAdapter implements GenericVisitor<ResolvedType, Boolean> {
17 public ResolvedType visit(CompilationUnit node, Boolean aBoolean) { in visit()
22 public ResolvedType visit(PackageDeclaration node, Boolean aBoolean) { in visit()
27 public ResolvedType visit(TypeParameter node, Boolean aBoolean) { in visit()
32 public ResolvedType visit(LineComment node, Boolean aBoolean) { in visit()
37 public ResolvedType visit(BlockComment node, Boolean aBoolean) { in visit()
42 public ResolvedType visit(ClassOrInterfaceDeclaration node, Boolean aBoolean) { in visit()
47 public ResolvedType visit(EnumDeclaration node, Boolean aBoolean) { in visit()
52 public ResolvedType visit(EnumConstantDeclaration node, Boolean aBoolean) { in visit()
57 public ResolvedType visit(AnnotationDeclaration node, Boolean aBoolean) { in visit()
[all …]
/external/testng/src/main/java/org/testng/internal/annotations/
DConfigurationAnnotation.java18 private boolean m_beforeTestClass = false;
19 private boolean m_afterTestClass = false;
20 private boolean m_beforeTestMethod = false;
21 private boolean m_afterTestMethod = false;
22 private boolean m_beforeTest = false;
23 private boolean m_afterTest = false;
24 private boolean m_beforeSuite = false;
25 private boolean m_afterSuite = false;
27 private boolean m_alwaysRun = false;
28 private boolean m_inheritGroups = true;
[all …]
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/testing/
DTestFlags.java24 public Optional<Boolean> clearStateOnMddDisabled = Optional.absent();
25 public Optional<Boolean> mddDeleteGroupsRemovedAccounts = Optional.absent();
26 public Optional<Boolean> broadcastNewlyDownloadedGroups = Optional.absent();
27 public Optional<Boolean> logFileGroupsWithFilesMissing = Optional.absent();
28 public Optional<Boolean> deleteFileGroupsWithFilesMissing = Optional.absent();
29 public Optional<Boolean> dumpMddInfo = Optional.absent();
30 public Optional<Boolean> enableDebugUi = Optional.absent();
31 public Optional<Boolean> enableClientErrorLogging = Optional.absent();
33 public Optional<Boolean> testOnlyFileKeyVersion = Optional.absent();
34 public Optional<Boolean> enableCompressedFile = Optional.absent();
[all …]
/external/mesa3d/src/freedreno/registers/edp/
Dedp.xml23 <bitfield name="ENABLE" pos="0" type="boolean"/>
24 <bitfield name="RESET" pos="1" type="boolean"/>
28 <bitfield name="TRAIN_PATTERN_1" pos="0" type="boolean"/>
29 <bitfield name="TRAIN_PATTERN_2" pos="1" type="boolean"/>
30 <bitfield name="TRAIN_PATTERN_3" pos="2" type="boolean"/>
31 <bitfield name="SYMBOL_ERR_RATE_MEAS" pos="3" type="boolean"/>
32 <bitfield name="PRBS7" pos="4" type="boolean"/>
33 <bitfield name="CUSTOM_80_BIT_PATTERN" pos="5" type="boolean"/>
34 <bitfield name="SEND_VIDEO" pos="6" type="boolean"/>
35 <bitfield name="PUSH_IDLE" pos="7" type="boolean"/>
[all …]
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB21283374.output3 boolean flagA,
4 boolean flagB,
5 boolean flagC,
6 boolean flagD,
7 boolean flagE,
8 boolean flagF,
9 boolean flagG,
10 boolean flagH,
11 boolean flagI,
12 boolean flagJ,
[all …]
DB21283374.input2boolean flagA, boolean flagB, boolean flagC, boolean flagD, boolean flagE, boolean flagF, boolean
6 /*flagA=*/Boolean.TRUE,
7 /*flagB=*/Boolean.FALSE,
8 /*flagC=*/Boolean.FALSE,
9 /*flagD=*/Boolean.FALSE,
10 /*flagE=*/Boolean.FALSE,
11 /*flagF=*/Boolean.FALSE,
12 /*flagG=*/Boolean.FALSE,
13 /*flagH=*/Boolean.FALSE,
14 /*flagI=*/Boolean.FALSE,
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DCapabilities.java33 public boolean canWatchFieldModification = false;
35 public boolean canWatchFieldAccess = false;
37 public boolean canGetBytecodes = false;
39 public boolean canGetSyntheticAttribute = false;
41 public boolean canGetOwnedMonitorInfo = false;
43 public boolean canGetCurrentContendedMonitor = false;
45 public boolean canGetMonitorInfo = false;
47 public boolean canRedefineClasses = false;
49 public boolean canAddMethod = false;
51 public boolean canUnrestrictedlyRedefineClasses = false;
[all …]
/external/selinux/libsepol/src/
Dboolean_record.c9 /* This boolean's name */
17 /* This boolean's name */
29 ERR(handle, "out of memory, " "could not create boolean key"); in sepol_bool_key_create()
35 ERR(handle, "out of memory, " "could not create boolean key"); in sepol_bool_key_create()
53 const sepol_bool_t * boolean, in sepol_bool_key_extract() argument
57 if (sepol_bool_key_create(handle, boolean->name, key_ptr) < 0) { in sepol_bool_key_extract()
58 ERR(handle, "could not extract key from boolean %s", in sepol_bool_key_extract()
59 boolean->name); in sepol_bool_key_extract()
74 int sepol_bool_compare(const sepol_bool_t * boolean, in sepol_bool_compare() argument
78 return strcmp(boolean->name, key->name); in sepol_bool_compare()
[all …]
/external/testng/src/main/java/org/testng/internal/
DConfigurationMethod.java33 private final boolean m_isBeforeSuiteConfiguration;
34 private final boolean m_isAfterSuiteConfiguration;
36 private final boolean m_isBeforeTestConfiguration;
37 private final boolean m_isAfterTestConfiguration;
39 private final boolean m_isBeforeClassConfiguration;
40 private final boolean m_isAfterClassConfiguration;
42 private final boolean m_isBeforeMethodConfiguration;
43 private final boolean m_isAfterMethodConfiguration;
45 private boolean m_inheritGroupsFromTestClass = false;
49 boolean isBeforeSuite, in ConfigurationMethod()
[all …]
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/
DMember.java26 private boolean payload;
28 private boolean streaming;
30 private boolean requiresLength;
36 private boolean flattened;
40 private boolean idempotencyToken;
42 private boolean deprecated;
46 private boolean jsonvalue;
50 private boolean eventpayload;
52 private boolean eventheader;
54 private boolean endpointdiscoveryid;
[all …]
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DStorageVolumeBuilder.java21 private boolean primary = true;
22 private boolean removable = false;
23 private boolean emulated = false;
25 private boolean externallyManaged = false;
26 private boolean allowMassStorage = false;
48 public StorageVolumeBuilder setIsPrimary(boolean isPrimary) { in setIsPrimary()
53 public StorageVolumeBuilder setIsRemovable(boolean isRemovable) { in setIsRemovable()
58 public StorageVolumeBuilder setIsEmulated(boolean isEmulated) { in setIsEmulated()
68 public StorageVolumeBuilder setExternallyManaged(boolean externallyManaged) { in setExternallyManaged()
73 public StorageVolumeBuilder setAllowMassStorage(boolean allowMassStorage) { in setAllowMassStorage()
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/
DFlags.java28 default boolean clearStateOnMddDisabled() { in clearStateOnMddDisabled()
32 default boolean mddDeleteGroupsRemovedAccounts() { in mddDeleteGroupsRemovedAccounts()
36 default boolean broadcastNewlyDownloadedGroups() { in broadcastNewlyDownloadedGroups()
40 default boolean logFileGroupsWithFilesMissing() { in logFileGroupsWithFilesMissing()
44 default boolean deleteFileGroupsWithFilesMissing() { in deleteFileGroupsWithFilesMissing()
48 default boolean dumpMddInfo() { in dumpMddInfo()
52 default boolean enableDebugUi() { in enableDebugUi()
56 default boolean enableClientErrorLogging() { in enableClientErrorLogging()
64 default boolean testOnlyFileKeyVersion() { in testOnlyFileKeyVersion()
68 default boolean enableCompressedFile() { in enableCompressedFile()
[all …]
/external/jsr330/tck/org/atinject/tck/auto/
DTire.java38 boolean constructorInjected;
40 protected boolean superPrivateMethodInjected;
41 protected boolean superPackagePrivateMethodInjected;
42 protected boolean superProtectedMethodInjected;
43 protected boolean superPublicMethodInjected;
44 protected boolean subPrivateMethodInjected;
45 protected boolean subPackagePrivateMethodInjected;
46 protected boolean subProtectedMethodInjected;
47 protected boolean subPublicMethodInjected;
49 protected boolean superPrivateMethodForOverrideInjected;
[all …]

12345678910>>...710