/external/strace/ |
D | count.c | 128 static const char dashes[] = "----------------"; in call_summary_pers() local 143 fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes); in call_summary_pers() 184 fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes); in call_summary_pers()
|
/external/skqp/tools/lua/ |
D | count_dashes.lua | 13 dashes = 0 29 dashes = dashes + 1 30 pathPieces[dashes] = 0 37 pathPieces[dashes] = pathPieces[dashes] + 1 59 io.write(string.format("%d %d %d\n", 2*dashes, pieces5, pieces10))
|
/external/igt-gpu-tools/tests/i915/ |
D | i915_hangman.c | 151 char *dashes; in check_error_state() local 155 dashes = strstr(line, "---"); in check_error_state() 156 if (!dashes) in check_error_state() 159 matched = sscanf(dashes, "--- gtt_offset = 0x%08x %08x\n", in check_error_state() 166 strncpy(expected_line, line, dashes - line); in check_error_state() 167 expected_line[dashes - line - 1] = '\0'; in check_error_state()
|
/external/curl/docs/cmdline-opts/ |
D | MANPAGE.md | 12 option name is written without any prefixing dashes. Like the file name for 20 Long: (long form name, without dashes) 26 Mutexed: (space separated list of options this overrides, no dashes) 27 Requires: (space separated list of features this requires, no dashes) 28 See-also: (space separated list of related options, no dashes)
|
D | config.d | 14 optionally be given in the config file without the initial double dashes and 16 is specified with one or two dashes, there can be no colon or equals character
|
/external/igt-gpu-tools/tools/ |
D | intel_error_decode.c | 587 char *dashes; in read_data_file() local 601 dashes = strstr(line, "---"); in read_data_file() 602 if (dashes) { in read_data_file() 621 new_ring_name = malloc(dashes - line); in read_data_file() 622 strncpy(new_ring_name, line, dashes - line); in read_data_file() 623 new_ring_name[dashes - line - 1] = '\0'; in read_data_file() 635 dashes += 4; in read_data_file() 639 if (strncasecmp(dashes, b->match, in read_data_file() 643 dashes = strchr(dashes, '='); in read_data_file() 644 if (!dashes) in read_data_file() [all …]
|
/external/pdfium/core/fxge/ |
D | cfx_graphstate.cpp | 22 void CFX_GraphState::SetLineDash(std::vector<float> dashes, in SetLineDash() argument 27 for (float& val : dashes) in SetLineDash() 29 pData->m_DashArray = std::move(dashes); in SetLineDash()
|
D | cfx_graphstate.h | 23 void SetLineDash(std::vector<float> dashes, float phase, float scale);
|
/external/mesa3d/src/intel/tools/ |
D | aubinator_error_decode.c | 429 char *dashes; in read_data_file() local 450 dashes = strstr(line, "---"); in read_data_file() 451 if (dashes) { in read_data_file() 472 ring_name = malloc(dashes - line); in read_data_file() 473 strncpy(ring_name, line, dashes - line); in read_data_file() 474 ring_name[dashes - line - 1] = '\0'; in read_data_file() 476 dashes += 4; in read_data_file() 478 if (strncasecmp(dashes, b->match, strlen(b->match)) == 0) in read_data_file() 487 dashes = strchr(dashes, '='); in read_data_file() 488 if (dashes && sscanf(dashes, "= 0x%08x %08x\n", &hi, &lo)) in read_data_file()
|
D | error2aub.c | 381 char *dashes = strstr(line, " --- "); in main() local 382 if (dashes) { in main() 383 dashes += 5; in main() 388 char *bo_address_str = strchr(dashes, '='); in main() 407 if (strncasecmp(dashes, b->match, strlen(b->match)) == 0) in main()
|
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/ |
D | Makefile.in | 318 dashes="$$banner"; \ 327 dashes="$$skipped"; \ 333 dashes="$$report"; \ 335 dashes=`echo "$$dashes" | sed s/./=/g`; \ 341 echo "$${col}$$dashes$${std}"; \ 345 echo "$${col}$$dashes$${std}"; \
|
/external/libexif/test/nls/ |
D | Makefile.in | 463 dashes="$$banner"; \ 472 dashes="$$skipped"; \ 478 dashes="$$report"; \ 480 dashes=`echo "$$dashes" | sed s/./=/g`; \ 482 echo "$$grn$$dashes"; \ 484 echo "$$red$$dashes"; \ 489 echo "$$dashes$$std"; \
|
/external/libcap-ng/libcap-ng-0.7/src/test/ |
D | Makefile.in | 432 dashes="$$banner"; \ 441 dashes="$$skipped"; \ 447 dashes="$$report"; \ 449 dashes=`echo "$$dashes" | sed s/./=/g`; \ 455 echo "$${col}$$dashes$${std}"; \ 459 echo "$${col}$$dashes$${std}"; \
|
/external/python/cpython2/Lib/distutils/command/ |
D | register.py | 312 dashes = '-' * 75 313 self.announce('%s%s%s' % (dashes, data, dashes))
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | canvas2dcontext.js | 970 this.setLineDash = function(dashes) { argument 971 for (var i = 0; i < dashes.length; i++) { 972 if (!isFinite(dashes[i]) || dashes[i] < 0) { 977 if (dashes.length % 2 === 1) { 980 Array.prototype.push.apply(dashes, dashes); argument 982 this._lineDashList = dashes;
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | canvas2dcontext.js | 954 this.setLineDash = function(dashes) { argument 955 for (var i = 0; i < dashes.length; i++) { 956 if (!isFinite(dashes[i]) || dashes[i] < 0) { 961 if (dashes.length % 2 === 1) { 964 Array.prototype.push.apply(dashes, dashes); argument 966 this._lineDashList = dashes;
|
/external/llvm-project/llvm/test/tools/llvm-rc/Inputs/ |
D | include-noquotes.rc | 2 // In this form, the path can't include dashes.
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_allstates.cpp | 42 std::vector<float> dashes = ReadArrayElementsToVector(pArray, pArray->size()); in SetLineDash() local 43 m_GraphState.SetLineDash(std::move(dashes), phase, scale); in SetLineDash()
|
/external/libexif/test/ |
D | Makefile.in | 628 dashes="$$banner"; \ 637 dashes="$$skipped"; \ 643 dashes="$$report"; \ 645 dashes=`echo "$$dashes" | sed s/./=/g`; \ 647 echo "$$grn$$dashes"; \ 649 echo "$$red$$dashes"; \ 654 echo "$$dashes$$std"; \
|
/external/oss-fuzz/projects/hoextdown/ |
D | hoextdown.dict | 9 dashes="---"
|
/external/kotlinx.coroutines/site/docs/assets/ |
D | main.scss | 2 # Only the main Sass file needs front matter (the dashes are enough)
|
/external/skqp/experimental/svg/model/ |
D | SkSVGAttributeParser.cpp | 631 SkTDArray<SkSVGLength> dashes; in parseDashArray() local 639 dashes.push_back(dash); in parseDashArray() 644 *dashArray = SkSVGDashArray(std::move(dashes)); in parseDashArray()
|
/external/ipsec-tools/src/racoon/ |
D | Makefile.in | 801 dashes="$$banner"; \ 806 dashes="$$skipped"; \ 812 dashes="$$report"; \ 814 dashes=`echo "$$dashes" | sed s/./=/g`; \ 815 echo "$$dashes"; \ 819 echo "$$dashes"; \
|
/external/skia/samplecode/ |
D | SampleDegenerateQuads.cpp | 251 sk_sp<SkPathEffect> dashes = SkDashPathEffect::Make(kDashParams, 2, 0.f); in onDrawContent() local 326 linePaint.setPathEffect(dashes); in onDrawContent() 358 domainPaint.setPathEffect(dashes); in onDrawContent()
|
/external/skia/modules/svg/src/ |
D | SkSVGAttributeParser.cpp | 753 SkTDArray<SkSVGLength> dashes; in parse() local 761 dashes.push_back(dash); in parse() 766 *dashArray = SkSVGDashArray(std::move(dashes)); in parse()
|