/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 62 static bool is_clockwise(const SkVector& before, const SkVector& after) in is_clockwise() argument 64 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0; in is_clockwise() 85 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) in HandleInnerJoin() argument 97 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY); in HandleInnerJoin() 104 SkVector after; in BluntJoiner() local 105 afterUnitNormal.scale(radius, &after); in BluntJoiner() 110 after.negate(); in BluntJoiner() 113 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY); in BluntJoiner() 114 HandleInnerJoin(inner, pivot, after); in BluntJoiner() 128 SkVector after = afterUnitNormal; in RoundJoiner() local [all …]
|
/external/skia/legacy/src/core/ |
D | SkStrokerPriv.cpp | 62 static bool is_clockwise(const SkVector& before, const SkVector& after) in is_clockwise() argument 64 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0; in is_clockwise() 85 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) in HandleInnerJoin() argument 97 inner->lineTo(pivot.fX - after.fX, pivot.fY - after.fY); in HandleInnerJoin() 104 SkVector after; in BluntJoiner() local 105 afterUnitNormal.scale(radius, &after); in BluntJoiner() 110 after.negate(); in BluntJoiner() 113 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY); in BluntJoiner() 114 HandleInnerJoin(inner, pivot, after); in BluntJoiner() 128 SkVector after = afterUnitNormal; in RoundJoiner() local [all …]
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
D | delete-removal-expected.txt | 3 foo (after a named property settter set) is: bar 4 foo (after a delete) is: undefined 5 foo (after an indexed setter set) is: bar 6 foo (after deleting FOO (not foo)) is: bar 7 foo (after a delete) is: undefined 8 foo (after calling setItem) is: bar 9 foo (after a delete) is: undefined 10 foo (after a redundant delete) is: undefined 11 foo (after an implicit settter set) is: bar 12 foo (after an indexed delete) is: undefined
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
D | delete-removal-expected.txt | 3 foo (after a named property setter set) is: bar 4 foo (after a delete) is: undefined 5 foo (after an indexed setter set) is: bar 6 foo (after deleting FOO (not foo)) is : bar 7 foo (after a delete) is: undefined 8 foo (after calling setItem) is: bar 9 foo (after a delete) is: undefined 10 foo (after a redundant delete) is: undefined 11 foo (after a named property setter set) is: bar 12 foo (after an indexed delete) is: undefined
|
/external/llvm/lib/Target/MBlaze/ |
D | MBlazeSchedule3.td | 20 // ready after the execute stage. 25 [ 2 // result ready after two cycles 26 , 1 // first operand read after one cycle 27 , 1 ]>, // second operand read after one cycle 34 // ready after the execute stage. 39 [ 4 // result ready after four cycles 40 , 1 // first operand read after one cycle 41 , 1 ]>, // second operand read after one cycle 47 // after the execute stage. 52 [ 35 // result ready after 35 cycles [all …]
|
D | MBlazeSchedule5.td | 20 // ready after the execute stage. 27 [ 2 // result ready after two cycles 28 , 1 // first operand read after one cycle 29 , 1 ]>, // second operand read after one cycle 35 // and the result is ready after the execute stage. 42 [ 2 // result ready after two cycles 43 , 1 // first operand read after one cycle 44 , 1 ]>, // second operand read after one cycle 50 // after the memory access stage. 57 [ 33 // result ready after 33 cycles [all …]
|
/external/icu4c/i18n/ |
D | regexcst.txt | 272 ']' n set-after-lit doSetLiteral 286 # set-start after the [ and special case leading characters (^ and/or ]) but before 291 '[' n set-open ^set-after-set doSetBeginUnion 295 default n set-after-lit doSetLiteral 302 default set-after-lit doSetAddDash 309 default set-after-lit doSetAddAmp 312 # set-after-lit The last thing scanned was a literal character within a set. 315 set-after-lit: 317 '[' n set-open ^set-after-set doSetBeginUnion 322 default n set-after-lit doSetLiteral [all …]
|
/external/icu4c/data/rbnf/ |
D | ee.txt | 28 "%%after-hundreds:", 45 "%%after-thousands:", 48 "%%after-hundred-thousands:", 51 "%%after-millions:", 55 "%%after-billions:", 73 "100: alafa <%spellout-cardinal<[ >%%after-hundreds>];", 74 "1000: akpe <%spellout-cardinal<[>%%after-thousands>];", 75 "100000/1000: akpe <%spellout-cardinal<[>%%after-hundred-thousands>];", 76 "1000000: mili\u0254n <%spellout-cardinal<[>%%after-millions>];", 77 "1000000000000: bili\u0254n <%spellout-cardinal<[>%%after-billions>];",
|
D | vi.txt | 33 "%%after-hundred:", 36 "%%after-thousand-or-more:", 37 "0: kh\u00F4ng tr\u0103m =%%after-hundred=;", 54 "100: << tr\u0103m[ >%%after-hundred>];", 55 "1000: << ngh\u00ECn[ >%%after-thousand-or-more>];", 56 "1000000: << tri\u1EC7u[ >%%after-thousand-or-more>];", 57 "1000000000: << t\u1EF7[ >%%after-thousand-or-more>];",
|
/external/freetype/src/base/ |
D | ftutil.c | 287 FT_ListNode after = list->head; in FT_List_Insert() local 290 node->next = after; in FT_List_Insert() 293 if ( !after ) in FT_List_Insert() 296 after->prev = node; in FT_List_Insert() 308 FT_ListNode before, after; in FT_List_Remove() local 312 after = node->next; in FT_List_Remove() 315 before->next = after; in FT_List_Remove() 317 list->head = after; in FT_List_Remove() 319 if ( after ) in FT_List_Remove() 320 after->prev = before; in FT_List_Remove() [all …]
|
/external/webkit/LayoutTests/fast/xpath/ |
D | substring-after-expected.txt | 1 Test for bug 15437: XPath substring-after function is broken. 3 PASS document.evaluate("substring-after('abcde', 'd')", document, null, XPathResult.STRING_TYPE, nu… 4 PASS document.evaluate("substring-after('abcde', 'f')", document, null, XPathResult.STRING_TYPE, nu… 5 PASS document.evaluate("substring-after('abcde', '')", document, null, XPathResult.STRING_TYPE, nul… 6 PASS document.evaluate("substring-after('1999/04/01', '/')", document, null, XPathResult.STRING_TYP… 7 PASS document.evaluate("substring-after('1999/04/01', '19')", document, null, XPathResult.STRING_TY…
|
/external/v8/src/ |
D | date.cc | 334 DST* after = NULL; in ProbeDST() local 343 if (after == NULL || after->end_sec > dst_[i].end_sec) { in ProbeDST() 344 after = &dst_[i]; in ProbeDST() 352 before = InvalidSegment(before_) ? before_ : LeastRecentlyUsedDST(after); in ProbeDST() 354 if (after == NULL) { in ProbeDST() 355 after = InvalidSegment(after_) && before != after_ in ProbeDST() 360 ASSERT(after != NULL); in ProbeDST() 361 ASSERT(before != after); in ProbeDST() 363 ASSERT(InvalidSegment(after) || time_sec < after->start_sec); in ProbeDST() 364 ASSERT(InvalidSegment(before) || InvalidSegment(after) || in ProbeDST() [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | AtomicLongMapTest.java | 57 long after = map.get(key); in testIncrementAndGet() local 58 assertEquals(before + 1, after); in testIncrementAndGet() 59 assertEquals(after, result); in testIncrementAndGet() 90 long after = map.get(key); in testGetAndIncrement() local 91 assertEquals(before + 1, after); in testGetAndIncrement() 123 long after = map.get(key); in testDecrementAndGet() local 124 assertEquals(before - 1, after); in testDecrementAndGet() 125 assertEquals(after, result); in testDecrementAndGet() 156 long after = map.get(key); in testGetAndDecrement() local 157 assertEquals(before - 1, after); in testGetAndDecrement() [all …]
|
/external/icu4c/data/misc/ |
D | dayPeriods.txt | 117 after{"12:00"} 145 after{"12:00"} 151 after{"12:00"} 202 after{"12:00"} 219 after{"12:00"} 248 after{"12:00"} 319 after{"12:00"}
|
/external/skia/tools/ |
D | git-skia-verify | 62 rm -rf {before,after,diff} 63 mkdir {before,after,diff} 75 ./out/Release/gm -w after 95 ./out/Release/skdiff before after diff
|
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/ |
D | set-href-attribute-prevents-rebase-expected.txt | 8 Search attribute, update document base URI after attribute has been set 13 Pathname attribute, update document base URI after attribute has been set 18 Pathname attribute, update document base URI after attribute has been set 25 Host attribute, update document base URI after attribute has been set 30 Hostname attribute, update document base URI after attribute has been set 35 Protocol attribute, update document base URI after attribute has been set 40 Port attribute, update document base URI after attribute has been set
|
/external/llvm/test/CodeGen/Generic/ |
D | print-after.ll | 3 ; CHECK: -print-after 4 ; CHECK-NOT: -print-after-all 6 ; CHECK: -print-after-all
|
/external/freetype/src/pshinter/ |
D | pshalgo.c | 1038 PSH_Point first, start, end, before, after; in psh_glyph_compute_inflections() local 1091 after = end; in psh_glyph_compute_inflections() 1096 end = after; in psh_glyph_compute_inflections() 1097 after = after->next; in psh_glyph_compute_inflections() 1098 if ( after == first ) in psh_glyph_compute_inflections() 1101 out_x = after->org_u - end->org_u; in psh_glyph_compute_inflections() 1102 out_y = after->org_v - end->org_v; in psh_glyph_compute_inflections() 1123 end = after; in psh_glyph_compute_inflections() 1402 PSH_Point point, before, after; in psh_glyph_compute_extrema() local 1410 after = point; in psh_glyph_compute_extrema() [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | ClassCacheTest.java | 39 long after = System.currentTimeMillis(); in fixForCorberturaAndSonarCodeCoverage() local 41 Assert.assertEquals(1, (after - before) / timeToWait); in fixForCorberturaAndSonarCodeCoverage() 78 long after = System.currentTimeMillis(); in fixForCorberturaAndSonarCodeCoverageTheOtherWayAround() local 80 Assert.assertEquals(1, (after - before) / timeToWait); in fixForCorberturaAndSonarCodeCoverageTheOtherWayAround()
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
D | visitor.rb | 71 after = post_action || @post_action 78 tree = after.call( tree ) unless after.nil? or flat
|
/external/webkit/LayoutTests/fast/dom/NodeList/ |
D | invalidate-node-lists-when-parsing-expected.txt | 3 If the test passes, you should see "before: not found", "after: found" and "onload: found". 5 If the cache is not invalidated when the testElement is parsed, both before and after will be "not … 8 after: found
|
/external/valgrind/main/memcheck/tests/ |
D | custom_alloc.stderr.exp-s390x-mvc | 3 Address 0x........ is 0 bytes after a block of size 40 alloc'd 9 Address 0x........ is 0 bytes after a block of size 20 alloc'd 18 Address 0x........ is 0 bytes after a block of size 28 alloc'd 63 Address 0x........ is 0 bytes after a block of size 20 alloc'd 70 Address 0x........ is 7 bytes after a block of size 20 alloc'd 91 Address 0x........ is 0 bytes after a recently re-allocated block of size 10 alloc'd 98 Address 0x........ is 7 bytes after a recently re-allocated block of size 10 alloc'd 105 Address 0x........ is 8 bytes after a recently re-allocated block of size 10 alloc'd
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | parser.ml | 59 '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 var";
|
/external/webkit/LayoutTests/http/tests/appcache/ |
D | origins-with-appcache-expected.txt | 1 …t have an application cache. First, it tests that no origins are reported after all application ca… 3 Origins with application cache after deletion: 4 Origins with application cache after frame was cached: http_127.0.0.1_8000
|
/external/clang/include/clang/Basic/ |
D | DiagnosticParseKinds.td | 34 "after member function definition}0">, 40 "extra ';' after member function definition">, 166 "expected member name or ';' after declaration specifiers">; 177 "expected function body after function declarator">; 186 "expected ';' after top level declarator">; 190 def err_expected_lparen_after : Error<"expected '(' after '%0'">; 191 def err_expected_lparen_after_id : Error<"expected '(' after %0">; 192 def err_expected_less_after : Error<"expected '<' after '%0'">; 193 def err_expected_equal_after : Error<"expected '=' after %0">; 199 def err_expected_semi_after : Error<"expected ';' after %0">; [all …]
|