Searched refs:after (Results 26 - 50 of 265) sorted by relevance

1234567891011

/external/webkit/Source/WebCore/css/
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/lib/antlr3/tree/
H A Dvisitor.rb45 +post_action+ is defined, a node is yielded to the block after all of its
71 after = post_action || @post_action
78 tree = after.call( tree ) unless after.nil? or flat
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dvia-parser.rb13 @after {
/external/clang/test/Parser/
H A Dcxx-casting.cpp44 (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
[all...]
H A Dcxx-template-decl.cpp7 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DbuildNotes.php13 $aLine = fgets($fileHandle, 4096); // Length parameter only optional after 4.2.0
H A DconsoleLogs.php13 $aLine = fgets($fileHandle, 4096); // Length parameter only optional after 4.2.0
/external/icu4c/i18n/unicode/
H A Ddtrule.h41 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/
H A DTemporaryFolder.java36 protected void after() { method in class:TemporaryFolder
/external/qemu-pc-bios/bochs/bios/
H A Dnotes36 > on a single-sector transfer, after the system has transferred
38 > on a multiple-sector transfer, after the system has transferred
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-31255.js69 --> but only if it follows a possible whitespace after line start
/external/dbus/tools/
H A Ddbus-launch-x11.c300 unsigned long after; local
314 XA_STRING, &type, &format, &items, &after,
316 if (type == None || after != 0 || data == NULL || format != 8)
327 XA_CARDINAL, &type, &format, &items, &after,
329 if (type != None && after == 0 && data != NULL && format == 32)
/external/mesa3d/src/glsl/
H A Dlist.h147 * Insert a node in the list after the current node
149 void insert_after(exec_node *after) argument
151 after->next = this->next;
152 after->prev = this;
154 this->next->prev = after;
155 this->next = after;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DCalendarTest.java263 // 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(earl
[all...]
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c244 static __inline__ void after ( char* fnname, int err ) function
1068 after("{,B,S,R}Send", err);
1113 after("Recv", err);
1132 after("Get_count", err);
1384 after("{,B,S,R}Isend", err);
1432 after("Irecv", err);
1464 after("Wait", err);
1499 after("Waitany", err);
1541 after("Waitall", err);
1570 after("Tes
[all...]
/external/dhcpcd/mk/
H A Dcc.mk17 -Wdeclaration-after-statement -Wsequence-point -Wextra
/external/junit/src/org/junit/internal/runners/
H A DMethodRoadie.java75 addFailure(new Exception(String.format("test timed out after %d milliseconds", timeout)));
143 for (Method after : afters)
145 after.invoke(fTest);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DBaseRenderer.cpp123 double after = currentTimeMS(); local
135 drawTileInfo(&canvas, renderInfo, updateCount, after - before);
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.h105 void setIntrinsicPadding(int before, int after) { setIntrinsicPaddingBefore(before); setIntrinsicPaddingAfter(after); } argument
H A DRenderTableCell.cpp269 if (RenderTableCell* after = table()->cellAfter(this)) {
270 top = max(top, after->borderHalfTop(true));
271 bottom = max(bottom, after->borderHalfBottom(true));
291 // FIXME: layoutDelta needs to be applied in parts before/after transforms and
535 int after = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderAfterColor, table->style()->direction(), table->style()->writingMode()); local
540 // (2) A before cell's after border.
541 result = chooseBorder(CollapsedBorderValue(&prevCell->style()->borderAfter(), prevCell->style()->visitedDependentColor(after), BCELL), result);
551 // (4) The previous row's after border.
560 result = chooseBorder(CollapsedBorderValue(&prevRow->style()->borderAfter(), prevRow->style()->visitedDependentColor(after), BROW), result);
574 // (6) Previous row group's after borde
613 int after = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderAfterColor, table->style()->direction(), table->style()->writingMode()); local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DStrip.java224 Token after = (Token)all.get(index+1);
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DObjectTest.java301 long after = System.currentTimeMillis();
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 = "
/external/opencv/cv/src/
H A D_cvlist.h308 ELEMENT_##type* after;\
312 after = (ELEMENT_##type*)pos.m_pos;\
313 element->m_prev = after->m_prev;\
314 element->m_next = after;\
315 after->m_prev = element;\
/external/qemu/proxy/
H A Dproxy_common.c231 proxy_connection_insert( ProxyConnection* conn, ProxyConnection* after )
233 conn->next = after->next;
234 after->next->prev = conn;
235 after->next = conn;
236 conn->prev = after;
/external/chromium/chrome/browser/resources/bookmark_manager/css/
H A Dbmm.css61 list > * > .label:empty:after,
62 list > * > .url:empty:after {
67 list > .folder > .url:empty:after {

Completed in 742 milliseconds

1234567891011