/third_party/typescript/tests/baselines/reference/ |
D | doNotEmitDetachedCommentsAtStartOfLambdaFunction.types | 23 >() => { // Single line comment with more than one blank line return 0;} : () => number 25 // Single line comment with more than one blank line 33 >() => { /* multi-line comment with more than one blank line */ return 0;} : () => … 36 multi-line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfLambdaFunction.symbols | 18 // Single line comment with more than one blank line 26 multi-line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfFunctionBody.types | 27 // Single line comment with more than one blank line 39 multi line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfConstructor.types | 32 // Single Line Comment with more than one blank line 46 Multi-line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfFunctionBody.symbols | 25 // Single line comment with more than one blank line 36 multi line comment with more than one blank line
|
D | doNotEmitDetachedCommentsAtStartOfConstructor.symbols | 30 // Single Line Comment with more than one blank line 43 Multi-line comment with more than one blank line
|
/third_party/skia/modules/pathkit/tests/ |
D | path.spec.js | 17 let blank = PathKit.NewPath(); 23 expect(path.equals(blank)).toBe(false); 24 expect(otherPath.equals(blank)).toBe(false); 25 expect(blank.equals(path)).toBe(false); 26 expect(blank.equals(otherPath)).toBe(false); 30 blank.delete();
|
/third_party/python/Misc/ |
D | indent.pro | 1 --blank-lines-after-declarations 2 --blank-lines-after-procedures 22 --swallow-optional-blank-lines
|
/third_party/ffmpeg/libavfilter/ |
D | vf_displace.c | 45 uint8_t blank[4]; member 101 const uint8_t blank = s->blank[plane]; in displace_planar() local 111 dst[x] = blank; in displace_planar() 174 const uint8_t *blank = s->blank; in displace_packed() local 187 dst[x * step + c] = blank[c]; in displace_packed() 289 s->blank[1] = s->blank[2] = 128; in config_input() 290 s->blank[0] = 16; in config_input()
|
D | vf_tile.c | 45 FFDrawColor blank; member 143 ff_draw_color(&tile->draw, &tile->blank, tile->rgba_color); in config_props() 166 ff_fill_rectangle(&tile->draw, &tile->blank, in draw_blank_frame() 214 ff_fill_rectangle(&tile->draw, &tile->blank, in filter_frame()
|
/third_party/toybox/scripts/ |
D | mkflags.c | 102 struct flag *blank = calloc(sizeof(struct flag), 1); in digest() local 104 blank->next = list; in digest() 105 blank->lopt = new; in digest() 106 list = blank; in digest()
|
D | config2help.c | 482 int i, blank; in main() local 492 blank = 0; in main() 501 if (!*s) blank = 2; in main() 503 while (blank--) { in main() 507 blank = 1; in main()
|
/third_party/glib/patch/ |
D | backport-gkeyfile-Ensure-we-don-t-add-extra-blank-line-above-new-group.patch | 4 Subject: [PATCH] gkeyfile: Ensure we don't add extra blank line above new 24 /* separate groups by a blank line if we don't keep comments or group is created */ 46 + /* check if we don't add a blank line above new group if last value of preceding
|
/third_party/curl/tests/data/ |
D | test1271 | 30 http://%HOSTIP:%HTTPPORT/we/want/our/%TESTNUMBER -w @%LOGDIR/blank%TESTNUMBER 32 <file name="%LOGDIR/blank%TESTNUMBER">
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/asm/vert/ |
D | block-struct-initializer.asm.vert | 37 %blank = OpConstantNull %vec4 41 OpStore %gl_Position %blank
|
/third_party/protobuf/examples/ |
D | add_person.dart | 16 print('Enter email address (blank for none) : '); 21 print('Enter a phone number (or leave blank to finish): ');
|
/third_party/ffmpeg/libavcodec/ |
D | fitsdec.c | 73 if (!header->blank_found || t != header->blank) { \ in fill_data_min_max() 251 if (!header.blank_found || t32 != header.blank) { \ in fits_decode_frame() 281 if (!header.blank_found || t != header.blank) { \ in fits_decode_frame()
|
/third_party/ninja/doc/ |
D | doxygen.config | 31 # where doxygen was started. If left blank the current directory will be used. 86 # If left blank, the following values are used ("$name" is automatically 116 # If left blank the directory from which doxygen is run is used as the 124 # If left blank only the name of the header file containing the class 409 # by doxygen. Possible values are YES and NO. If left blank NO is used. 414 # generated by doxygen. Possible values are YES and NO. If left blank 450 # and error messages should be written. If left blank the output is written 470 # blank the following patterns are tested: 479 # If left blank NO is used. 512 # blank all files are included. [all …]
|
/third_party/popt/ |
D | Doxyfile.in | 31 # where doxygen was started. If left blank the current directory will be used. 85 # If left blank, the following values are used ("$name" is automatically 115 # If left blank the directory from which doxygen is run is used as the 123 # If left blank only the name of the header file containing the class 407 # by doxygen. Possible values are YES and NO. If left blank NO is used. 412 # generated by doxygen. Possible values are YES and NO. If left blank 448 # and error messages should be written. If left blank the output is written 475 # blank the following patterns are tested: 484 # If left blank NO is used. 517 # blank all files are included. [all …]
|
/third_party/skia/bazel/ |
D | BUILD.bazel | 1 # Intentionally left blank
|
/third_party/toybox/toys/pending/ |
D | vi.c | 81 static const char *blank = " \n\r\t"; 851 } else if (strchr(blank, c)) do { in vi_movw() 854 } while (strchr(blank, c)); in vi_movw() 864 } while (c && !strchr(blank, c) && !strchr(specials, c)); in vi_movw() 866 } while (strchr(blank, c) && c != '\n'); //never stop at empty in vi_movw() 882 if (strchr(blank, c)) do { in vi_movb() 885 } while (strchr(blank, c)); in vi_movb() 897 } while (!strchr(blank, c) && !strchr(specials, c)); in vi_movb() 899 } while (strchr(blank, c)); //never stop at empty in vi_movb() 904 if (type && !strchr(blank, c) && !strchr(specials, c)) break; in vi_movb() [all …]
|
/third_party/gn/src/gn/format_test_data/ |
D | 005.golden | 2 # below, and should be separated by a single blank line.
|
D | 006.gn | 2 # below, and should be separated by a single blank line.
|
D | 006.golden | 2 # below, and should be separated by a single blank line.
|
D | 005.gn | 2 # below, and should be separated by a single blank line.
|