OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:boolean
(Results
126 - 150
of
13540
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/system/media/mca/filterfw/java/android/filterfw/core/
GLEnvironment.java
65
public
boolean
isActive() {
69
public
boolean
isContextActive() {
73
public static
boolean
isAnyContextActive() {
145
private native
boolean
nativeInitWithNewContext();
147
private native
boolean
nativeInitWithCurrentContext();
149
private native
boolean
nativeIsActive();
151
private native
boolean
nativeIsContextActive();
153
private static native
boolean
nativeIsAnyContextActive();
155
private native
boolean
nativeActivate();
157
private native
boolean
nativeDeactivate()
[
all
...]
/external/v8/test/mjsunit/
double-equals.js
65
assertFalse(new
Boolean
(true) == new
Boolean
(true), "new
Boolean
(true) == new
Boolean
(true)");
66
assertFalse(new
Boolean
(false) == new
Boolean
(false), "new
Boolean
(false) == new
Boolean
(false)");
75
var x = new
Boolean
(true);
81
var x = new
Boolean
(false)
[
all
...]
/external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java
84
boolean
isPublic = "public".equals(visibility);
85
boolean
isProtected = "protected".equals(visibility);
86
boolean
isPrivate = "private".equals(visibility);
87
boolean
isPackagePrivate = !isPublic && !isPrivate && !isProtected;
88
boolean
isStatic =
Boolean
.valueOf(attributes.getValue("static"));
89
boolean
isInterface = qName.equals("interface");
90
boolean
isAbstract =
Boolean
.valueOf(attributes.getValue("abstract"));
91
boolean
isOrdinaryClass = qName.equals("class")
[
all
...]
/cts/tools/vm-tests/src/dot/junit/opcodes/iget_boolean/d/
T_iget_boolean_1.java
20
public
boolean
i1 = true;
21
protected
boolean
p1 = true;
22
private
boolean
pvt1 = true;
24
public
boolean
run(){
/cts/tools/vm-tests/src/dot/junit/opcodes/iput_boolean/d/
T_iput_boolean_1.java
20
public
boolean
st_i1;
21
protected
boolean
st_p1;
22
private
boolean
st_pvt1;
28
public
boolean
getPvtField()
/cts/tools/vm-tests/src/dot/junit/opcodes/sget_boolean/d/
T_sget_boolean_1.java
20
public static
boolean
i1 = true;
21
protected static
boolean
p1 = true;
22
private static
boolean
pvt1 = true;
24
public
boolean
run(){
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_boolean/d/
T_sput_boolean_1.java
20
public static
boolean
st_i1;
21
protected static
boolean
st_p1;
22
private static
boolean
st_pvt1;
28
public static
boolean
getPvtField()
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_boolean/d/
T_iget_boolean_1.java
20
public
boolean
i1 = true;
21
protected
boolean
p1 = true;
22
private
boolean
pvt1 = true;
24
public
boolean
run(){
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_boolean/d/
T_iput_boolean_1.java
20
public
boolean
st_i1;
21
protected
boolean
st_p1;
22
private
boolean
st_pvt1;
28
public
boolean
getPvtField()
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_boolean/d/
T_sget_boolean_1.java
20
public static
boolean
i1 = true;
21
protected static
boolean
p1 = true;
22
private static
boolean
pvt1 = true;
24
public
boolean
run(){
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_boolean/d/
T_sput_boolean_1.java
20
public static
boolean
st_i1;
21
protected static
boolean
st_p1;
22
private static
boolean
st_pvt1;
28
public static
boolean
getPvtField()
/dalvik/tests/023-many-interfaces/src/
Main.java
3
boolean
timing = (args.length >= 1) && args[0].equals("--timing");
/dalvik/tests/076-boolean-put/
info.txt
2
boolean
field. The code as generated should not pass the verifier, so the
/device/google/accessory/demokit/app/res/values/
attrs.xml
4
<attr name="vertical" format="
boolean
" />
/external/apache-xml/src/main/java/org/apache/xpath/objects/
XBoolean.java
24
* This class represents an XPath
boolean
object, and is capable of
25
* converting the
boolean
to other types, such as a string.
33
* A true
boolean
object so we don't have to keep creating them.
39
* A true
boolean
object so we don't have to keep creating them.
46
private final
boolean
m_val;
51
* @param b Value of the
boolean
object
53
public XBoolean(
boolean
b)
64
* @param b Value of the
boolean
object
66
public XBoolean(
Boolean
b)
90
* @return type string "#
BOOLEAN
"
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObjectParser.java
10
public DEREncodable getObjectParser(int tag,
boolean
isExplicit)
BERTaggedObjectParser.java
9
private
boolean
_constructed;
25
boolean
constructed,
34
public
boolean
isConstructed()
46
boolean
isExplicit)
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DSAKeyParameters.java
9
boolean
isPrivate,
ECKeyParameters.java
9
boolean
isPrivate,
/external/clang/test/Rewriter/
rewrite-extern-c.mm
7
typedef unsigned char
Boolean
;
/external/easymock/src/org/easymock/internal/
IMocksBehavior.java
25
void checkOrder(
boolean
value);
27
void makeThreadSafe(
boolean
isThreadSafe);
29
void shouldBeUsedInOneThread(
boolean
shouldBeUsedInOneThread);
34
boolean
isThreadSafe();
/external/nist-sip/java/javax/sip/address/
SipURI.java
9
boolean
isSecure();
10
void setSecure(
boolean
secure);
21
boolean
hasLrParam();
34
boolean
hasTransport();
/external/nist-sip/java/javax/sip/header/
FromHeader.java
10
boolean
hasTag();
Header.java
9
boolean
equals(Object obj);
MaxForwardsHeader.java
13
boolean
hasReachedZero();
Completed in 704 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>