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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/text/
TextWatcher.java 27 * are about to be replaced by new text with length <code>after</code>.
32 int count, int after);
DynamicLayout.java 168 private void reflow(CharSequence s, int where, int before, int after) {
186 after += diff;
192 int look = TextUtils.indexOf(text, '\n', where + after);
196 look++; // we want the index after the \n
198 int change = look - (where + after);
200 after += change;
211 Object[] force = sp.getSpans(where, where + after,
223 after += diff;
227 if (en > where + after) {
230 int diff = en - (where + after);
    [all...]
PackedObjectVector.java 116 int after = mRows - (mRowGapStart + mRowGapLength); local
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
  /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;
93 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after)
105 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY);
112 SkVector after; local
113 afterUnitNormal.scale(radius, &after);
118 after.negate();
121 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY)
136 SkVector after = afterUnitNormal; local
179 SkVector after = afterUnitNormal; 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 102 // of valid range after deleting text.
116 * Characters after selection start, including one trailing word
142 CharSequence after = connection.getTextAfterCursor(1000, 0); local
143 if (before == null || after == null) {
151 // Find last word separator after the cursor
153 while (++end < after.length() && !isWhitespace(after.charAt(end), sep));
156 if (start >= 0 && cursor + end <= after.length() + before.length()) {
158 + after.toString().substring(0, end);
306 // getting the text after the cursor and moving the text back to selected mode
    [all...]
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 80 struct timespec before, after; local
89 clock_gettime(CLOCK_MONOTONIC, &after);
91 double seconds = (after.tv_sec - before.tv_sec);
92 seconds += (after.tv_nsec - before.tv_nsec) / 1000000000.0;
  /external/freetype/src/base/
ftutil.c 287 FT_ListNode after = list->head; local
290 node->next = after;
293 if ( !after )
296 after->prev = node;
308 FT_ListNode before, after; local
312 after = node->next;
315 before->next = after;
317 list->head = after;
319 if ( after )
320 after->prev = before
332 FT_ListNode before, after; local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 44 # after - only measure frames after the specified #
56 else if (gsub("^after=", "",arg)) { after = arg }
81 after++; # we always have to after the 1st time stamp to get a time delta
82 skip = after + 1;
126 if (count == after) {
141 if (count < after) { count++; }
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 286 print "offset after svoxheader: $offs\n";
309 print "offset after length of header: $offs\n";
313 print "offset after number of fields: $offs\n";
317 print "offset after fields: $offs\n";
323 print "offset after fill: $offs\n";
388 print "totalcont after kbs: $totalcont\n";
394 print "offset after size of content (to be loaded): $offs\n";
400 print "offset after reset: $offs\n";
406 print "offset after number of kbs: $offs\n";
413 print "offset after descriptive kb names: $offs\n"
    [all...]
  /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,
54 // Before doesn't exist, so insert "after" values
56 builder.withValues(after.getEntityValues());
59 for (NamedContentValues child : after.getSubValues()) {
69 } else if (after == null) {
70 // After doesn't exist, so delete "before" values
83 values = after.getEntityValues();
94 final HashMap<String, NamedContentValues> afterChildren = buildChildrenMap(after);
102 // After child doesn't exist, so delete "before" chil
    [all...]
  /external/v8/test/mjsunit/regress/
regress-254.js 36 assertEquals(1, re.lastIndex, "Global, lastIndex after test 1");
38 assertEquals(0, re.lastIndex, "Global, lastIndex after test 2");
41 assertEquals(1, re.lastIndex, "Global, lastIndex after exec 1");
43 assertEquals(0, re.lastIndex, "Global, lastIndex after exec 2");
51 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after test 1");
53 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after test 2");
56 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after exec 1");
58 assertEquals(0, re2.lastIndex, "Non-global, lastIndex after exec 2");
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberFormattingTextWatcher.java 53 // If deleting the hyphen, also delete the char before or after that
70 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
78 && after == 0 // Deleting
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 38 long after = lr2.getMillis(); local
39 assertTrue(after-before>0);
  /bionic/libc/private/isc/
list.h 98 #define INSERT_AFTER(list, after, elt, link) \
101 if ((after)->link.next == NULL) \
104 (elt)->link.next = (after)->link.next; \
105 (after)->link.next = (elt); \
107 (elt)->link.prev = (after); \
  /external/chromium/third_party/icu/public/i18n/unicode/
simpletz.h 65 * TimeMode is used, together with a millisecond offset after
148 * number of milliseconds after midnight.
156 * number of milliseconds after midnight.
189 * number of milliseconds after midnight.
197 * number of milliseconds after midnight.
233 * number of milliseconds after midnight.
243 * number of milliseconds after midnight.
292 * first specified day of the week on or after the specfied day of the month.
293 * (e.g., (15, -SUNDAY) is the first Sunday after the 15th of the month
336 * first specified day of the week on or after the specfied day of the month
    [all...]
  /external/icu4c/i18n/unicode/
simpletz.h 65 * TimeMode is used, together with a millisecond offset after
148 * number of milliseconds after midnight.
156 * number of milliseconds after midnight.
189 * number of milliseconds after midnight.
197 * number of milliseconds after midnight.
233 * number of milliseconds after midnight.
243 * number of milliseconds after midnight.
292 * first specified day of the week on or after the specfied day of the month.
293 * (e.g., (15, -SUNDAY) is the first Sunday after the 15th of the month
336 * first specified day of the week on or after the specfied day of the month
    [all...]
  /frameworks/base/tools/preload/
Record.java 124 String after = result.substring(offset+6); local
126 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 11 'We also verify that the the string is stil functional after the out of memory exception is raised. In <a href="rdar://problem/5352887">rdar://problem/5352887</a>, accessing the string after the exception would crash.'
19 debug('PASS: String ' + stringName + ' was functional after ' + testName + ' raised out of memory exception.');
  /external/freetype/src/pshinter/
pshalgo.c 1038 PSH_Point first, start, end, before, after; local
1091 after = end;
1096 end = after;
1097 after = after->next;
1098 if ( after == first )
1101 out_x = after->org_u - end->org_u;
1102 out_y = after->org_v - end->org_v;
1123 end = after;
1402 PSH_Point point, before, after; local
1469 PSH_Point point, before, after; local
1966 PSH_Point before, after; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
dtrule.cpp 38 UBool after,
44 if (after) {
  /external/icu4c/i18n/
dtrule.cpp 38 UBool after,
44 if (after) {
  /external/v8/test/mjsunit/bugs/
618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
  /frameworks/base/services/java/com/android/server/
DiskStatsService.java 65 long after = SystemClock.uptimeMillis(); local
73 pw.print(after - before);
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityDeltaTests.java 163 final ContentValues after = new ContentValues(); local
164 after.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
166 final ValuesDelta values = ValuesDelta.fromAfter(after);
359 final ContentValues after = new ContentValues(); local
360 after.put(RawContacts.ACCOUNT_NAME, TEST_ACCOUNT_NAME);
361 after.put(RawContacts.SEND_TO_VOICEMAIL, 1);
363 final ValuesDelta values = ValuesDelta.fromAfter(after);
380 final ContentValues after = new ContentValues(); local
381 after.put(RawContacts.ACCOUNT_NAME, TEST_ACCOUNT_NAME);
382 after.put(RawContacts.SEND_TO_VOICEMAIL, 1)
    [all...]

Completed in 544 milliseconds

1 2 3 4 5 6 7 8 91011>>