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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadset.aidl 29 boolean connectHeadset(in BluetoothDevice device);
31 boolean isConnected(in BluetoothDevice device);
32 boolean startVoiceRecognition();
33 boolean stopVoiceRecognition();
34 boolean setPriority(in BluetoothDevice device, int priority);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaPlayerApiTest.java 37 private boolean duratoinWithinTolerence = false;
39 private boolean isWMAEnable = false;
40 private boolean isWMVEnable = false;
55 public boolean verifyDuration(int duration, int expectedDuration){
115 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MP3CBR);
121 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MP3VBR);
127 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.MIDI);
134 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.WMA9);
141 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.AMR);
147 boolean currentPosition = CodecTest.getCurrentPosition(MediaNames.OGG);
    [all...]
  /dalvik/dx/tests/090-dex-unify-arrays/
Blort.java 24 static public Object test1(boolean b) {
28 static public int test2(boolean b) {
33 static public int test3(boolean b) {
38 static public int test4(boolean b) {
39 Object o = b ? (Object) new long[1] : new boolean[1];
43 static public int test5(boolean b) {
48 static public int test6(boolean b) {
49 Object o = b ? (Object) new byte[1] : new boolean[1];
53 static public Object test7(boolean b) {
57 static public Object[] test8(boolean b)
    [all...]
  /external/clearsilver/cs/
test_numbers.cs 11 CORRECT: -1 is boolean true
13 ERROR : -1 should be boolean true
17 CORRECT: #-1 is boolean true
19 ERROR : #-1 should be boolean true
23 ERROR: 0 should be boolean false
25 CORRECT: 0 is boolean false
29 ERROR: 00 should be boolean false
31 CORRECT: 00 is boolean false
41 CORRECT: 0x15 is boolean true
43 ERROR: 0x15 should be boolean tru
    [all...]
  /external/proguard/src/proguard/gui/
KeepSpecificationsPanel.java 35 private final boolean markClasses;
36 private final boolean markConditionally;
37 private final boolean allowShrinking;
38 private final boolean allowOptimization;
39 private final boolean allowObfuscation;
43 boolean markClasses,
44 boolean markConditionally,
45 boolean allowShrinking,
46 boolean allowOptimization,
47 boolean allowObfuscation
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1-3.js 24 ECMA Section: 15.6.3.1 Boolean.prototype
26 Description: The initial valu eof Boolean.prototype is the built-in
27 Boolean prototype object (15.6.4).
32 This tests the DontDelete property of Boolean.prototype
41 var TITLE = "Boolean.prototype"
52 "delete( Boolean.prototype); Boolean.prototype",
53 Boolean.prototype,
54 eval("delete( Boolean.prototype); Boolean.prototype") )
    [all...]
15.6.4.3-2.js 24 ECMA Section: 15.6.4.3 Boolean.prototype.valueOf()
25 Description: Returns this boolean value.
28 a runtime error if its this value is not a Boolean
39 var TITLE = "Boolean.prototype.valueOf()";
50 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()", false, eval("valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()") );
51 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()", true, eval("valof=Boolean.prototype.valueOf; x=new Boolean(tr (…)
    [all...]
  /external/webkit/WebCore/dom/
MouseEvent.idl 28 readonly attribute boolean ctrlKey;
29 readonly attribute boolean shiftKey;
30 readonly attribute boolean altKey;
31 readonly attribute boolean metaKey;
36 in boolean canBubble,
37 in boolean cancelable,
44 in boolean ctrlKey,
45 in boolean altKey,
46 in boolean shiftKey,
47 in boolean metaKey,
    [all...]
WheelEvent.idl 29 readonly attribute boolean ctrlKey;
30 readonly attribute boolean shiftKey;
31 readonly attribute boolean altKey;
32 readonly attribute boolean metaKey;
44 readonly attribute boolean isHorizontal;
55 in boolean ctrlKey,
56 in boolean altKey,
57 in boolean shiftKey,
58 in boolean metaKey);
  /external/webkit/WebKit/win/Interfaces/
DOMEvents.idl 102 //readonly attribute boolean bubbles;
105 //readonly attribute boolean cancelable;
118 // in boolean canBubbleArg,
119 // in boolean cancelableArg);
133 // in boolean useCapture);
138 // in boolean useCapture);
141 //boolean dispatchEvent(in Event event)
178 //readonly attribute boolean ctrlKey;
181 //readonly attribute boolean shiftKey;
184 //readonly attribute boolean altKey
    [all...]
  /cts/tests/tests/jni/src/android/jni/cts/
StaticNonce.java 39 public static native boolean returnBoolean();
54 public static native boolean takeBoolean(boolean v);
55 public static native boolean takeByte(byte v);
56 public static native boolean takeShort(short v);
57 public static native boolean takeChar(char v);
58 public static native boolean takeInt(int v);
59 public static native boolean takeLong(long v);
60 public static native boolean takeFloat(float v);
61 public static native boolean takeDouble(double v)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
IssuingDistributionPoint.java 36 * onlyContainsUserCerts [1] BOOLEAN DEFAULT FALSE,
37 * onlyContainsCACerts [2] BOOLEAN DEFAULT FALSE,
39 * indirectCRL [4] BOOLEAN DEFAULT FALSE,
40 * onlyContainsAttributeCerts [5] BOOLEAN DEFAULT FALSE
49 private boolean onlyContainsUserCerts = false;
50 private boolean onlyContainsCACerts = false;
52 private boolean indirectCRL = false;
53 private boolean onlyContainsAttributeCerts = false;
79 public void setOnlyContainsUserCerts(boolean onlyContainsUserCerts) {
86 public void setOnlyContainsCACerts(boolean onlyContainsCACerts)
    [all...]
  /dalvik/tests/076-boolean-put/src/
Main.java 18 * Test access to private boolean fields.
20 * Accessing private boolean fields from an inner class causes the compiler
21 * to generate an accessor method that performs the boolean operation.
23 * not a boolean, which makes the verifier upset when the result of the
24 * operation is written back to a boolean field.
27 private boolean mInstance;
28 private static boolean mStatic;
  /frameworks/base/awt/java/awt/
ComponentBehavior.java 35 void setVisible(boolean b);
41 boolean isLightweight();
45 boolean isOpaque();
47 boolean isDisplayable();
49 void setEnabled(boolean value);
55 boolean setFocus(boolean focus, Component opposite);
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
MockImage.java 32 boolean rotateAsNeeded) {
37 boolean rotateAsNeeded, boolean useNative) {
85 public boolean isDrm() {
89 public boolean isReadonly() {
97 public boolean rotateImageBy(int degrees) {
104 public Bitmap thumbBitmap(boolean rotateAsNeeded) {
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImage.java 32 boolean rotateAsNeeded) {
37 boolean rotateAsNeeded, boolean useNative) {
85 public boolean isDrm() {
89 public boolean isReadonly() {
97 public boolean rotateImageBy(int degrees) {
104 public Bitmap thumbBitmap(boolean rotateAsNeeded) {
  /cts/tests/src/android/content/cts/
MockContextWrapperService.java 33 private static boolean mHadCalledOnBind = false;
34 private static boolean mHadCalledOnUnbind = false;
35 private static boolean mHadCalledOnStart = false;
36 private static boolean mHadCalledOnDestory = false;
59 public boolean onUnbind(Intent intent) {
82 public static boolean hadCalledOnBind() {
86 public static boolean hadCalledOnUnbind() {
90 public static boolean hadCalledOnStart() {
94 public static boolean hadCalledOnDestory() {
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature2.java 37 public static boolean runEngineInitVerify = false;
38 public static boolean runEngineInitSign = false;
39 public static boolean runEngineUpdate1 = false;
40 public static boolean runEngineUpdate2 = false;
41 public static boolean runEngineSign = false;
42 public static boolean runEngineVerify = false;
43 public static boolean runEngineSetParameter = false;
44 public static boolean runEngineGetParameter = false;
70 protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 44 boolean gotN = false;
45 boolean gotA = false;
46 boolean gotWeird = false;
66 boolean gotN = false;
67 boolean gotA = false;
68 boolean gotWeird = false;
88 boolean caught = false;
89 boolean lly = false;
90 boolean second = false;
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodManager.aidl 40 boolean initial, boolean needResult);
42 boolean showSoftInput(in IInputMethodClient client, int flags,
44 boolean hideSoftInput(in IInputMethodClient client, int flags,
47 boolean viewHasFocus, boolean isTextEditor,
48 int softInputMode, boolean first, int windowFlags);
56 boolean setInputMethodEnabled(String id, boolean enabled);
BaseIWindow.java 37 Rect visibleInsets, boolean reportDraw, Configuration newConfig) {
53 public boolean onDispatchPointer(MotionEvent event, long eventTime,
54 boolean callWhenDone) {
60 boolean callWhenDone) {
76 public boolean onDispatchTrackball(MotionEvent event, long eventTime,
77 boolean callWhenDone) {
83 boolean callWhenDone) {
99 public void dispatchAppVisibility(boolean visible) {
105 public void windowFocusChanged(boolean hasFocus, boolean touchEnabled)
    [all...]
  /external/dbus/test/data/invalid-messages/
array-with-mixed-types.message 43 ## array of boolean
46 BOOLEAN false
47 BOOLEAN true
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 33 private boolean isInstantiated = false;
34 private boolean isInstanceofed = false;
35 private boolean isDotClassed = false;
36 private boolean isCaught = false;
37 private boolean containsPackageVisibleMembers = false;
38 private boolean invokesPackageVisibleMembers = false;
48 public boolean isInstantiated()
60 public boolean isInstanceofed()
72 public boolean isDotClassed()
84 public boolean isCaught(
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
AccountSyncAdapter.java 25 public boolean parse(InputStream is) throws IOException {
30 public boolean sendLocalChanges(Serializer s) throws IOException {
35 public boolean isSyncable() {
  /frameworks/base/core/java/android/database/
CursorWrapper.java 48 public boolean isClosed() {
56 public boolean commitUpdates() {
64 public boolean commitUpdates(
81 public boolean deleteRow() {
85 public boolean moveToFirst() {
146 public boolean getWantsAllOnMoveCalls() {
154 public boolean hasUpdates() {
158 public boolean isAfterLast() {
162 public boolean isBeforeFirst() {
166 public boolean isFirst()
    [all...]

Completed in 220 milliseconds

1 2 34 5 6 7 8 91011>>