HomeSort by relevance Sort by last modified time
    Searched full:boolean (Results 101 - 125 of 9379) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 64 public boolean isNull(int columnIndex) {
104 public boolean isAfterLast() {
108 public boolean isBeforeFirst() {
112 public boolean isFirst() {
116 public boolean isLast() {
120 public boolean move(int offset) {
124 public boolean moveToFirst() {
128 public boolean moveToLast() {
132 public boolean moveToNext() {
136 public boolean moveToPrevious()
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
FileMock.java 55 * <li>getContents(boolean force)</li>
82 public InputStream getContents(boolean force) throws CoreException {
94 public void appendContents(InputStream source, boolean force, boolean keepHistory,
99 public void create(InputStream source, boolean force, IProgressMonitor monitor)
119 public void delete(boolean force, boolean keepHistory, IProgressMonitor monitor)
128 public String getCharset(boolean checkImplicit) throws CoreException {
152 public boolean isReadOnly() {
156 public void move(IPath destination, boolean force, boolean keepHistory,
    [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()
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
X509Extension.java 11 boolean critical;
23 boolean critical,
30 public boolean isCritical()
51 public boolean equals(
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DSAKeyParameters.java 9 boolean isPrivate,
  /dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
TrustManagerFactorySpiImpl.java 12 private static boolean isengineInitCalled = false;
13 private static boolean isEngineGetTrustManagersCalled = false;
37 public boolean isEngineGetTrustManagersCalled() {
41 public boolean isEngineInitCalled() {
  /dalvik/libcore/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...]
  /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
  /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/iptables/extensions/
libip6t_condition.man 4 Match on boolean value stored in /proc/net/ip6t_condition/filename file
libipt_condition.man 4 Match on boolean value stored in /proc/net/ipt_condition/filename file
  /external/proguard/src/proguard/
KeepClassSpecification.java 30 public final boolean markClasses;
31 public final boolean markConditionally;
32 public final boolean allowShrinking;
33 public final boolean allowOptimization;
34 public final boolean allowObfuscation;
50 public KeepClassSpecification(boolean markClasses,
51 boolean markConditionally,
52 boolean allowShrinking,
53 boolean allowOptimization,
54 boolean allowObfuscation
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-2.js 24 ECMA Section: 15.6.4.2 Boolean.prototype.toString()
25 Description: Returns this boolean value.
28 a runtime error if its this value is not a Boolean
39 var TITLE = "Boolean.prototype.toString()"
51 "tostr=Boolean.prototype.toString; x=new Boolean(); x.toString=tostr;x.toString()",
53 "tostr=Boolean.prototype.toString; x=new Boolean(); x.toString=tostr;x.toString()" );
55 "tostr=Boolean.prototype.toString; x=new Boolean(true); x.toString=tostr; x.toString()"
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-011.js 19 var BOOLEAN = true;
26 var OBJECT = new BOOLEAN();
34 "BOOLEAN = true; result = new BOOLEAN()" +
  /external/webkit/WebCore/manual-tests/resources/
CheckerApplet.java 8 public boolean checkVersion()
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBoolean.java 22 * Constants of type {@code boolean}.
36 * @param value the {@code boolean} value
39 public static CstBoolean make(boolean value) {
63 * @param value the {@code boolean} value
65 private CstBoolean(boolean value) {
72 return getValue() ? "boolean{true}" : "boolean{false}";
77 return Type.BOOLEAN;
83 return "boolean";
92 * Gets the {@code boolean} value
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 41 private Map<String, Boolean> features = new HashMap<String, Boolean>();
44 public boolean getFeature(String name) throws SAXNotRecognizedException {
53 return Boolean.TRUE.equals(features.get(name));
57 public boolean isNamespaceAware() {
66 public boolean isValidating() {
89 public void setFeature(String name, boolean value) throws SAXNotRecognizedException {
99 features.put(name, Boolean.TRUE);
102 features.put(name, Boolean.FALSE);
107 public void setNamespaceAware(boolean value)
    [all...]
  /external/webkit/WebCore/html/
HTMLInputElement.idl 25 attribute boolean defaultChecked;
27 attribute boolean formNoValidate;
33 attribute boolean checked;
34 attribute boolean disabled;
35 attribute boolean autofocus;
43 attribute boolean multiple;
47 attribute boolean readOnly;
48 attribute boolean required;
71 readonly attribute boolean willValidate;
73 boolean checkValidity()
    [all...]
HTMLMediaElement.idl 42 attribute boolean autobuffer;
56 readonly attribute boolean seeking;
63 readonly attribute boolean paused;
68 readonly attribute boolean ended;
69 attribute boolean autoplay;
70 attribute boolean loop;
75 attribute boolean controls;
78 attribute boolean muted;
81 attribute boolean webkitPreservesPitch;
83 readonly attribute boolean webkitHasClosedCaptions
    [all...]
  /frameworks/base/location/java/com/android/internal/location/
PassiveProvider.java 41 private boolean mTracking;
51 public boolean requiresNetwork() {
55 public boolean requiresSatellite() {
59 public boolean requiresCell() {
63 public boolean hasMonetaryCost() {
67 public boolean supportsAltitude() {
71 public boolean supportsSpeed() {
75 public boolean supportsBearing() {
87 public boolean isEnabled() {
113 public void enableLocationTracking(boolean enable)
    [all...]

Completed in 205 milliseconds

1 2 3 45 6 7 8 91011>>