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

<<21222324252627282930>>

  /frameworks/base/location/java/android/location/provider/
LocationProvider.java 46 public boolean requiresNetwork() {
50 public boolean requiresSatellite() {
54 public boolean requiresCell() {
58 public boolean hasMonetaryCost() {
62 public boolean supportsAltitude() {
66 public boolean supportsSpeed() {
70 public boolean supportsBearing() {
102 public void enableLocationTracking(boolean enable) {
118 public boolean sendExtraCommand(String command, Bundle extras) {
173 public abstract boolean onRequiresNetwork()
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidatesContainer.java 193 boolean enableActiveHighlight) {
223 public void enableActiveHighlight(boolean enableActiveHighlight) {
246 public boolean activeCurseBackward() {
261 public boolean activeCurseForward() {
276 public boolean pageBackward(boolean animLeftRight,
277 boolean enableActiveHighlight) {
301 public boolean pageForward(boolean animLeftRight,
302 boolean enableActiveHighlight)
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Set.java 42 public boolean add(E object);
58 public boolean addAll(Collection<? extends E> collection);
78 public boolean contains(Object object);
88 public boolean containsAll(Collection<?> collection);
98 * @return boolean {@code true} if the object is the same as this object,
102 public boolean equals(Object object);
121 public boolean isEmpty();
141 public boolean remove(Object object);
152 public boolean removeAll(Collection<?> collection);
164 public boolean retainAll(Collection<?> collection)
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/javax/sql/
RowSetMetaDataTest.java 20 * @tests {@link javax.sql.RowSetMetaData#setAutoIncrement(int, boolean)}
26 args = {int.class, boolean.class}
33 * @tests {@link javax.sql.RowSetMetaData#setCaseSensitive(int, boolean)}
39 args = {int.class, boolean.class}
138 * @tests {@link javax.sql.RowSetMetaData#setCurrency(int, boolean)}
144 args = {int.class, boolean.class}
203 * @tests {@link javax.sql.RowSetMetaData#setSearchable(int, boolean)}
209 args = {int.class, boolean.class}
216 * @tests {@link javax.sql.RowSetMetaData#setSigned(int, boolean)}
222 args = {int.class, boolean.class
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 42 private boolean m_preserveSpace;
47 * @param v Boolean flag indicating whether
50 public void setPreserveSpace(boolean v)
58 * @return Boolean flag indicating whether
61 public boolean getPreserveSpace()
119 private boolean m_disableOutputEscaping = false;
139 * @param v Boolean value for "disable-output-escaping" attribute.
141 public void setDisableOutputEscaping(boolean v)
164 * @return Boolean value of "disable-output-escaping" attribute.
166 public boolean getDisableOutputEscaping(
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.1-3.js 88 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
89 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
115 "var DATE1 = new Date(); DATE1 + new Boolean(true)",
117 DATE1 + new Boolean(true) );
120 "var DATE1 = new Date(); DATE1 + new Boolean(true)",
122 DATE1 + new Boolean(true) );
150 "MYOB3 = new MyProtolessObject(DATE1); MYOB3 + new Boolean(true)",
152 MYOB3 + new Boolean(true) )
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java 57 public static boolean isAudioSource(ParcelUuid uuid) {
61 public static boolean isAudioSink(ParcelUuid uuid) {
65 public static boolean isAdvAudioDist(ParcelUuid uuid) {
69 public static boolean isHandsfree(ParcelUuid uuid) {
73 public static boolean isHeadset(ParcelUuid uuid) {
77 public static boolean isAvrcpController(ParcelUuid uuid) {
81 public static boolean isAvrcpTarget(ParcelUuid uuid) {
91 public static boolean isUuidPresent(ParcelUuid[] uuidArray, ParcelUuid uuid) {
111 public static boolean containsAnyUuid(ParcelUuid[] uuidA, ParcelUuid[] uuidB) {
137 public static boolean containsAllUuids(ParcelUuid[] uuidA, ParcelUuid[] uuidB)
    [all...]
  /frameworks/base/core/java/android/widget/
HeterogeneousExpandableList.java 32 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
34 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
41 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
47 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
57 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
64 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
75 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
77 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
94 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
96 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)
    [all...]
ViewFlipper.java 41 private static final boolean LOGD = false;
46 private boolean mAutoStart = false;
48 private boolean mRunning = false;
49 private boolean mStarted = false;
50 private boolean mVisible = false;
51 private boolean mUserPresent = true;
147 boolean running = mVisible && mStarted && mUserPresent;
167 public boolean isFlipping() {
175 public void setAutoStart(boolean autoStart) {
183 public boolean isAutoStart()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/menu/
MenuScenario.java 38 private boolean[] mWasItemClicked;
60 mWasItemClicked = new boolean[mParams.numItems];
64 public boolean onCreateOptionsMenu(Menu menu) {
93 public boolean onPrepareOptionsMenu(Menu menu) {
124 public boolean onMenuItemClick(MenuItem item) {
133 public boolean wasItemClicked(int position) {
187 private boolean shouldShowMenu = true;
189 private boolean listenForClicks = true;
192 public Params setShouldShowMenu(boolean shouldShowMenu) {
202 public Params setListenForClicks(boolean listenForClicks)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AgendaActivity.java 44 private static boolean DEBUG = false;
70 public boolean deliverSelfNotifications() {
75 public void onChange(boolean selfChange) {
142 boolean hideDeclined = prefs.getBoolean(
186 public boolean onPrepareOptionsMenu(Menu menu) {
192 public boolean onCreateOptionsMenu(Menu menu) {
198 public boolean onOptionsItemSelected(MenuItem item) {
204 public boolean onKeyDown(int keyCode, KeyEvent event) {
221 public void goTo(Time time, boolean animate) {
229 public boolean getAllDay()
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 61 public Node cloneNode(boolean deep) {
147 public boolean hasAttributes() {
152 public boolean hasChildNodes() {
161 public boolean isSupported(String feature, String version) {
213 public void addEventListener(String type, EventListener listener, boolean useCapture) {
217 public void removeEventListener(String type, EventListener listener, boolean useCapture) {
221 public boolean dispatchEvent(Event evt) throws EventException {
241 public boolean isSameNode(Node other) {
249 public boolean isDefaultNamespace(String namespaceURI) {
257 public boolean isEqualNode(Node arg)
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 53 public boolean willNotDraw;
54 public boolean hasMargins;
56 boolean hasFocus;
59 public boolean decoded;
60 public boolean filtered;
94 private boolean getBoolean(String name, boolean defaultValue) {
98 return Boolean.parseBoolean(p.value);
142 public boolean equals(Object obj) {
176 public boolean equals(Object obj)
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 55 private boolean isPasswordPrefSaved;
171 protected boolean check() {
220 args = {View.class, CharSequence.class, boolean.class, int.class, Rect.class}
255 private void switchShowPassword(boolean on) {
261 private boolean mHasCalledBeforeTextChanged;
263 private boolean mHasCalledOnTextChanged;
265 private boolean mHasCalledAfterTextChanged;
267 private boolean mHasCalledOnFocusChanged;
282 public void onFocusChanged(View view, CharSequence sourceText, boolean focused,
294 public boolean hasCalledBeforeTextChanged()
    [all...]
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
PerfStatCollector.java 31 public boolean listAll = false;
32 public boolean listBad = false;
34 public boolean twoLines = true;
35 public boolean bigMarking = true;
37 private static boolean havePreciseTime =
44 public boolean existsInStore;
56 public boolean isTransition;
57 boolean printed = false;
59 void update(boolean rBad, long rthDurat) {
76 void print1(PrintStream out, boolean bigMarking)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
XPathVisitor.java 43 * <code>boolean visitComponentType(ExpressionOwner owner, ComponentType compType)</code>.
60 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path)
72 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path)
84 public boolean visitStep(ExpressionOwner owner, NodeTest step)
99 public boolean visitPredicate(ExpressionOwner owner, Expression pred)
111 public boolean visitBinaryOperation(ExpressionOwner owner, Operation op)
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op)
135 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
147 public boolean visitFunction(ExpressionOwner owner, Function func)
159 public boolean visitMatchPattern(ExpressionOwner owner, StepPattern pattern
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
IsSupported.java 25 * "XXX" and version to "1.0". The method should return a boolean "false" since
72 boolean state;
87 boolean state;
102 boolean state;
117 boolean state;
132 boolean state;
147 boolean state;
162 boolean state;
177 boolean state;
192 boolean state
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
MetaData.java 74 public boolean hasSrcFileData ()
79 public boolean hasLineNumberData ()
89 // public boolean hasDescriptor (final ClassDescriptor cls)
96 public boolean hasDescriptor (final String classVMName)
108 public boolean add (final ClassDescriptor cls, final boolean overwrite)
118 boolean incompleteDebugInfo = false;
158 public boolean isEmpty ()
219 final boolean hasSrcFileInfo = in.readBoolean ();
220 final boolean hasLineNumberInfo = in.readBoolean ()
    [all...]
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
ManageAccountsSettings.java 92 public boolean onPreferenceTreeClick(PreferenceScreen preferences, Preference preference) {
96 boolean oldBackgroundDataSetting = connManager.getBackgroundDataSetting();
97 boolean backgroundDataSetting = mBackgroundDataCheckBox.isChecked();
142 private void setBackgroundDataInt(boolean enabled) {
153 boolean backgroundDataSetting = connManager.getBackgroundDataSetting();
155 boolean masterSyncAutomatically = ContentResolver.getMasterSyncAutomatically();
161 boolean anySyncFailed = false; // true if sync on any account failed
181 boolean syncIsFailing = false;
186 boolean syncEnabled = ContentResolver.getSyncAutomatically(account, authority)
190 boolean authorityIsPending = ContentResolver.isSyncPending(account, authority)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 38 private boolean mPortrait;
59 boolean[][] mOccupied;
63 private boolean mDirtyTag;
64 private boolean mLastDownOnOccupiedCell = false;
101 mOccupied = new boolean[mShortAxisCells][mLongAxisCells];
103 mOccupied = new boolean[mLongAxisCells][mShortAxisCells];
162 public boolean onInterceptTouchEvent(MotionEvent ev) {
172 boolean found = false;
199 final boolean portrait = mPortrait;
203 final boolean[][] occupied = mOccupied
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
View_UsingViewsTest.java 105 args = {boolean.class}
125 args = {boolean.class}
170 args = {boolean.class}
190 args = {boolean.class}
200 args = {boolean.class}
215 args = {boolean.class}
225 args = {boolean.class}
235 args = {boolean.class}
255 args = {boolean.class}
260 args = {boolean.class
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
VideoViewTest.java 71 private boolean mTriggered;
77 public boolean isTriggered() {
94 public boolean onError(MediaPlayer mp, int what, int extra) {
223 protected boolean check() {
237 protected boolean check() {
298 protected boolean check() {
312 protected boolean check() {
326 protected boolean check() {
344 protected boolean check() {
358 protected boolean check()
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
RandomTest.java 73 // Test for method boolean java.util.Random.nextBoolean()
74 boolean falseAppeared = false, trueAppeared = false;
97 boolean someDifferent = false;
122 boolean someDifferent = false;
123 boolean inRange = true;
152 boolean someDifferent = false;
153 boolean inRange = true;
181 boolean someDifferent = false;
182 boolean someInsideStd = false;
211 boolean someDifferent = false
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 40 private boolean declared [];
41 private boolean specified [];
49 declared = new boolean[0];
50 specified = new boolean[0];
84 public boolean isDeclared (int index)
97 public boolean isDeclared (String uri, String localName)
113 public boolean isDeclared (String qName)
132 public boolean isSpecified (int index)
151 public boolean isSpecified (String uri, String localName)
171 public boolean isSpecified (String qName
    [all...]
  /frameworks/base/awt/java/beans/
PropertyDescriptor.java 33 private boolean constrained;
35 private boolean bound;
156 public boolean equals(Object object) {
157 boolean result = (object != null && object instanceof PropertyDescriptor);
160 boolean gettersAreEqual = (this.getter == null) && (pd.getReadMethod() == null)
162 boolean settersAreEqual = (this.setter == null) && (pd.getWriteMethod() == null)
164 boolean propertyTypesAreEqual = this.getPropertyType() == pd.getPropertyType();
165 boolean propertyEditorClassesAreEqual = this.getPropertyEditorClass() == pd
167 boolean boundPropertyAreEqual = this.isBound() == pd.isBound();
168 boolean constrainedPropertyAreEqual = this.isConstrained() == pd.isConstrained()
    [all...]

Completed in 201 milliseconds

<<21222324252627282930>>