HomeSort by relevance Sort by last modified time
    Searched full:returned (Results 326 - 350 of 7742) sorted by null

<<11121314151617181920>>

  /packages/apps/Nfc/jni/
com_android_nfc_NativeP2pDevice.cpp 149 LOGE("phLibNfc_RemoteDev_Connect(P2P) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
152 TRACE("phLibNfc_RemoteDev_Connect(P2P) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
230 LOGE("phLibNfc_RemoteDev_Disconnect() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
243 TRACE("phLibNfc_RemoteDev_Disconnect() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
313 LOGE("phLibNfc_RemoteDev_Transceive(P2P) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
316 TRACE("phLibNfc_RemoteDev_Transceive(P2P) returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
381 LOGE("phLibNfc_RemoteDev_Receive() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
384 TRACE("phLibNfc_RemoteDev_Receive() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
437 LOGE("phLibNfc_RemoteDev_Send() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status));
440 TRACE("phLibNfc_RemoteDev_Send() returned 0x%04x[%s]", status, nfc_jni_get_status_name(status))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 298 assertEquals("Returned incorrect binary search item position", ll
325 "Returned incorrect binary search item position using custom comparator",
401 assertEquals("Returned incorrect enumeration", e.nextElement(),
441 assertEquals("Returned incorrect max element", Collections.max(s),
456 assertEquals("Returned incorrect max element using custom comparator",
468 assertEquals("Returned incorrect min element", Collections.min(s),
483 assertEquals("Returned incorrect min element using custom comparator",
498 assertEquals("Returned list consists of copies not refs", first, o);
499 assertEquals("Returned list of incorrect size", 100, l.size());
514 fail("Returned list is not immutable")
    [all...]
ArrayListTest.java 108 assertNull("Should have returned null", alist.get(25));
109 assertTrue("Should have returned the old item from slot 25", alist
119 assertNull("Should have returned null", alist.get(0));
120 assertEquals("Should have returned the old item from slot 0", alist
171 assertNull("Should have returned null", alist.get(size));
195 assertEquals("Returned incorrect size after adding to existing list",
369 assertEquals("Returned incorrect size after adding to existing list",
509 assertTrue("Returned false for valid element", alist
511 assertTrue("Returned false for equal element", alist
513 assertTrue("Returned true for invalid element", !alis
    [all...]
DateTest.java 140 assertTrue("Older was returned as newer", d2.after(d1));
141 assertTrue("Newer was returned as older", !d1.after(d2));
151 assertTrue("Older was returned as newer", !d2.before(d1));
152 assertTrue("Newer was returned as older", d1.before(d2));
208 assertEquals("Returned incorrect date", 13, d.getDate());
218 assertEquals("Returned incorrect day", 2, d.getDay());
228 assertEquals("Returned incorrect hours", 19, d.getHours());
238 assertEquals("Returned incorrect minutes", 9, d.getMinutes());
248 assertEquals("Returned incorrect month", 9, d.getMonth());
258 assertEquals("Returned incorrect seconds", 0, d.getSeconds())
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 280 assertTrue("Returned incorrect binary search item position", ll
306 "Returned incorrect binary search item position using custom comparator",
423 assertTrue("Returned incorrect enumeration",
473 assertTrue("Returned incorrect max element",
510 "Returned incorrect max element using custom comparator",
541 assertTrue("Returned incorrect min element",
578 "Returned incorrect min element using custom comparator",
612 assertTrue("Returned list consists of copies not refs", first == o);
613 assertEquals("Returned list of incorrect size", 100, l.size());
628 fail("Returned list is not immutable")
    [all...]
LocaleTest.java 122 assertTrue("Same object returned false", testLocale.equals(testLocale));
123 assertTrue("Same values returned false", testLocale.equals(l2));
124 assertTrue("Different locales returned true", !testLocale.equals(l));
155 assertTrue("Returned incorrect country: " + testLocale.getCountry(),
178 assertTrue("Returned incorrect country: "
195 assertEquals("Returned incorrect country", "Italie", Locale.ITALY.getDisplayCountry(l));
205 assertTrue("Returned incorrect language: "
235 assertTrue("Returned incorrect variant: "
246 assertTrue("Returned incorrect variant: "
256 assertTrue("Returned incorrect ISO3 country:
    [all...]
  /external/guava/src/com/google/common/collect/
Ordering.java 51 * Except as noted, the orderings returned by the factory methods of this
109 * to the {@code valuesInOrder} list will have no effect on the returned
112 * <p>The returned comparator throws an {@link ClassCastException} when it
118 * @param valuesInOrder the values that the returned comparator will be able
137 * <p>The returned comparator throws a {@link ClassCastException} when it
143 * @param leastValue the value which the returned comparator should consider
145 * @param remainingValuesInOrder the rest of the values that the returned
250 * string representations as returned by {@code toString()}. It does not
263 * all comparators return zero. The returned ordering is based on the state of
267 * <p>The returned ordering is equivalent to that produced using {@cod
    [all...]
Iterables.java 329 * Combines two iterables into a single iterable. The returned iterable has an
333 * <p>The returned iterable's iterator supports {@code remove()} when the
345 * Combines three iterables into a single iterable. The returned iterable has
350 * <p>The returned iterable's iterator supports {@code remove()} when the
363 * Combines four iterables into a single iterable. The returned iterable has
369 * <p>The returned iterable's iterator supports {@code remove()} when the
384 * Combines multiple iterables into a single iterable. The returned iterable
388 * <p>The returned iterable's iterator supports {@code remove()} when the
398 * Combines multiple iterables into a single iterable. The returned iterable
402 * <p>The returned iterable's iterator supports {@code remove()} when th
    [all...]
Iterators.java 363 * <p>The returned iterator supports {@code remove()} if the provided iterator
404 * <p>The returned iterator supports {@code remove()} if the provided iterator
419 * Combines two iterators into a single iterator. The returned iterator
423 * <p>The returned iterator supports {@code remove()} when the corresponding
435 * Combines three iterators into a single iterator. The returned iterator
440 * <p>The returned iterator supports {@code remove()} when the corresponding
453 * Combines four iterators into a single iterator. The returned iterator
458 * <p>The returned iterator supports {@code remove()} when the corresponding
473 * Combines multiple iterators into a single iterator. The returned iterator
477 * <p>The returned iterator supports {@code remove()} when the correspondin
    [all...]
Multimaps.java 67 * multimap and its returned views. However, the multimap's {@code get}
88 * the collections returned by {@code factory}. Those objects should not be
145 * multimap and its returned views. The multimap's {@code get}, {@code
165 * the lists returned by {@code factory}. Those objects should not be manually
220 * multimap and its returned views. However, the multimap's {@code get}
240 * the sets returned by {@code factory}. Those objects should not be manually
295 * multimap and its returned views. However, the multimap's {@code get}
314 * the sets returned by {@code factory}. Those objects should not be manually
389 * returned multimap.
391 * <p>It is imperative that the user manually synchronize on the returned
    [all...]
  /libcore/luni/src/main/java/java/util/
NavigableMap.java 228 * <p>The returned map has an ordering equivalent to
272 * {@code toKey} are equal, the returned map is empty unless
274 * returned map is backed by this map, so changes in the returned map are
275 * reflected in this map, and vice-versa. The returned map supports all
278 * <p>The returned map will throw an {@code IllegalArgumentException}
282 * @param fromKey low endpoint of the keys in the returned map
284 * is to be included in the returned view
285 * @param toKey high endpoint of the keys in the returned map
287 * is to be included in the returned vie
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StreamTokenizerTest.java 46 assertEquals("the next token returned should be the letter d",
48 assertEquals("the next token returned should be the letter d",
51 assertEquals("the next token returned should be the digit 8",
53 assertEquals("the next token returned should be the digit 8",
56 assertEquals("the next token returned should be the quote character",
58 assertEquals("the next token returned should be the quote character",
67 assertEquals("the next token returned should be the letter d skipping the comments",
69 assertEquals("the next token returned should be the letter d",
72 assertEquals("the next token returned should be the digit 8",
74 assertEquals("the next token returned should be the digit 8"
    [all...]
  /development/host/windows/usb/api/
adb_endpoint_object.h 73 returned GetLastError() provides extended error information.
91 @return true on success, false on failure. If false is returned
108 @return true on success, false on failure. If false is returned
125 returned GetLastError() provides extended error information.
145 returned GetLastError() provides extended error information.
162 returned GetLastError() provides extended error information.
178 returned GetLastError() provides extended error information.
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PolicyQualifierInfoTest.java 136 // check returned array
161 // check returned array
167 * Assertion: a copy is returned each time
179 // modify returned array
205 // check returned array
211 * Assertion: a copy is returned each time
225 // modify returned array
  /external/llvm/include/llvm-c/
Disassembler.h 38 * will be the instruction width. The information is returned in TagBuf and is
40 * TagType for that Triple. If symbolic information is returned the function
58 * field. The symbolic information about the operand is returned using all
60 * returned in the Value field. It is possible that some symbols in the
97 * for the ReferenceValue NULL is returned. The ReferenceType of the
99 * ReferencePC. If the output reference can be determined its type is returned
151 * instruction can be disassembled, its string is returned indirectly in
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 99 assertTrue("Returned incorrect set", s.contains(i.next()));
122 assertTrue("Returned incorrect first element",
138 assertEquals("Returned set of incorrect size", 100, s.size());
140 assertTrue("Returned incorrect set", s.contains(objArray[i]));
167 assertTrue("Returned incorrect last element",
224 assertEquals("Returned set of incorrect size", 100, s.size());
226 assertTrue("Returned incorrect set", s.contains(objArray[i]));
  /libcore/luni/src/test/java/tests/security/cert/
PolicyQualifierInfoTest.java 130 // check returned array
155 // check returned array
161 * Assertion: a copy is returned each time
173 // modify returned array
199 // check returned array
205 * Assertion: a copy is returned each time
219 // modify returned array
  /external/bluetooth/glib/gio/
gfile.c 383 * #GFile. The returned string should be freed with g_free()
418 * if given #GFile is invalid. The returned string should be
442 * no such path exists. The returned string should be
466 * The returned string should be freed with g_free() when no longer needed.
499 * Returns: a string containing the #GFile's parse name. The returned
602 * file system, then %NULL will be returned.
608 * Free the returned object with g_object_unref().
636 * Free the returned object with g_object_unref().
664 * Free the returned object with g_object_unref().
729 * The returned string should be freed with g_free() when no longer needed
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
MethodTest.java 148 assertTrue("Overriden method returned equal", !m1.equals(m2));
149 assertTrue("Same method returned not-equal", m1.equals(m1));
154 assertTrue("Inherited method returned not-equal", m1.equals(m2));
167 assertTrue("Returned incorrect declaring class: "
181 assertEquals("Returned incorrect number of exceptions",
183 assertTrue("Returned incorrect exception type", ex[0]
187 assertEquals("Returned incorrect number of exceptions",
205 assertTrue("Incorrect modifiers returned", (mods | mask) == mask);
210 assertTrue("Incorrect modifiers returned", (mods | mask) == mask);
215 assertTrue("Incorrect modifiers returned", (mods | mask) == mask)
    [all...]
  /external/icu4c/i18n/unicode/
search.h 110 * an U_INDEX_OUTOFBOUNDS_ERROR will be returned
120 * is returned.
185 * construction or after <tt>USEARCH_DONE</tt> has been returned,
233 * an U_ILLEGAL_ARGUMENT_ERROR is returned.
250 * U_ILLEGAL_ARGUMENT_ERROR is returned.
296 * returned by <tt>getOffset</tt>) is the match position if one
298 * If a match is not found, <tt>USEARCH_DONE</tt> will be returned and
311 * that its current index (as returned by <tt>getOffset</tt>) is the
313 * <tt>USEARCH_DONE</tt> will be returned and the iterator will be
317 * an U_INDEX_OUTOFBOUNDS_ERROR will be returned
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
FieldTest.java 170 assertTrue("Same Field returned false", f.equals(f));
171 assertTrue("Inherited Field returned false", f.equals(x.getClass()
173 assertTrue("Identical Field from different class returned true", !f
190 assertTrue("Returned incorrect double field value",
196 assertEquals("Returned incorrect double field value", 1.0, val
584 assertTrue("Returned incorrect boolean field value", val);
629 assertTrue("Wrong value returned", staticValue);
651 assertTrue("Returned incorrect byte field value", val == Byte.MAX_VALUE);
696 assertEquals("Wrong value returned", Byte.MAX_VALUE, staticValue);
717 assertEquals("Returned incorrect char field value", 'T', val)
    [all...]
  /frameworks/base/core/java/android/database/
Cursor.java 24 * This interface provides random read-write access to the result set returned
32 * Values returned by {@link #getType(int)}.
35 /** Value returned by {@link #getType(int)} if the specified column is null */
38 /** Value returned by {@link #getType(int)} if the specified column type is integer */
41 /** Value returned by {@link #getType(int)} if the specified column type is float */
44 /** Value returned by {@link #getType(int)} if the specified column type is string */
47 /** Value returned by {@link #getType(int)} if the specified column type is blob */
59 * The value is zero-based. When the row set is first returned the cursor
61 * last row is returned another call to next() will leave the cursor past
78 * the position will be pinned at -1, and false will be returned
    [all...]
  /libcore/luni/src/main/java/java/sql/
CallableStatement.java 54 * event that multiple {@code ResultSets} are returned, they are accessed using
92 * specified parameter. The value {@code null} is returned if
110 * specified parameter. The value {@code null} is returned if
128 * specified parameter. The value {@code null} is returned if
143 * specified parameter. The value {@code null} is returned if
157 * specified parameter. The value {@code null} is returned if
171 * is returned if the value is SQL {@code NULL}.
184 * {@code false} is returned if the SQL value is {@code NULL}.
198 * {@code 0} is returned if the value is SQL {@code NULL}.
211 * {@code 0} is returned if the SQL value is {@code NULL}
    [all...]
  /frameworks/base/core/java/android/view/
Display.java 80 * space available from the size returned here. Layouts should instead use
85 * The size returned by this method does not necessarily represent the
86 * actual raw size (native resolution) of the display. The returned size may
251 * The returned value may be {@link Surface#ROTATION_0 Surface.ROTATION_0}
257 * returned here may be either {@link Surface#ROTATION_90 Surface.ROTATION_90}
263 * 90 degrees clockwise and thus the returned value here will be
277 * Return the native pixel format of the display. The returned value
296 * The size returned by this method does not necessarily represent the
297 * actual raw size (native resolution) of the display. The returned size may
  /frameworks/base/include/media/
AudioRecord.h 106 * Returned status (from utils/Errors.h) can be:
170 * Returned status (from utils/Errors.h) can be:
239 * Returned status (from utils/Errors.h) can be:
258 * Returned status (from utils/Errors.h) can be:
273 * Returned status (from utils/Errors.h) can be:
284 * Returned value:
294 * Returned value:
302 * at which point NO_MORE_BUFFERS is returned.
303 * Buffers will be returned until the pool (buffercount())

Completed in 1080 milliseconds

<<11121314151617181920>>