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

<<21222324252627282930>>

  /cts/tests/tests/os/src/android/os/cts/
HandlerThreadTest.java 107 private boolean mIsOnLooperPreparedCalled;
110 private boolean mIsRunCalled;
116 public boolean isRunCalled() {
134 public boolean isOnLooperPreparedCalled() {
TokenWatcherTest.java 48 private boolean mHasConnected;
49 private boolean mHasDisconnected;
50 private boolean mLooped;
139 args = {android.os.IBinder.class, boolean.class}
192 args = {android.os.IBinder.class, boolean.class}
219 private boolean waitUntilAcquired() throws InterruptedException {
230 private boolean waitUntilReleased() throws InterruptedException {
243 public boolean isAcquiredCalled;
244 public boolean isReleasedCalled;
  /dalvik/dx/tests/049-dex-instanceof/
Blort.java 19 public static boolean test(Object x) {
  /dalvik/libcore/json/src/main/java/org/json/
JSON.java 30 static Boolean toBoolean(Object value) {
31 if (value instanceof Boolean) {
32 return (Boolean) value;
34 return Boolean.valueOf(((String) value));
  /dalvik/libcore/luni/src/main/java/java/util/
MiniEnumSet.java 65 public boolean hasNext() {
110 public boolean add(E element) {
126 public boolean addAll(Collection<? extends E> collection) {
147 public boolean contains(Object object) {
159 public boolean containsAll(Collection<?> collection) {
172 public boolean removeAll(Collection<?> collection) {
196 public boolean retainAll(Collection<?> collection) {
222 public boolean remove(Object object) {
241 public boolean equals(Object object) {
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 33 static Boolean b;
36 boolean isThrown = false;
77 b = new Boolean(true);
102 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
130 b = new Boolean(true);
135 assertTrue("Remove failed.", ((Boolean) rq.remove().get())
198 Boolean b = new Boolean(true);
209 assertTrue((Boolean)result.get());
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
WriteOnlyFileChannel.java 36 private boolean append = false;
42 public WriteOnlyFileChannel(Object stream, int handle, boolean isAppend) {
109 boolean shared, boolean wait) throws IOException {
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectableChannelTest.java 67 private boolean isCalled = false;
73 public SelectableChannel configureBlocking(boolean block)
78 public boolean isBlocking() {
82 public boolean isRegistered() {
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampReq.java 45 * certReq BOOLEAN DEFAULT FALSE,
60 private final Boolean certReq;
67 String reqPolicy, BigInteger nonce, Boolean certReq,
78 String reqPolicy, BigInteger nonce, Boolean certReq,
117 public Boolean getCertReq() {
165 setDefault(Boolean.FALSE, 4);
185 (Boolean) values[4],
195 (Boolean) values[4],
209 values[4] = (req.certReq == null) ? Boolean.FALSE : req.certReq;
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERNull.java 31 public boolean equals(
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DSAValidationParameters.java 26 public boolean equals(
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCStatement.java 69 ResultSet executeQuery(String sql, String args[], boolean updonly)
81 boolean starttrans = !conn.autocommit && !conn.intrans;
142 public boolean execute(String sql) throws SQLException {
211 public boolean getMoreResults() throws SQLException {
231 public void setEscapeProcessing(boolean enable) throws SQLException {
239 public boolean getMoreResults(int x) throws SQLException {
265 public boolean execute(String sql, int autokeys)
273 public boolean execute(String sql, int colIndexes[])
278 public boolean execute(String sql, String colIndexes[])
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
PolicyNodeImpl.java 30 private boolean mCriticalityIndicator;
32 private boolean mOriginalExpectedPolicySet;
34 private boolean isImmutable;
37 boolean flag, Set set1, boolean flag1) {
95 public boolean isCritical() {
105 boolean isImmutable() {
190 Set getPolicyNodesExpected(int i, String s, boolean flag) {
197 private Set getPolicyNodesExpectedHelper(int i, String s, boolean flag) {
  /dalvik/libcore/xml/src/main/java/javax/xml/datatype/
SecuritySupport.java 96 static boolean doesFileExist(final File f) {
97 return ((Boolean)
100 return f.exists() ? Boolean.TRUE : Boolean.FALSE;
  /dalvik/libcore/xml/src/main/java/javax/xml/parsers/
SecuritySupport.java 96 static boolean doesFileExist(final File f) {
97 return ((Boolean)
100 return f.exists() ? Boolean.TRUE : Boolean.FALSE;
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/
SecuritySupport.java 96 static boolean doesFileExist(final File f) {
97 return ((Boolean)
100 return f.exists() ? Boolean.TRUE : Boolean.FALSE;
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
SAXParserImpl.java 43 SAXParserImpl(Map<String, Boolean> features)
47 for (Map.Entry<String,Boolean> entry : features.entrySet()) {
73 public boolean isNamespaceAware() {
82 public boolean isValidating() {
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 37 private boolean m_isAbs = true;
46 public boolean checkAbsolute(LocPathIterator path)
60 public boolean visitFunction(ExpressionOwner owner, Function func)
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/
And.java 35 * AND two expressions and return the boolean result. Override
61 * Evaluate this operation directly to a boolean.
65 * @return The result of the operation as a boolean.
69 public boolean bool(XPathContext xctxt)
Bool.java 28 * The 'boolean()' operation expression executer.
54 * Evaluate this operation directly to a boolean.
58 * @return The result of the operation as a boolean.
62 public boolean bool(XPathContext xctxt)
Or.java 35 * OR two expressions and return the boolean result. Override
61 * Evaluate this operation directly to a boolean.
65 * @return The result of the operation as a boolean.
69 public boolean bool(XPathContext xctxt)
  /development/apps/CustomLocale/src/com/android/customlocale/
NewLocaleDialog.java 32 * boolean.
40 private static final boolean DEBUG = true;
44 private boolean mWasEmpty;
64 boolean select = v == mButtonAddSelect;
  /external/bluetooth/bluez/test/
service-did.xml 27 <boolean value="true"/>
  /external/clearsilver/cs/
test14.cs.gold 42 CORRECT boolean test, blooey doesn't exist, testif == 0 so its false
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 33 boolean star = false;
71 public abstract boolean matches (String s);
72 public abstract boolean matches (char [] chars);
75 // private boolean matches (int pi, int si, final char [] string)
118 public final boolean matches (final String s)
125 public final boolean matches (final char [] chars)
137 public final boolean matches (final String s)
144 public final boolean matches (final char [] chars)
156 public final boolean matches (final String s)
163 public final boolean matches (final char [] chars
    [all...]

Completed in 138 milliseconds

<<21222324252627282930>>