Home
last modified time | relevance | path

Searched refs:dashes (Results 1 – 25 of 83) sorted by relevance

1234

/external/strace/
Dcount.c128 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/skia/tools/lua/
Dcount_dashes.lua13 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/skqp/tools/lua/
Dcount_dashes.lua13 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/mesa3d/src/intel/tools/
Daubinator_error_decode.c416 char *dashes; in read_data_file() local
436 dashes = strstr(line, "---"); in read_data_file()
437 if (dashes) { in read_data_file()
455 ring_name = malloc(dashes - line); in read_data_file()
456 strncpy(ring_name, line, dashes - line); in read_data_file()
457 ring_name[dashes - line - 1] = '\0'; in read_data_file()
459 dashes += 4; in read_data_file()
461 if (strncasecmp(dashes, b->match, strlen(b->match)) == 0) in read_data_file()
469 dashes = strchr(dashes, '='); in read_data_file()
470 if (dashes && sscanf(dashes, "= 0x%08x %08x\n", &hi, &lo)) in read_data_file()
/external/curl/docs/cmdline-opts/
DMANPAGE.md12 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)
Dconfig.d13 optionally be given in the config file without the initial double dashes and
15 is specified with one or two dashes, there can be no colon or equals character
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/
DMakefile.in318 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/
DMakefile.in463 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/
DMakefile.in432 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/
Dregister.py312 dashes = '-' * 75
313 self.announce('%s%s%s' % (dashes, data, dashes))
/external/skqp/experimental/canvaskit/htmlcanvas/
Dcanvas2dcontext.js970 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/
Dcanvas2dcontext.js970 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/libexif/test/
DMakefile.in628 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/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-rc/Inputs/
Dinclude-noquotes.rc2 // In this form, the path can't include dashes.
/external/skia/experimental/svg/model/
DSkSVGAttributeParser.cpp631 SkTDArray<SkSVGLength> dashes; in parseDashArray() local
639 dashes.push_back(dash); in parseDashArray()
644 *dashArray = SkSVGDashArray(std::move(dashes)); in parseDashArray()
/external/skqp/experimental/svg/model/
DSkSVGAttributeParser.cpp631 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/
DMakefile.in801 dashes="$$banner"; \
806 dashes="$$skipped"; \
812 dashes="$$report"; \
814 dashes=`echo "$$dashes" | sed s/./=/g`; \
815 echo "$$dashes"; \
819 echo "$$dashes"; \
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp145 std::vector<uint32_t> dashes; in CreatePen() local
147 dashes.resize(pGraphState->m_DashCount); in CreatePen()
149 dashes[i] = FXSYS_round( in CreatePen()
152 dashes[i] = std::max(dashes[i], 1U); in CreatePen()
157 reinterpret_cast<const DWORD*>(dashes.data())); in CreatePen()
/external/cmockery/cmockery_0_1_2/
DMakefile.in823 dashes="$$banner"; \
828 dashes="$$skipped"; \
834 dashes="$$report"; \
836 dashes=`echo "$$dashes" | sed s/./=/g`; \
837 echo "$$dashes"; \
841 echo "$$dashes"; \
/external/parameter-framework/upstream/doc/requirements/
DCMakeLists.txt53 --smart # typographic dashes
/external/toolchain-utils/cros_utils/
Dpstat.py533 dashes = [0] * len(maxsize)
535 dashes[j] = '-' * (maxsize[j] - 2)
536 print lineincustcols(dashes, maxsize)
/external/skia/samplecode/
DSampleDegenerateQuads.cpp241 sk_sp<SkPathEffect> dashes = SkDashPathEffect::Make(kDashParams, 2, 0.f); in onDrawContent() local
313 linePaint.setPathEffect(dashes); in onDrawContent()
/external/llvm/runtimes/
DCMakeLists.txt69 # with dashes turned to underscores. This gives us the CMake variable prefixes
/external/markdown/docs/extensions/
DMeta-Data.txt34 underscores and dashes and must end with a colon. The values consist of
DWikiLinks.txt18 number, dashes, underscores and spaces surrounded by double brackets. Therefore

1234