HomeSort by relevance Sort by last modified time
    Searched refs:after (Results 76 - 100 of 621) sorted by null

1 2 34 5 6 7 8 91011>>

  /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...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_textsplittextthree.js 78 After the "splitText(offset)" method breaks the Text node
80 content at and after the offset point.
85 at and after the offset point. The "getNodeValue()"
87 the characters at and after position seven.
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_textsplittextthree.js 78 After the "splitText(offset)" method breaks the Text node
80 content at and after the offset point.
85 at and after the offset point. The "getNodeValue()"
87 the characters at and after position seven.
  /packages/experimental/procstatlog/
procstatlog.c 100 // terminator: if non-NULL, processing stops after this string
389 struct timeval before, after; local
397 gettimeofday(&after, NULL);
398 printf("T - %ld.%06ld\n", after.tv_sec, after.tv_usec);
400 long elapsed_usec = (long) after.tv_usec - before.tv_usec;
401 elapsed_usec += 1000000l * (after.tv_sec - before.tv_sec);
  /cts/tests/tests/accessibility/
Android.mk 31 # This test runner sets up/cleans up the device before/after running the tests.
  /cts/tests/tests/accessibilityservice/
Android.mk 29 # This test runner sets up/cleans up the device before/after running the tests.
  /dalvik/vm/mterp/x86/
OP_EXECUTE_INLINE.S 20 call .L${opcode}_continue # make call; will return after
  /external/dhcpcd/mk/
cc.mk 17 -Wdeclaration-after-statement -Wsequence-point -Wextra
  /external/junit/src/org/junit/internal/runners/
MethodRoadie.java 75 addFailure(new Exception(String.format("test timed out after %d milliseconds", timeout)));
143 for (Method after : afters)
145 after.invoke(fTest);
  /external/webkit/LayoutTests/fast/dom/Attr/script-tests/
access-after-element-destruction.js 1 description("Tests that accessing Attr after its Element has been destroyed works without crashing.");
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.h 105 void setIntrinsicPadding(int before, int after) { setIntrinsicPaddingBefore(before); setIntrinsicPaddingAfter(after); }
  /packages/apps/Launcher2/src/com/android/launcher2/
StrokedTextView.java 74 protected void onTextChanged(CharSequence text, int start, int before, int after) {
75 super.onTextChanged(text, start, before, after);
  /packages/inputmethods/LatinIME/native/jni/src/
correction.h 171 const unsigned short* after, const int afterLength, const int score);
173 const int beforeLength, const unsigned short* after, const int afterLength);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 33 public void checkInsertNewline(String before, String after) throws Exception {
89 assertEquals(after, textWithCaret);
460 * When you press / after < I should reindent the current line. For example,
  /build/tools/droiddoc/templates-sdk/assets/design/
default.scss 42 &:after {
270 &:after {
278 &.empty:after {
288 &:after {
379 &:after {
665 &:after {
686 &.below:after {
713 &:after {
  /dalvik/vm/mterp/armv5te/
OP_EXECUTE_INLINE.S 27 bl .L${opcode}_continue @ make call; will return after
82 bl .L${opcode}_continue @ make call; will return after
OP_EXECUTE_INLINE_RANGE.S 25 bl .L${opcode}_continue @ make call; will return after
76 bl .L${opcode}_continue @ make call; will return after
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 224 Token after = (Token)all.get(index+1); local
225 String ws = after.getText();
227 //System.out.println("killing WS after action");
238 tokens.replace(after.getTokenIndex(), ws);
241 tokens.delete(after.getTokenIndex());
  /external/clang/test/Parser/
cxx-casting.cpp 44 (void)const_cast<::c>(&x); // expected-error{{found '<::' after a const_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
45 (void)dynamic_cast<::a>(b); // expected-error{{found '<::' after a dynamic_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
46 (void)reinterpret_cast<::c>(x); // expected-error{{found '<::' after a reinterpret_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
47 (void)static_cast<::c>(&x); // expected-error{{found '<::' after a static_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
51 expected-error {{expected '<' after 'static_cast'}} \
55 (void)static_cast<: // expected-error {{expected '<' after 'static_cast'}} \
62 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
64 (void)static_cast<:C c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
67 test1::A LCC B> e; // expected-error{{found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
68 (void)static_cast LCC c>(&x); // expected-error{{found '<::' after a static_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}
    [all...]
cxx-template-decl.cpp 7 export template x; // expected-error {{expected '<' after 'template'}}
18 expected-error {{template template parameter requires 'class' after the parameter list}}
19 template <template X> struct Err1; // expected-error {{expected '<' after 'template'}} \
21 template <template <typename> > struct Err2; // expected-error {{template template parameter requires 'class' after the parameter list}}
22 template <template <typename> Foo> struct Err3; // expected-error {{template template parameter requires 'class' after the parameter list}}
  /external/icu4c/i18n/
chnsecal.h 168 virtual int32_t newMoonNear(double days, UBool after) const;
  /external/v8/test/mjsunit/regress/
regress-326.js 38 assertEquals(undefined, nonArray[2], "sort undefined after largest");
40 assertEquals(0, nonArray[4], "don't affect after length.");
  /libcore/json/src/main/java/org/json/
JSONTokener.java 170 * Advances the position until after the next newline character. If the line
379 throw syntaxError("Expected ':' after " + name);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 301 long after = System.currentTimeMillis(); local
302 long error = (after - before - delay);
310 toLong[count][2] = after;
321 sb.append(" after: ");
374 assertTrue("Thread did not wake after 1 ms. (status = "

Completed in 747 milliseconds

1 2 34 5 6 7 8 91011>>