Searched refs:after (Results 1 - 25 of 264) sorted by relevance

1234567891011

/external/clang/test/Lexer/
H A Dmsdos-cpm-eof.c7 I am random garbage after ^Z
/external/junit/src/org/junit/rules/
H A DExternalResource.java23 * protected void after() {
48 after();
56 * @throws if setup fails (which will disable {@code after}
65 protected void after() { method in class:ExternalResource
/external/skia/src/core/
H A DSkStrokerPriv.cpp62 static bool is_clockwise(const SkVector& before, const SkVector& after) argument
64 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0;
85 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) argument
97 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY);
104 SkVector after; local
105 afterUnitNormal.scale(radius, &after);
110 after.negate();
113 outer->lineTo(pivot.fX + after
128 SkVector after = afterUnitNormal; local
171 SkVector after = afterUnitNormal; local
[all...]
/external/valgrind/unittest/
H A Dgtest_fixture_injection.h31 // after running each test case.
41 #error Please include gtest_fixture_injection.h after <gtest/gtest.h>
/external/clang/test/Parser/
H A Dcxx0x-literal-operators.cpp5 expected-error {{string literal after 'operator' must be '""'}} \
/external/webkit/Tools/EWSTools/
H A Dstart-queue.sh54 ./Tools/Scripts/webkit-patch $1 --bot-id=$2 --no-confirm --exit-after-iteration 10
/external/freetype/src/base/
H A Dftutil.c287 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
332 FT_ListNode before, after; local
[all...]
/external/v8/src/
H A Ddate.cc127 // Check if the date is after February.
334 DST* after = NULL; local
343 if (after == NULL || after->end_sec > dst_[i].end_sec) {
344 after = &dst_[i];
349 // If before or after segments were not found,
352 before = InvalidSegment(before_) ? before_ : LeastRecentlyUsedDST(after);
354 if (after == NULL) {
355 after = InvalidSegment(after_) && before != after_
360 ASSERT(after !
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dstd_reg_imm.c47 char after[6]; member in struct:__anon14205
/external/junit/src/org/junit/internal/runners/
H A DClassRoadie.java70 for (Method after : afters)
72 after.invoke(null);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicLongMapTest.java57 long after = map.get(key);
58 assertEquals(before + 1, after);
59 assertEquals(after, result);
90 long after = map.get(key);
91 assertEquals(before + 1, after);
123 long after = map.get(key);
124 assertEquals(before - 1, after);
125 assertEquals(after, result);
156 long after = map.get(key);
157 assertEquals(before - 1, after);
[all...]
/external/llvm/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.mli21 [m] to the channel [c]. If [unbuffered] is [true], after every write the fd
28 to the channel [c]. If [unbuffered] is [true], after every write the fd
/external/chromium/chrome/browser/ui/cocoa/translate/
H A Dtranslate_infobar_base.h25 // Move the |toMove| view |spacing| pixels before/after the |anchor| view.
26 // |after| signifies the side of |anchor| on which to place |toMove|.
27 void MoveControl(NSView* anchor, NSView* toMove, int spacing, bool after);
31 // Check that the control |before| is ordered visually before the |after|
34 bool VerifyControlOrderAndSpacing(id before, id after);
/external/icu4c/i18n/unicode/
H A Dsimpletz.h65 * 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 th
895 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
912 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml58 'Token.Ident id ?? "expected identifier after for";
59 'Token.Kwd '=' ?? "expected '=' after for";
64 'Token.Kwd ',' ?? "expected ',' after for";
77 raise (Stream.Error "expected 'in' after for")
80 raise (Stream.Error "expected '=' after for")
99 (* Parse the primary expression after the binary operator. *)
106 (* If BinOp binds less tightly with rhs than the operator after
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml58 'Token.Ident id ?? "expected identifier after for";
59 'Token.Kwd '=' ?? "expected '=' after for";
64 'Token.Kwd ',' ?? "expected ',' after for";
77 raise (Stream.Error "expected 'in' after for")
80 raise (Stream.Error "expected '=' after for")
110 (* Parse the unary expression after the binary operator. *)
117 (* If BinOp binds less tightly with rhs than the operator after
/external/freetype/src/pshinter/
H A Dpshalgo.c1038 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
1964 PSH_Point before, after; local
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml59 'Token.Ident id ?? "expected identifier after for";
60 'Token.Kwd '=' ?? "expected '=' after for";
65 'Token.Kwd ',' ?? "expected ',' after for";
78 raise (Stream.Error "expected 'in' after for")
81 raise (Stream.Error "expected '=' after for")
89 'Token.Ident id ?? "expected identifier after var";
93 'Token.In ?? "expected 'in' keyword after 'var'";
124 (* Parse the primary expression after the binary operator. *)
131 (* If BinOp binds less tightly with rhs than the operator after
153 'Token.Ident id ?? "expected identifier list after va
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSPropertyNames.in29 # line height needs to be right after the above high-priority properties
118 page-break-after
181 -webkit-border-after
182 -webkit-border-after-color
183 -webkit-border-after-style
184 -webkit-border-after-width
216 -webkit-column-break-after
231 -webkit-hyphenate-limit-after
240 -webkit-margin-after-collapse
245 -webkit-margin-after
[all...]
H A Dhtml.css65 -webkit-margin-after: 1__qem;
94 -webkit-margin-after: 1em;
106 -webkit-margin-after: 1em;
119 q:after {
132 -webkit-margin-after: 0.5em;
149 -webkit-margin-after: 0.67em;
158 -webkit-margin-after: 0.83em;
164 -webkit-margin-after: 1em;
170 -webkit-margin-after: 1.33em;
176 -webkit-margin-after
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dactions.rb66 @after { say('after') }
97 after
126 @after {events << 'after'}
/external/clang/include/clang/Edit/
H A DCommit.h77 bool insertWrap(StringRef before, CharSourceRange range, StringRef after);
92 bool insertWrap(StringRef before, SourceRange TokenRange, StringRef after) { argument
93 return insertWrap(before, CharSourceRange::getTokenRange(TokenRange), after);
/external/markdown/markdown/extensions/
H A Dheaderid.py100 after = block[m.end():] # All lines after header
117 if after:
119 blocks.insert(0, after)
/external/icu4c/i18n/
H A Ddtrule.cpp40 UBool after,
46 if (after) {
37 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after, int32_t millisInDay, TimeRuleType timeType) argument
/external/libvpx/examples/includes/geshi/geshi/
H A Dcfm.php289 'DISALLOWED_AFTER' => '(?![a-zA-Z0-9_\|%\\-])', // allow & after keywords
293 'DISALLOWED_AFTER' => '(?![a-zA-Z0-9_\|%\\-])', // allow & after keywords

Completed in 616 milliseconds

1234567891011