HomeSort by relevance Sort by last modified time
    Searched full:boolean (Results 226 - 250 of 13540) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/ics/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatIcs.java 100 public static boolean isCheckable(Object info) {
104 public static boolean isChecked(Object info) {
108 public static boolean isClickable(Object info) {
112 public static boolean isEnabled(Object info) {
116 public static boolean isFocusable(Object info) {
120 public static boolean isFocused(Object info) {
124 public static boolean isLongClickable(Object info) {
128 public static boolean isPassword(Object info) {
132 public static boolean isScrollable(Object info) {
136 public static boolean isSelected(Object info)
    [all...]
AccessibilityManagerCompatIcs.java 31 public void onAccessibilityStateChanged(boolean enabled);
38 public void onAccessibilityStateChanged(boolean enabled) {
44 public static boolean addAccessibilityStateChangeListener(AccessibilityManager manager,
50 public static boolean removeAccessibilityStateChangeListener(AccessibilityManager manager,
66 public static boolean isTouchExplorationEnabled(AccessibilityManager manager) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 100 final boolean hasStreet = !TextUtils.isEmpty(postal.street);
101 final boolean hasPobox = !TextUtils.isEmpty(postal.pobox);
102 final boolean hasNeighborhood = !TextUtils.isEmpty(postal.neighborhood);
103 final boolean hasCity = !TextUtils.isEmpty(postal.city);
104 final boolean hasRegion = !TextUtils.isEmpty(postal.region);
105 final boolean hasPostcode = !TextUtils.isEmpty(postal.postcode);
106 final boolean hasCountry = !TextUtils.isEmpty(postal.country);
114 final boolean hasFirstBlock = hasCountry || hasPostcode;
115 final boolean hasSecondBlock = hasRegion || hasCity || hasNeighborhood;
116 final boolean hasThirdBlock = hasStreet || hasPobox
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
NativeProgram.java 29 private boolean mHasInitFunction = false;
30 private boolean mHasTeardownFunction = false;
31 private boolean mHasSetValueFunction = false;
32 private boolean mHasGetValueFunction = false;
33 private boolean mHasResetFunction = false;
34 private boolean mTornDown = false;
155 private native boolean allocate();
157 private native boolean deallocate();
159 private native boolean nativeInit();
161 private native boolean openNativeLibrary(String libName)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallControlState.java 36 * have that logic here, and provide simple boolean flags to indicate the
44 private static final boolean DBG = (PhoneApp.DBG_LEVEL >= 2);
50 // Our "public API": Boolean flags to indicate the state and/or
54 public boolean manageConferenceVisible;
55 public boolean manageConferenceEnabled;
57 public boolean canAddCall;
59 public boolean canEndCall;
61 public boolean canSwap;
62 public boolean canMerge;
64 public boolean bluetoothEnabled
    [all...]
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
SimpleMenuItem.java 43 private boolean mEnabled = true;
106 public MenuItem setEnabled(boolean enabled) {
111 public boolean isEnabled() {
137 public boolean expandActionView() {
142 public boolean collapseActionView() {
147 public boolean isActionViewExpanded() {
193 public MenuItem setCheckable(boolean b) {
198 public boolean isCheckable() {
203 public MenuItem setChecked(boolean b) {
208 public boolean isChecked()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/webkit/
WebView.java 68 public void setHorizontalScrollbarOverlay(boolean overlay) {
71 public void setVerticalScrollbarOverlay(boolean overlay) {
74 public boolean overlayHorizontalScrollbar() {
78 public boolean overlayVerticalScrollbar() {
126 public boolean canGoBack() {
133 public boolean canGoForward() {
140 public boolean canGoBackOrForward(int steps) {
147 public boolean pageUp(boolean top) {
151 public boolean pageDown(boolean bottom)
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityManagerCompat.java 35 public boolean addAccessibilityStateChangeListener(AccessibilityManager manager,
37 public boolean removeAccessibilityStateChangeListener(AccessibilityManager manager,
43 public boolean isTouchExplorationEnabled(AccessibilityManager manager);
52 public boolean addAccessibilityStateChangeListener(AccessibilityManager manager,
57 public boolean removeAccessibilityStateChangeListener(AccessibilityManager manager,
72 public boolean isTouchExplorationEnabled(AccessibilityManager manager) {
84 public void onAccessibilityStateChanged(boolean enabled) {
91 public boolean addAccessibilityStateChangeListener(AccessibilityManager manager,
98 public boolean removeAccessibilityStateChangeListener(AccessibilityManager manager,
118 public boolean isTouchExplorationEnabled(AccessibilityManager manager)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
manifest-expected-completion18.txt 12 android:multiprocess : Specify whether a component is allowed to have multiple instances of itself running in different processes. [boolean]
15 android:allowTaskReparenting : Specify that an activity can be moved out of a task it is in to the task it has an affinity for when appropriate. [boolean]
16 android:finishOnTaskLaunch : Specify whether an activity should be finished when its task is brought to the foreground by relaunching from the home screen. [boolean]
17 android:finishOnCloseSystemDialogs : Specify whether an activity should be finished when a "close system windows" request has been made. [boolean]
18 android:clearTaskOnLaunch : Specify whether an activity's task should be cleared when it is re-launched from the home screen. [boolean]
19 android:noHistory : Specify whether an activity should be kept in its history stack. [boolean]
20 android:alwaysRetainTaskState : Specify whether an acitivty's task state should always be maintained by the system, or if it is allowed to reset the task to its initial state in certain situations. [boolean]
21 android:stateNotNeeded : Indicates that an Activity does not need to have its freeze state (as returned by onSaveInstanceState retained in order to be restarted. [boolean]
22 android:excludeFromRecents : Indicates that an Activity should be excluded from the list of recently launched activities. [boolean]
23 android:enabled : Specify whether the activity is enabled or not (that is, can be instantiated by the system). [boolean]
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MySignature1.java 36 public boolean runEngineInitVerify = false;
37 public boolean runEngineInitSign = false;
38 public boolean runEngineUpdate1 = false;
39 public boolean runEngineUpdate2 = false;
40 public boolean runEngineSign = false;
41 public boolean runEngineVerify = false;
42 public boolean runEngineSetParameter = false;
43 public boolean runEngineGetParameter = false;
85 protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERBoolean.java 16 * return a boolean from the passed in object.
32 * return a DERBoolean from the passed in boolean.
35 boolean value)
52 * return a Boolean from a tagged object.
62 boolean explicit)
93 boolean value)
99 public boolean isTrue()
112 out.writeEncoded(BOOLEAN, bytes);
115 protected boolean asn1Equals(
  /external/javassist/src/main/javassist/bytecode/annotation/
BooleanMemberValue.java 23 * Boolean constant value.
32 * Constructs a boolean constant value. The initial value is specified
43 * Constructs a boolean constant value.
47 public BooleanMemberValue(boolean b, ConstPool cp) {
53 * Constructs a boolean constant value. The initial value is false.
61 return new Boolean(getValue());
65 return boolean.class;
71 public boolean getValue() {
78 public void setValue(boolean newValue) {
  /frameworks/base/media/java/android/media/
IAudioService.aidl 38 void setStreamSolo(int streamType, boolean state, IBinder cb);
40 void setStreamMute(int streamType, boolean state, IBinder cb);
42 boolean isStreamMute(int streamType);
58 boolean shouldVibrate(int vibrateType);
68 boolean loadSoundEffects();
74 void setSpeakerphoneOn(boolean on);
76 boolean isSpeakerphoneOn();
78 void setBluetoothScoOn(boolean on);
80 boolean isBluetoothScoOn();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature1.java 37 public boolean runEngineInitVerify = false;
38 public boolean runEngineInitSign = false;
39 public boolean runEngineUpdate1 = false;
40 public boolean runEngineUpdate2 = false;
41 public boolean runEngineSign = false;
42 public boolean runEngineVerify = false;
43 public boolean runEngineSetParameter = false;
44 public boolean runEngineGetParameter = false;
98 protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
  /packages/apps/Contacts/src/com/android/contacts/list/
DirectoryPartition.java 35 private boolean mPriorityDirectory;
36 private boolean mPhotoSupported;
38 public DirectoryPartition(boolean showIfEmpty, boolean hasHeader) {
84 public boolean isLoading() {
91 public boolean isPriorityDirectory() {
95 public void setPriorityDirectory(boolean priorityDirectory) {
102 public boolean isPhotoSupported() {
106 public void setPhotoSupported(boolean flag) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Settings.java 30 private static boolean mKeySound;
31 private static boolean mVibrate;
32 private static boolean mPrediction;
75 public static boolean getKeySound() {
79 public static void setKeySound(boolean v) {
84 public static boolean getVibrate() {
88 public static void setVibrate(boolean v) {
93 public static boolean getPrediction() {
97 public static void setPrediction(boolean v) {
PinyinDecoderService.java 39 native static boolean nativeImOpenDecoder(byte fn_sys_dict[],
42 native static boolean nativeImOpenDecoderFd(FileDescriptor fd,
47 native static boolean nativeImCloseDecoder();
51 native static int nativeImDelSearch(int pos, boolean is_pos_in_splid,
52 boolean clear_fixed_this_step);
58 native static String nativeImGetPyStr(boolean decoded);
60 native static int nativeImGetPyStrLen(boolean decoded);
72 native static boolean nativeImCancelInput();
74 native static boolean nativeImFlushCache();
83 native static boolean nativeSyncBegin(byte[] user_dict)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLButtonElement.idl 29 attribute [Reflect] boolean formNoValidate;
34 attribute [Reflect] boolean disabled;
35 attribute [Reflect] boolean autofocus;
40 readonly attribute boolean willValidate;
42 boolean checkValidity();
  /frameworks/base/core/java/android/net/
DummyDataStateTracker.java 34 private static final boolean DBG = true;
35 private static final boolean VDBG = false;
38 private boolean mTeardownRequested = false;
43 private boolean mPrivateDnsRouteSet = false;
44 private boolean mDefaultRouteSet = false;
48 private boolean mIsDefaultOrHipri = false;
70 public boolean isPrivateDnsRouteSet() {
74 public void privateDnsRouteSet(boolean enabled) {
82 public boolean isDefaultRouteSet() {
86 public void defaultRouteSet(boolean enabled)
    [all...]
  /frameworks/base/core/java/android/nfc/
INfcAdapter.aidl 38 boolean disable();
39 boolean enable();
40 boolean enableNdefPush();
41 boolean disableNdefPush();
42 boolean isNdefPushEnabled();
INfcTag.aidl 33 boolean isNdef(int nativeHandle);
34 boolean isPresent(int nativeHandle);
35 TransceiveResult transceive(int nativeHandle, in byte[] data, boolean raw);
42 boolean ndefIsWritable(int nativeHandle);
49 boolean canMakeReadOnly(int ndefType);
  /frameworks/base/core/java/android/util/
Config.java 31 public static final boolean DEBUG = false;
37 public static final boolean RELEASE = true;
43 public static final boolean PROFILE = false;
49 public static final boolean LOGV = false;
55 public static final boolean LOGD = true;
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 28 void listen(String pkg, IPhoneStateListener callback, int events, boolean notifyNow);
33 void notifyMessageWaitingChanged(boolean mwi);
34 void notifyCallForwardingChanged(boolean cfi);
36 void notifyDataConnection(int state, boolean isDataConnectivityPossible,
38 in LinkCapabilities linkCapabilities, int networkType, boolean roaming);
  /frameworks/support/v4/java/android/support/v4/widget/
EdgeEffectCompat.java 46 public boolean isFinished(Object edgeEffect);
48 public boolean onPull(Object edgeEffect, float deltaDistance);
49 public boolean onRelease(Object edgeEffect);
50 public boolean onAbsorb(Object edgeEffect, int velocity);
51 public boolean draw(Object edgeEffect, Canvas canvas);
65 public boolean isFinished(Object edgeEffect) {
72 public boolean onPull(Object edgeEffect, float deltaDistance) {
76 public boolean onRelease(Object edgeEffect) {
80 public boolean onAbsorb(Object edgeEffect, int velocity) {
84 public boolean draw(Object edgeEffect, Canvas canvas)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestedWords.java 31 public final boolean mTypedWordValid;
32 public final boolean mHasAutoCorrectionCandidate;
33 public final boolean mIsPunctuationSuggestions;
35 private boolean mShouldBlockAutoCorrection;
37 private SuggestedWords(List<CharSequence> words, boolean typedWordValid,
38 boolean hasAutoCorrectionCandidate, boolean isPunctuationSuggestions,
64 public boolean hasAutoCorrectionWord() {
68 public boolean hasWordAboveAutoCorrectionScoreThreshold() {
72 public boolean isPunctuationSuggestions()
    [all...]

Completed in 2622 milliseconds

1 2 3 4 5 6 7 8 91011>>