HomeSort by relevance Sort by last modified time
    Searched refs:before (Results 1 - 25 of 342) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
lexcmp_test.cpp 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); local
38 CPPUNIT_ASSERT(!before);
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()); local
47 CPPUNIT_ASSERT(before);
  /ndk/sources/android/stlport/test/unit/
lexcmp_test.cpp 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); local
38 CPPUNIT_ASSERT(!before);
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()); local
47 CPPUNIT_ASSERT(before);
  /frameworks/base/core/java/android/text/
TextWatcher.java 36 * have just replaced old text that had length <code>before</code>.
40 public void onTextChanged(CharSequence s, int start, int before, int count);
  /dalvik/vm/mterp/armv5te/
OP_MONITOR_EXIT.S 13 EXPORT_PC() @ before fetch: export the PC
20 FETCH_ADVANCE_INST(1) @ before throw: advance rPC, load rINST
25 FETCH_ADVANCE_INST(1) @ advance before throw
  /bionic/libstdc++/src/
typeinfo.cpp 26 type_info::before(type_info const & right) const { function in class:type_info
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityDeltaTests.java 79 final Entity before = new Entity(contact); local
80 before.addSubValue(Data.CONTENT_URI, phone);
81 return before;
88 * "before" {@link Entity}.
91 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
92 final EntityDelta source = EntityDelta.fromBefore(before);
93 final EntityDelta dest = EntityDelta.fromBefore(before);
101 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
102 final EntityDelta source = EntityDelta.fromBefore(before);
103 final EntityDelta dest = EntityDelta.fromBefore(before);
119 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
133 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
151 final ContentValues before = new ContentValues(); local
175 final ContentValues before = new ContentValues(); local
189 final ContentValues before = new ContentValues(); local
208 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
219 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
256 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
301 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
335 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinImeLogger.java 41 String before, String after, int position, List<CharSequence> suggestions) {
44 public static void logOnAutoSuggestion(String before, String after) {
EditingUtil.java 112 /** Characters before selection start */
141 CharSequence before = connection.getTextBeforeCursor(1000, 0); local
143 if (before == null || after == null) {
147 // Find first word separator before the cursor
148 int start = before.length();
149 while (start > 0 && !isWhitespace(before.charAt(start - 1), sep)) start--;
156 if (start >= 0 && cursor + end <= after.length() + before.length()) {
157 String word = before.toString().substring(start, before.length())
161 returnRange.charsBefore = before.length() - start
    [all...]
  /external/freetype/src/base/
ftutil.c 266 FT_ListNode before = list->tail; local
270 node->prev = before;
272 if ( before )
273 before->next = node;
308 FT_ListNode before, after; local
311 before = node->prev;
314 if ( before )
315 before->next = after;
320 after->prev = before;
322 list->tail = before;
332 FT_ListNode before, after; local
    [all...]
  /external/skia/src/core/
SkStrokerPriv.cpp 70 static bool is_clockwise(const SkVector& before, const SkVector& after)
72 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0;
135 SkVector before = beforeUnitNormal;
139 if (!is_clockwise(before, after))
142 before.negate();
151 int count = SkBuildQuadArc(before, after, dir, &matrix, pts);
178 SkVector before = beforeUnitNormal; local
192 ccw = !is_clockwise(before, after);
196 before.negate()
    [all...]
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 80 struct timespec before, after; local
81 clock_gettime(CLOCK_MONOTONIC, &before);
91 double seconds = (after.tv_sec - before.tv_sec);
92 seconds += (after.tv_nsec - before.tv_nsec) / 1000000000.0;
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDiff.java 42 * from "before" to "after". Tries its best to keep operations to
46 public static EntityDiff buildDiff(Entity before, Entity after, Uri targetUri,
53 if (before == null) {
54 // Before doesn't exist, so insert "after" values
70 // After doesn't exist, so delete "before" values
71 for (NamedContentValues child : before.getSubValues()) {
78 builder.withSelection(getSelectIdClause(before.getEntityValues()), null);
84 if (!before.getEntityValues().equals(values)) {
93 final HashMap<String, NamedContentValues> beforeChildren = buildChildrenMap(before);
96 // Walk through "before" children looking for deletes and update
    [all...]
  /external/bluetooth/glib/glib/
gi18n-lib.h 29 #error You must define GETTEXT_PACKAGE before including gi18n-lib.h. Did you forget to include config.h?
  /external/stlport/stlport/
assert.h 35 # error assert has been defined before inclusion of assert.h header.
errno.h 45 /* If errno has been defined before inclusion of native errno.h including it from STLport errno.h
53 * To fix this problem you have to find where this definition comes from and include errno.h before it.
55 # error errno has been defined before inclusion of errno.h header.
setjmp.h 41 # error setjmp has been defined before inclusion of setjmp.h header.
  /ndk/sources/android/stlport/stlport/
assert.h 35 # error assert has been defined before inclusion of assert.h header.
errno.h 45 /* If errno has been defined before inclusion of native errno.h including it from STLport errno.h
53 * To fix this problem you have to find where this definition comes from and include errno.h before it.
55 # error errno has been defined before inclusion of errno.h header.
setjmp.h 41 # error setjmp has been defined before inclusion of setjmp.h header.
  /frameworks/base/services/camera/tests/CameraServiceTest/
Android.mk 24 # Disable it because the ISurface interface may change, and before we have a
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 52 Map<String, String> before = new HashMap<String, String>(environment); local
63 assertEquals(before, environment);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 31 long before = lr.getMillis(); local
39 assertTrue(after-before>0);
  /bionic/libc/private/isc/
list.h 85 #define INSERT_BEFORE(list, before, elt, link) \
88 if ((before)->link.prev == NULL) \
91 (elt)->link.prev = (before)->link.prev; \
92 (before)->link.prev = (elt); \
94 (elt)->link.next = (before); \
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 57 long before = System.currentTimeMillis(); local
68 DropBoxManager.Entry e0 = dropbox.getNextEntry("DropBoxTest", before);
73 assertTrue(e0.getTimeMillis() > before);
91 long before = System.currentTimeMillis();
95 DropBoxManager.Entry e = dropbox.getNextEntry("DropBoxTest", before);
99 assertTrue(e.getTimeMillis() >= before);
111 long before = System.currentTimeMillis();
141 DropBoxManager.Entry e0 = dropbox.getNextEntry("DropBoxTest", before);
147 assertTrue(e0.getTimeMillis() > before);
178 long before = System.currentTimeMillis() local
252 long before = System.currentTimeMillis(); local
285 long before = System.currentTimeMillis(); local
344 long before = System.currentTimeMillis(); local
439 long before = System.currentTimeMillis(); local
717 int before = countOpenFiles(); local
    [all...]
  /external/stlport/src/
sparc_atomic64.s 19 membar #LoadLoad | #LoadStore ! Ensure the cas finishes before
38 membar #LoadLoad | #LoadStore ! Ensure the cas finishes before
58 membar #LoadLoad | #LoadStore ! Ensure the cas finishes before

Completed in 568 milliseconds

1 2 3 4 5 6 7 8 91011>>