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

<<11121314151617181920>>

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1Null.java 22 public boolean equals(
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
SignerWithRecovery.java 15 public boolean hasFullMessage();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DHPrivateKeyParameters.java 24 public boolean equals(
DHPublicKeyParameters.java 24 public boolean equals(
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
AccessController2Test.java 37 PrivilegedAction<Boolean> privAction = new PrivilegedAction<Boolean>() {
38 public Boolean run() {
41 return new Boolean(false);
43 return new Boolean(true);
48 PrivilegedExceptionAction<Boolean> privExceptAction =
49 new PrivilegedExceptionAction<Boolean>() {
50 public Boolean run() {
53 return new Boolean(false);
55 return new Boolean(true)
    [all...]
  /dalvik/libcore/sql/src/main/java/SQLite/
BusyHandler.java 19 public boolean busy(String table, int count);
  /dalvik/libcore/support/src/test/java/tests/resources/
hyts_security.jar 
  /dalvik/libcore/support/src/test/java/tests/support/
Support_TimeZone.java 34 boolean useDaylightTime;
36 public Support_TimeZone(int rawOffset, boolean useDaylightTime) {
51 public boolean inDaylightTime(java.util.Date p1) {
66 public boolean useDaylightTime() {
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/spi/
FormatConversionProvider.java 35 public boolean isConversionSupported(AudioFormat.Encoding targetEncoding,
49 public boolean isConversionSupported(AudioFormat targetFormat,
63 public boolean isSourceEncodingSupported(AudioFormat.Encoding sourceEncoding) {
75 public boolean isTargetEncodingSupported(AudioFormat.Encoding targetEncoding) {
  /external/guava/src/com/google/common/collect/
EmptyImmutableMap.java 45 @Override public boolean isEmpty() {
49 @Override public boolean containsKey(Object key) {
53 @Override public boolean containsValue(Object value) {
69 @Override public boolean equals(@Nullable Object object) {
  /external/guava/src/com/google/common/util/concurrent/
ForwardingFuture.java 42 public boolean cancel(boolean mayInterruptIfRunning) {
47 public boolean isCancelled() {
52 public boolean isDone() {
  /external/proguard/src/proguard/
ClassPath.java 39 public boolean hasOutput()
65 public boolean add(ClassPathEntry classPathEntry)
70 public boolean addAll(ClassPath classPath)
85 public boolean isEmpty()
  /external/v8/test/mjsunit/
tobool.js 29 assertTrue(!!new Boolean(true), "new Boolean(true)");
30 assertTrue(!!new Boolean(false), "new Boolean(false)");
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1-5.js 24 ECMA Section: 15.6.3.1 Boolean.prototype
33 var TITLE = "Boolean.prototype"
45 array[item++] = new TestCase( SECTION, "Function.prototype == Boolean.__proto__", true, Function.prototype == Boolean.__proto__ );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.8.3.js 60 array[item++] = new TestCase( SECTION, "new Boolean(true) <= new Boolean(true)", true, new Boolean(true) <= new Boolean(true) );
61 array[item++] = new TestCase( SECTION, "new Boolean(true) <= new Boolean(false)", false, new Boolean(true) <= new Boolean(false) );
62 array[item++] = new TestCase( SECTION, "new Boolean(false) <= new Boolean(true)", true, new Boolean(false) <= new Boolean(true) )
    [all...]
11.8.4.js 61 array[item++] = new TestCase( SECTION, "new Boolean(true) >= new Boolean(true)", true, new Boolean(true) >= new Boolean(true) );
62 array[item++] = new TestCase( SECTION, "new Boolean(true) >= new Boolean(false)", true, new Boolean(true) >= new Boolean(false) );
63 array[item++] = new TestCase( SECTION, "new Boolean(false) >= new Boolean(true)", false, new Boolean(false) >= new Boolean(true) )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-5.js 73 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)") );
74 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)") );
75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)", 0x0075, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)") );
76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)", 0x0065, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)") );
77 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-003-n.js 80 InstanceOf( true, Boolean, false );
81 // InstanceOf( new Boolean(false), Boolean, true );
86 // InstanceOf( new Boolean(true), false, false );
instanceof-004-n.js 80 InstanceOf( true, Boolean, false );
81 InstanceOf( new Boolean(false), Boolean, true );
85 InstanceOf( new Boolean(true), false, false );
  /external/webkit/WebCore/dom/
MessageEvent.idl 40 [Custom] void initMessageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in SerializedScriptValue dataArg, in DOMString originArg, in DOMString lastEventIdArg, in DOMWindow sourceArg, in Array messagePorts);
45 void initMessageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in SerializedScriptValue dataArg, in DOMString originArg, in DOMString lastEventIdArg, in DOMWindow sourceArg, in MessagePort messagePort);
  /external/webkit/WebCore/manual-tests/
liveconnect-applet-get-boolean.html 4 This tests retrieving a boolean value from a Java class using javascript. It tests the return value. The return value should be true.<br>
  /external/webkit/WebCore/manual-tests/resources/
CheckerApplet.class 
  /external/webkit/WebCore/storage/
StorageEvent.idl 36 void initStorageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in [ConvertNullToNullString] DOMString oldValueArg, in [ConvertNullToNullString] DOMString newValueArg, in DOMString uriArg, in Storage storageAreaArg);
39 // void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString uriArg, in Storage storageAreaArg);
  /external/webkit/WebCore/websockets/
WebSocket.idl 54 [Custom] boolean send(in DOMString data)
61 in boolean useCapture);
64 in boolean useCapture);
65 boolean dispatchEvent(in Event evt)
  /frameworks/base/awt/java/awt/
ImageCapabilities.java 34 private final boolean accelerated;
43 public ImageCapabilities(boolean accelerated) {
64 public boolean isAccelerated() {
75 public boolean isTrueVolatile() {

Completed in 174 milliseconds

<<11121314151617181920>>