/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | gen-indic-table.py | 186 starts = [] variable 207 offset += ends[-1] - starts[-1] 211 starts.append (start) 216 offset += ends[-1] - starts[-1] 228 pages = set ([u>>page_bits for u in starts+ends+list (singles.keys ())]) 234 for (start,end) in zip (starts, ends):
|
D | gen-use-table.py | 458 starts = [] variable 491 offset += ends[-1] - starts[-1] 495 starts.append (start) 500 offset += ends[-1] - starts[-1] 512 pages = set([u>>page_bits for u in starts+ends]) 515 for (start,end) in zip (starts, ends):
|
/third_party/harfbuzz/src/ |
D | gen-indic-table.py | 201 starts = [] variable 221 offset += ends[-1] - starts[-1] 225 starts.append (start) 230 offset += ends[-1] - starts[-1] 242 pages = set ([u>>page_bits for u in starts+ends+list (singles.keys ())]) 248 for (start,end) in zip (starts, ends):
|
D | gen-use-table.py | 501 starts = [] variable 535 offset += ends[-1] - starts[-1] 539 starts.append (start) 544 offset += ends[-1] - starts[-1] 556 pages = set([u>>page_bits for u in starts+ends]) 559 for (start,end) in zip (starts, ends):
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-indic-table.py | 201 starts = [] variable 221 offset += ends[-1] - starts[-1] 225 starts.append (start) 230 offset += ends[-1] - starts[-1] 242 pages = set ([u>>page_bits for u in starts+ends+list (singles.keys ())]) 248 for (start,end) in zip (starts, ends):
|
D | gen-use-table.py | 476 starts = [] variable 510 offset += ends[-1] - starts[-1] 514 starts.append (start) 519 offset += ends[-1] - starts[-1] 531 pages = set([u>>page_bits for u in starts+ends]) 534 for (start,end) in zip (starts, ends):
|
/third_party/typescript/scripts/ |
D | regenerate-unicode-identifier-parts.js | 8 const starts = []; variable 12 starts.push(i - +startsActive); 27 console.log(`const unicodeESNextIdentifierStart = [${starts.join(", ")}];`);
|
/third_party/ffmpeg/tests/fate/ |
D | mov.mak | 5 fate-mov-elist-starts-ctts-2ndsample \ 14 fate-mov-ibi-elst-starts-b \ 17 fate-mov-bbi-elst-starts-b \ 58 fate-mov-elist-starts-ctts-2ndsample: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-elist-starts-ctts… 79 # ii) Edit list starts on B-frame. 82 fate-mov-ibi-elst-starts-b: CMD = framemd5 -flags +bitexact -i $(TARGET_SAMPLES)/mov/mov_ibi_elst_s… 88 # For example, when video starts on a B-frame, and edit list starts on that B-frame too. 90 fate-mov-bbi-elst-starts-b: CMD = framemd5 -flags +bitexact -acodec aac_fixed -i $(TARGET_SAMPLES)/…
|
/third_party/flutter/flutter/packages/flutter/lib/src/animation/ |
D | curves.dart | 119 /// set to 1.0 will essentially become a three-second animation that starts 306 /// A curve where the rate of change starts out quickly and then decelerates; an 531 /// A curve where the rate of change starts out quickly and then decelerates; an 554 /// A cubic animation curve that starts slowly and ends quickly. 559 /// A cubic animation curve that starts starts slowly and ends linearly. 566 /// A cubic animation curve that starts slowly and ends quickly. This is 576 /// A cubic animation curve that starts slowly and ends quickly. Based on a 587 /// A cubic animation curve that starts slowly and ends quickly. This curve is 598 /// A cubic animation curve that starts slowly and ends quickly. This curve is 611 /// A cubic animation curve that starts slowly and ends quickly. This curve is [all …]
|
/third_party/ltp/pan/ |
D | ltp-pan.c | 174 int starts = -1; in main() local 260 starts = atoi(optarg); in main() 399 if (timed == 1 && starts == -1) { /* timed, infinite by default */ in main() 400 starts = -1; in main() 401 } else if (starts == -1) { in main() 403 starts = coll->cnt; in main() 405 starts = 1; in main() 407 } else if (starts == 0) { /* if the user specified infinite, set it */ in main() 408 starts = -1; in main() 410 if (starts < keep_active) in main() [all …]
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_query.c | 59 struct util_dynarray starts; member 92 return util_dynarray_num_elements(&q->starts, struct zink_query_start); in get_num_starts() 373 util_dynarray_foreach(&query->starts, struct zink_query_start, start) { in destroy_query() 383 util_dynarray_fini(&query->starts); in destroy_query() 407 start = util_dynarray_grow(&q->starts, struct zink_query_start, 1); in query_pool_get_range() 410 start = util_dynarray_top_ptr(&q->starts, struct zink_query_start); in query_pool_get_range() 461 util_dynarray_init(&query->starts, NULL); in zink_create_query() 546 util_dynarray_foreach(&query->starts, struct zink_query_start, start) { in check_query_results() 743 struct zink_query_start *start = util_dynarray_top_ptr(&query->starts, struct zink_query_start); in copy_results_to_buffer() 753 struct zink_query_start *start = util_dynarray_top_ptr(&q->starts, struct zink_query_start); in reset_query_range() [all …]
|
/third_party/icu/tools/multi/proj/icu4cscan/ |
D | testxml.cpp | 220 int *starts = NULL; variable 228 starts = (int*)malloc((sizeof(scanArray)/sizeof(scanArray[0]))*sizeof(starts[0])); in initroot() 236 starts[i]=1; in initroot() 239 starts[i]=0; in initroot() 241 for(int j=starts[i];U_SUCCESS(*status)&&j<thisCount;j++) { in initroot() 296 for(int j=starts[i];U_SUCCESS(*status)&&j<thisCount;j++) { in date()
|
/third_party/flutter/skia/tools/lua/ |
D | paths.lua | 47 function string.starts(String,Start) function 68 if (string.starts(t.verb, "draw")) then 72 if (string.starts(t.verb, "clip")) then
|
/third_party/skia/docs/examples/ |
D | Path_rArcTo.cpp | 9 const SkPoint starts[] = {{20, 20}, {120, 20}, {70, 60}}; in draw() local 10 for (auto start : starts) { in draw()
|
/third_party/flutter/skia/docs/examples/ |
D | Path_rArcTo.cpp | 9 const SkPoint starts[] = {{20, 20}, {120, 20}, {70, 60}}; in draw() local 10 for (auto start : starts) { in draw()
|
/third_party/flutter/flutter/packages/flutter/test/animation/ |
D | futures_test.dart | 27 await controller1.forward(); // starts at t=0 again 29 await controller2.forward(); // starts at t=150 31 await controller3.forward(); // starts at t=799 76 await controller1.forward().orCancel; // starts at t=0 again 78 await controller2.forward().orCancel; // starts at t=150 80 await controller3.forward().orCancel; // starts at t=799
|
/third_party/icu/docs/userguide/format_parse/numbers/ |
D | rbnf-examples.md | 49 rules, each terminated by a semicolon. It starts with two special rules for 68 starts at zero, and succeeding ranges start at the previous start + 1. These 74 This starts a new range at 10 (not default) and sets the limit of the range 81 This starts a new range at 100 (again, limiting the previous rule's range). 97 ruleset or decimal format to use. If this text starts with '0' or '#', it is
|
/third_party/libxml2/test/XPath/expr/ |
D | strings | 12 starts-with("tititoto","titi") 13 starts-with("tititoto","to")
|
/third_party/ffmpeg/libavcodec/ |
D | indeo3.c | 901 uint32_t starts[3], ends[3]; in decode_frame_headers() local 969 starts[0] = y_offset; in decode_frame_headers() 970 starts[1] = v_offset; in decode_frame_headers() 971 starts[2] = u_offset; in decode_frame_headers() 976 if (starts[i] < ends[j] && starts[i] > starts[j]) in decode_frame_headers() 977 ends[j] = starts[i]; in decode_frame_headers() 980 ctx->y_data_size = ends[0] - starts[0]; in decode_frame_headers() 981 ctx->v_data_size = ends[1] - starts[1]; in decode_frame_headers() 982 ctx->u_data_size = ends[2] - starts[2]; in decode_frame_headers()
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | bottom_sheet_test.dart | 77 await tester.pump(); // bottom sheet dismiss animation starts 110 await tester.pump(); // bottom sheet show animation starts 130 await tester.pump(); // bottom sheet dismiss animation starts 159 await tester.pump(); // bottom sheet show animation starts 165 await tester.pump(); // bottom sheet dismiss animation starts 240 await tester.pump(); // bottom sheet show animation starts 331 await tester.pump(); // bottom sheet show animation starts
|
/third_party/icu/icu4c/source/common/ |
D | stringtriebuilder.cpp | 152 int32_t starts[kMaxBranchLinearSubNodeLength]; in writeBranchSubNode() local 156 int32_t i=starts[unitNumber]=start; in writeBranchSubNode() 163 starts[unitNumber]=start; in writeBranchSubNode() 173 … jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1); in writeBranchSubNode() 183 start=starts[unitNumber]; in writeBranchSubNode()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | stringtriebuilder.cpp | 152 int32_t starts[kMaxBranchLinearSubNodeLength]; in writeBranchSubNode() local 156 int32_t i=starts[unitNumber]=start; in writeBranchSubNode() 163 starts[unitNumber]=start; in writeBranchSubNode() 173 … jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1); in writeBranchSubNode() 183 start=starts[unitNumber]; in writeBranchSubNode()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | stringtriebuilder.cpp | 152 int32_t starts[kMaxBranchLinearSubNodeLength]; in writeBranchSubNode() local 156 int32_t i=starts[unitNumber]=start; in writeBranchSubNode() 163 starts[unitNumber]=start; in writeBranchSubNode() 173 … jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1); in writeBranchSubNode() 183 start=starts[unitNumber]; in writeBranchSubNode()
|
/third_party/node/deps/icu-small/source/common/ |
D | stringtriebuilder.cpp | 152 int32_t starts[kMaxBranchLinearSubNodeLength]; in writeBranchSubNode() local 156 int32_t i=starts[unitNumber]=start; in writeBranchSubNode() 163 starts[unitNumber]=start; in writeBranchSubNode() 173 … jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1); in writeBranchSubNode() 183 start=starts[unitNumber]; in writeBranchSubNode()
|
/third_party/icu/docs/ |
D | Gemfile | 18 # If you aren't using GitHub Pages, then uncomment out the line above that starts with 19 # 'gem "jekyll"' and then comment out the line below that starts with 'gem "github-pages"'.
|