HomeSort by relevance Sort by last modified time
    Searched refs:after (Results 151 - 175 of 1215) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/icu/source/i18n/unicode/
dtrule.h 41 DOW_GEQ_DOM, /**< The first occurence of the day of week on or after the day of monnth,
42 for example, first Sunday on or after March 8. */
92 * on or after/before the day of month and the time rule. The date rule
99 * @param after true if the rule date is on or after the day of month.
105 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after,
  /external/chromium_org/ui/base/ime/
text_input_client.h 139 // before and after the selection or caret. This function should be used
143 virtual void ExtendSelectionAndDelete(size_t before, size_t after) = 0;
  /external/chromium_org/ui/views/controls/
prefix_selector.h 52 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE;
  /external/chromium_org/ui/webui/resources/css/
expandable_bubble.css 19 .expandable-bubble::after {
38 .expandable-bubble-title::after {
table.css 91 .table-header-sort-image-desc::after {
99 .table-header-sort-image-asc::after {
  /external/chromium_org/v8/test/webkit/
property-iteration.js 39 var after = Object.getOwnPropertyNames(Math);
41 shouldBeTrue('arrayEqual(before, after)');
  /external/icu4c/i18n/unicode/
dtrule.h 41 DOW_GEQ_DOM, /**< The first occurence of the day of week on or after the day of monnth,
42 for example, first Sunday on or after March 8. */
92 * on or after/before the day of month and the time rule. The date rule
99 * @param after true if the rule date is on or after the day of month.
105 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after,
  /external/junit/src/org/junit/rules/
TemporaryFolder.java 36 protected void after() { method in class:TemporaryFolder
  /external/qemu-pc-bios/bochs/bios/
notes 36 > on a single-sector transfer, after the system has transferred
38 > on a multiple-sector transfer, after the system has transferred
  /frameworks/base/core/java/android/text/
PackedIntVector.java 262 int after = mRows - (rowgapstart + mRowGapLength); local
266 System.arraycopy(mValues, (mRows - after) * columns,
267 newvalues, (newsize - after) * columns,
268 after * columns);
  /packages/apps/Calculator/src/com/android/calculator2/
ColorButton.java 62 protected void onTextChanged(CharSequence text, int start, int before, int after) {
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 52 self.text.after(UPDATEINTERVAL, self.timer_event)
53 self.text.after(FONTUPDATEINTERVAL, self.font_timer_event)
169 self.text.after(UPDATEINTERVAL, self.timer_event)
176 self.text.after(FONTUPDATEINTERVAL, self.font_timer_event)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CodeContext.py 52 self.text.after(UPDATEINTERVAL, self.timer_event)
53 self.text.after(FONTUPDATEINTERVAL, self.font_timer_event)
169 self.text.after(UPDATEINTERVAL, self.timer_event)
176 self.text.after(FONTUPDATEINTERVAL, self.font_timer_event)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 134 private static native float calcNormalizedScoreNative(int[] before, int[] after, int score);
135 private static native int editDistanceNative(int[] before, int[] after);
238 public static float calcNormalizedScore(final String before, final String after,
241 StringUtils.toCodePointArray(after), score);
244 public static int editDistance(final String before, final String after) {
245 if (before == null || after == null) {
249 StringUtils.toCodePointArray(after));
RichInputConnection.java 61 * cursor may end up after all the keyboard-triggered updates have passed. We keep this to
238 * Gets the caps modes we should be in after this specific string.
241 * This method also supports faking an additional space after the string passed in argument,
249 * @param hasSpaceBefore if we should consider there should be a space after the string.
267 // information but not enough to determine the caps mode accurately. This may happen after
568 final CharSequence after = mIC.getTextAfterCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE, local
570 if (before == null || after == null) {
599 // Find last word separator after the cursor
601 while (++endIndexInAfter < after.length()) {
602 final int codePoint = Character.codePointAt(after, endIndexInAfter)
626 final CharSequence after = getTextAfterCursor(1, 0); local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/
main.css 214 .test-name.IMAGE\+TEXT::after {
226 .test-name.IMAGE::after {
238 .test-name.TIMEOUT::after {
250 .test-name.TEXT::after {
262 .test-name.CRASH::after {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-969.js 28 // Regression test for bugs when deoptimizing after assignments in effect
32 // deoptimizing after an assignment in effect context (the value of the
60 assertEquals('undefined', test1(), 'test1 after');
67 assertEquals('undefined', test2(), 'test2 after');
73 assertEquals('undefined', test3(), 'test3 after');
  /external/v8/test/mjsunit/regress/
regress-969.js 28 // Regression test for bugs when deoptimizing after assignments in effect
32 // deoptimizing after an assignment in effect context (the value of the
60 assertEquals('undefined', test1(), 'test1 after');
67 assertEquals('undefined', test2(), 'test2 after');
73 assertEquals('undefined', test3(), 'test3 after');
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 263 // DAY/MONTH has priority when DATE set after DAY_OF_YEAR
272 // DAY_OF_YEAR has priority when set after DATE
361 // Ensure last date field set is reset after computing
487 * @tests java.util.Calendar#after(Object)
499 // test after();
500 assertTrue(late.after(early));
501 assertFalse(late.after(late));
502 assertFalse(early.after(late));
511 // test after();
512 assertTrue(late.after(early))
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 263 // DAY/MONTH has priority when DATE set after DAY_OF_YEAR
272 // DAY_OF_YEAR has priority when set after DATE
361 // Ensure last date field set is reset after computing
487 * java.util.Calendar#after(Object)
499 // test after();
500 assertTrue(late.after(early));
501 assertFalse(late.after(late));
502 assertFalse(early.after(late));
511 // test after();
512 assertTrue(late.after(early))
    [all...]
  /external/valgrind/main/mpi/
libmpiwrap.c 244 static __inline__ void after ( char* fnname, int err ) function
    [all...]
  /build/target/board/generic/
BoardConfig.mk 50 # rendering. This value is the number of nanoseconds after the hardware vsync
55 # image is displayed. This value may be either positive (after the HW vsync)
58 # will run just after the HW vsync. Setting it to a positive number will
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 534 DexCacheStats after; local
535 preloadDexCachesStatsFilled(&after);
536 ALOGI("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
537 total.numStrings, before.numStrings, after.numStrings);
538 ALOGI("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
539 total.numTypes, before.numTypes, after.numTypes);
540 ALOGI("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
541 total.numFields, before.numFields, after.numFields);
542 ALOGI("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
543 total.numMethods, before.numMethods, after.numMethods)
    [all...]
  /external/chromium_org/remoting/webapp/
host_session.js 84 * Get the access code generated by the host plugin. Valid only after the
93 * Get the lifetime for the access code. Valid only after the plugin state is
102 * Get the email address of the connected client. Valid only after the plugin

Completed in 542 milliseconds

1 2 3 4 5 67 8 91011>>