Home
last modified time | relevance | path

Searched refs:semi (Results 1 – 25 of 260) sorted by relevance

1234567891011

/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dno-extra-semi.md1 # Disallow unnecessary semicolons (`no-extra-semi`)
5 This rule extends the base [`eslint/no-extra-semi`](https://eslint.org/docs/rules/no-extra-semi) ru…
13 "no-extra-semi": "off",
14 "@typescript-eslint/no-extra-semi": ["error"]
20 See [`eslint/no-extra-semi` options](https://eslint.org/docs/rules/no-extra-semi#options).
22 … [from ESLint core](https://github.com/eslint/eslint/blob/master/docs/rules/no-extra-semi.md)</sup>
Dsemi.md1 # Require or disallow semicolons instead of ASI (`semi`)
7 This rule extends the base [`eslint/semi`](https://eslint.org/docs/rules/semi) rule.
17 "semi": "off",
18 "@typescript-eslint/semi": ["error"]
24 See [`eslint/semi` options](https://eslint.org/docs/rules/semi#options).
26 <sup>Taken with ❤️ [from ESLint core](https://github.com/eslint/eslint/blob/master/docs/rules/semi.…
Dmember-delimiter-style.md62 delimiter?: 'none' | 'semi' | 'comma';
66 delimiter?: 'semi' | 'comma';
83 "delimiter": "semi",
87 "delimiter": "semi",
102 - `semi` - each member should be delimited with a semicolon (`;`).
132 "delimiter": "semi",
/third_party/ejdb/src/bindings/ejdb2_node/
D.eslintrc35 "semi": [
39 "semi-spacing": [
46 "no-extra-semi": "error",
/third_party/openssl/crypto/
Dmem.c119 char *semi = strchr(md_failstring, ';'); in parseit() local
122 if (semi != NULL) in parseit()
123 *semi++ = '\0'; in parseit()
130 if (semi != NULL) in parseit()
131 md_failstring = semi; in parseit()
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dindex.ts103 import semi from './semi';
217 semi: semi,
/third_party/libsoup/libsoup/
Dsoup-message-headers.c1274 char *semi; in parse_content_foo() local
1282 semi = strchr (*foo, ';'); in parse_content_foo()
1283 if (semi) { in parse_content_foo()
1284 char *p = semi; in parse_content_foo()
1286 *semi++ = '\0'; in parse_content_foo()
1291 semi = strchr (header, ';'); in parse_content_foo()
1292 if (semi) in parse_content_foo()
1293 semi++; in parse_content_foo()
1299 if (!semi) { in parse_content_foo()
1304 *params = soup_header_parse_semi_param_list (semi); in parse_content_foo()
Dsoup-headers.c538 char *item, *semi; in soup_header_parse_quality_list() local
553 for (semi = strchr (item, ';'); semi; semi = strchr (semi + 1, ';')) { in soup_header_parse_quality_list()
554 param = skip_lws (semi + 1); in soup_header_parse_quality_list()
578 *semi = '\0'; in soup_header_parse_quality_list()
/third_party/abseil-cpp/absl/copts/
DGENERATED_copts.bzl16 "-Wno-extra-semi",
17 "-Wno-extra-semi-stmt",
117 "-Wno-extra-semi",
118 "-Wno-extra-semi-stmt",
DGENERATED_AbseilCopts.cmake15 "-Wno-extra-semi"
16 "-Wno-extra-semi-stmt"
116 "-Wno-extra-semi"
117 "-Wno-extra-semi-stmt"
Dconfigure_copts.gni27 "-Wno-extra-semi",
28 "-Wno-extra-semi-stmt",
/third_party/ffmpeg/libavformat/
Dformat.c245 char *semi; in av_probe_input_buffer2() local
248 semi = pd.mime_type ? strchr(pd.mime_type, ';') : NULL; in av_probe_input_buffer2()
249 if (semi) { in av_probe_input_buffer2()
250 *semi = '\0'; in av_probe_input_buffer2()
/third_party/jsframework/mock-generate/
D.eslintrc81 "semi": 2,
82 "semi-spacing": 2,
/third_party/jsframework/
D.eslintrc81 "semi": 2,
82 "semi-spacing": 2,
/third_party/typescript_eslint/packages/eslint-plugin/src/configs/
Dall.ts140 semi: 'off',
/third_party/python/Lib/
Dmimetypes.py135 semi = url.find(';', 0, comma)
136 if semi >= 0:
137 type = url[:semi]
/third_party/glslang/Test/
DtokenPaste.vert26 #define semi ;
30 secpaste(uniform float, foo semi) // should declare "uniform float barfoo;"
/third_party/node/deps/npm/node_modules/fs-vacuum/
D.eslintrc13 "semi" : [2, "never"],
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dppucd.cpp146 char *semi=line; in readLine() local
147 while((semi=strchr(semi, ';'))!=NULL) { *semi++=0; } in readLine()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dppucd.cpp146 char *semi=line; in readLine() local
147 while((semi=strchr(semi, ';'))!=NULL) { *semi++=0; } in readLine()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dppucd.cpp153 char *semi=line; in readLine() local
154 while((semi=strchr(semi, ';'))!=NULL) { *semi++=0; } in readLine()
/third_party/icu/icu4c/source/tools/toolutil/
Dppucd.cpp146 char *semi=line; in readLine() local
147 while((semi=strchr(semi, ';'))!=NULL) { *semi++=0; } in readLine()
/third_party/abseil-cpp/absl/strings/
DBUILD.gn30 "-Wno-extra-semi",
31 "-Wno-extra-semi-stmt",
/third_party/mindspore/tests/ut/data/mindrecord/testAclImdbData/pos/
D1000_8.txt1 …ng, tense and well done. I especially liked the opening scene which had a semi truck in it. A very…
/third_party/skia/third_party/externals/spirv-cross/gn/
DBUILD.gn58 "-Wno-extra-semi",

1234567891011