/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
Voicemail.java | 36 public boolean hasId(); 41 public boolean hasNumber(); 46 public boolean hasTimestampMillis(); 51 public boolean hasDuration(); 59 public boolean hasSourcePackage(); 71 public boolean hasSourceData(); 80 public boolean hasUri(); 87 public boolean isRead(); 89 public boolean hasRead(); 94 public boolean hasContent() [all...] |
/external/webkit/Source/WebCore/dom/ |
Event.idl | 59 readonly attribute boolean bubbles; 60 readonly attribute boolean cancelable; 66 in boolean canBubbleArg, 67 in boolean cancelableArg); 70 readonly attribute boolean defaultPrevented; 75 attribute boolean returnValue; 76 attribute boolean cancelBubble; 84 boolean isMutationEvent(); 85 boolean isMouseEvent(); 86 boolean isUIEvent() [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLMediaElement.idl | 55 readonly attribute boolean seeking; 62 readonly attribute boolean paused; 67 readonly attribute boolean ended; 68 attribute [Reflect] boolean autoplay; 69 attribute [Reflect] boolean loop; 74 attribute boolean controls; 77 attribute boolean muted; 80 attribute boolean webkitPreservesPitch; 82 readonly attribute boolean webkitHasClosedCaptions; 83 attribute boolean webkitClosedCaptionsVisible [all...] |
/frameworks/base/core/java/android/app/admin/ |
IDevicePolicyManager.aidl | 60 boolean isActivePasswordSufficient(); 66 boolean resetPassword(String password, int flags); 78 int setStorageEncryption(in ComponentName who, boolean encrypt); 79 boolean getStorageEncryption(in ComponentName who); 82 void setCameraDisabled(in ComponentName who, boolean disabled); 83 boolean getCameraDisabled(in ComponentName who); 85 void setActiveAdmin(in ComponentName policyReceiver, boolean refreshing); 86 boolean isAdminActive(in ComponentName policyReceiver); 88 boolean packageHasActiveAdmins(String packageName); 91 boolean hasGrantedPolicy(in ComponentName policyReceiver, int usesPolicy) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Boolean.java | 29 * This class represents ASN.1 Boolean type. 39 * Constructs ASN.1 Boolean type 42 * when there is a need to create a custom ASN.1 Boolean type. 51 * Returns ASN.1 Boolean type default implementation 54 * that is represented as Boolean object. 56 * @return ASN.1 Boolean type default implementation 72 * Extracts Boolean object from BER input stream. 75 * @return java.lang.Boolean object 79 return Boolean.FALSE; 81 return Boolean.TRUE [all...] |
/packages/apps/Gallery/src/com/android/camera/gallery/ |
IImage.java | 41 int maxNumberOfPixels, boolean rotateAsNeeded, boolean useNative); 43 public static final boolean ROTATE_AS_NEEDED = true; 44 public static final boolean NO_ROTATE = false; 45 public static final boolean USE_NATIVE = true; 46 public static final boolean NO_NATIVE = false; 68 public abstract boolean isReadonly(); 69 public abstract boolean isDrm(); 72 public abstract Bitmap thumbBitmap(boolean rotateAsNeeded); 78 public abstract boolean rotateImageBy(int degrees) [all...] |
/frameworks/base/core/java/android/view/ |
IWindowManager.aidl | 50 boolean startViewServer(int port); // Transaction #1 51 boolean stopViewServer(); // Transaction #2 52 boolean isViewServerRunning(); // Transaction #3 56 boolean inputMethodClientHasFocus(IInputMethodClient client); 66 boolean canStatusBarHide(); 72 boolean injectKeyEvent(in KeyEvent ev, boolean sync); 73 boolean injectPointerEvent(in MotionEvent ev, boolean sync); 74 boolean injectTrackballEvent(in MotionEvent ev, boolean sync) [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
ExplicitTest.java | 59 // Boolean = false 62 // [UNIVERSAL 5] Boolean 64 Boolean.FALSE, 69 // [APPLICATION 5] Boolean 71 Boolean.FALSE, 76 // [CONTEXT-SPECIFIC 5] Boolean 78 Boolean.FALSE, 83 // [5] Boolean (default = CONTEXT-SPECIFIC) 84 new Object[] { Boolean.FALSE, 88 // [PRIVATE 5] Boolean [all...] |
ImplicitTest.java | 56 // Boolean = false 59 // [UNIVERSAL 5] Boolean 61 Boolean.FALSE, 66 // [APPLICATION 5] Boolean 68 Boolean.FALSE, 73 // [CONTEXT-SPECIFIC 5] Boolean 75 Boolean.FALSE, 80 // [5] Boolean (default = CONTEXT-SPECIFIC) 81 { Boolean.FALSE, new byte[] { (byte) 0x85, 0x01, 0x00 }, 84 // [PRIVATE 5] Boolean [all...] |
/development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/ |
NativeAudio.java | 37 static boolean isPlayingAsset = false; 38 static boolean isPlayingUri = false; 77 boolean enabled = false; 87 boolean created = false; 100 boolean created = false; 113 boolean created = false; 157 public static native boolean createAssetAudioPlayer(AssetManager assetManager, String filename); 158 public static native void setPlayingAssetAudioPlayer(boolean isPlaying); 159 public static native boolean createUriAudioPlayer(String uri); 160 public static native void setPlayingUriAudioPlayer(boolean isPlaying) [all...] |
/frameworks/base/core/java/android/database/ |
CursorWrapper.java | 48 public boolean isClosed() { 60 public boolean moveToFirst() { 121 public boolean getWantsAllOnMoveCalls() { 125 public boolean isAfterLast() { 129 public boolean isBeforeFirst() { 133 public boolean isFirst() { 137 public boolean isLast() { 145 public boolean isNull(int columnIndex) { 149 public boolean moveToLast() { 153 public boolean move(int offset) [all...] |
/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...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSocketImplWrapper.java | 34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException { 84 public void setSoLinger(boolean on, int linger) throws SocketException { 89 public void setTcpNoDelay(boolean on) throws SocketException { 94 public void setReuseAddress(boolean on) throws SocketException { 99 public void setKeepAlive(boolean on) throws SocketException { 125 public boolean getTcpNoDelay() throws SocketException { 130 public boolean getReuseAddress() throws SocketException { 135 public boolean getOOBInline() throws SocketException { 140 public boolean getKeepAlive() throws SocketException { 170 public boolean isConnected() [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/ |
ManifestData.java | 55 Boolean mDebuggable = null; 106 private final boolean mIsExported; 107 private boolean mHasAction = false; 108 private boolean mHasMainAction = false; 109 private boolean mHasLauncherCategory = false; 111 public Activity(String name, boolean exported) { 120 public boolean isExported() { 124 public boolean hasAction() { 128 public boolean isHomeActivity() { 132 void setHasAction(boolean hasAction) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/ |
SoftReferenceTest.java | 23 static Boolean bool; 35 bool = new Boolean(true); 37 assertTrue("Initialization failed.", ((Boolean) sr.get()) 40 boolean exception = false; 53 bool = new Boolean(true); 55 assertTrue("Initialization failed.", ((Boolean) sr.get()) 63 bool = new Boolean(false);
|
/external/doclava/src/com/google/doclava/ |
ParameterInfo.java | 24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, 49 boolean isVarArg() { 53 public void makeHDF(Data data, String base, boolean isLastVararg, HashSet<String> typeVariables) { 58 public static void makeHDF(Data data, String base, ParameterInfo[] params, boolean isVararg, 69 public boolean matchesDimension(String dimension, boolean varargs) { 79 boolean mIsVarArg;
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.3.1-1.js | 24 ECMA Section: 15.6.3 Boolean.prototype 26 Description: The initial value of Boolean.prototype is the built-in 27 Boolean prototype object (15.6.4). 32 This tests the DontEnum property of Boolean.prototype 41 var TITLE = "Boolean.prototype"; 54 "var str='';for ( p in Boolean ) { str += p } str;", 56 eval("var str='';for ( p in Boolean ) { str += p } str;") );
|
15.6.3.1-2.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)", 54 delete( Boolean.prototype) );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.6.3-2.js | 25 Description: Check the Boolean Object 61 "Boolean.prototype.foo = 34; for ( j in Boolean ) Boolean[j]", 63 eval("Boolean.prototype.foo = 34; for ( j in Boolean ) Boolean[j] ") );
|
/frameworks/base/core/java/android/accounts/ |
IAccountManager.aidl | 36 boolean addAccount(in Account account, String password, in Bundle extras); 46 String authTokenType, boolean notifyOnAuthFailure, boolean expectActivityLaunch, 49 String authTokenType, in String[] requiredFeatures, boolean expectActivityLaunch, 52 String authTokenType, boolean expectActivityLaunch, in Bundle options); 54 boolean expectActivityLaunch); 56 in Bundle options, boolean expectActivityLaunch);
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
MockFolder.java | 29 public void close(boolean expunge) { 38 public boolean canCreate(FolderType type) { 43 public boolean create(FolderType type) { 48 public void delete(boolean recurse) { 52 public boolean exists() { 106 public boolean isOpen() { 115 public void setFlags(Message[] messages, Flag[] flags, boolean value) {
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
ElementTest.java | 36 public boolean getSystemCaptions(); 37 public void setSystemCaptions(boolean systemCaptions) 52 public boolean getSystemRequired(); 57 public boolean getSystemScreenSize(); 62 public boolean getSystemScreenDepth(); 78 public boolean getSystemAudioDesc(); 79 public void setSystemAudioDesc(boolean systemAudioDesc)
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
LocalBluetoothProfile.java | 31 boolean isConnectable(); 36 boolean isAutoConnectable(); 38 boolean connect(BluetoothDevice device); 40 boolean disconnect(BluetoothDevice device); 44 boolean isPreferred(BluetoothDevice device); 48 void setPreferred(BluetoothDevice device, boolean preferred); 50 boolean isProfileReady();
|
OppProfile.java | 35 public boolean isConnectable() { 39 public boolean isAutoConnectable() { 43 public boolean connect(BluetoothDevice device) { 47 public boolean disconnect(BluetoothDevice device) { 55 public boolean isPreferred(BluetoothDevice device) { 63 public void setPreferred(BluetoothDevice device, boolean preferred) { 66 public boolean isProfileReady() {
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
AccessibilityNodeInfoCompat.java | 43 public boolean performAction(Object info, int action); 51 public boolean isCheckable(Object info); 52 public void setCheckable(Object info, boolean checkable); 53 public boolean isChecked(Object info); 54 public void setChecked(Object info, boolean checked); 55 public boolean isFocusable(Object info); 56 public void setFocusable(Object info, boolean focusable); 57 public boolean isFocused(Object info); 58 public void setFocused(Object info, boolean focused); 59 public boolean isSelected(Object info) [all...] |