Home
last modified time | relevance | path

Searched full:singlequote (Results 1 – 25 of 38) sorted by relevance

12

/third_party/node/tools/gyp/tools/Xcode/Specifications/
Dgyp.xclangspec46 Identifier = "xcode.lang.gyp.string.singlequote";
89 "xcode.lang.gyp.string.singlequote",
135 "xcode.lang.gyp.string.singlequote",
146 "xcode.lang.gyp.string.singlequote",
157 "xcode.lang.gyp.string.singlequote?",
191 "xcode.lang.gyp.string.singlequote",
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/
Dgyp.xclangspec46 Identifier = "xcode.lang.gyp.string.singlequote";
89 "xcode.lang.gyp.string.singlequote",
135 "xcode.lang.gyp.string.singlequote",
146 "xcode.lang.gyp.string.singlequote",
157 "xcode.lang.gyp.string.singlequote?",
191 "xcode.lang.gyp.string.singlequote",
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/text/
Dword_breaker.dart177 CharProperty.SingleQuote,
189 CharProperty.SingleQuote,
197 immediateRight == CharProperty.SingleQuote) {
238 CharProperty.SingleQuote,
250 CharProperty.SingleQuote,
Dword_break_properties.dart29 SingleQuote,
55 UnicodeRange<CharProperty>(0x0027, 0x0027, CharProperty.SingleQuote),
/third_party/node/deps/npm/node_modules/socks/
D.prettierrc.yaml4 singleQuote: true
/third_party/node/deps/npm/node_modules/smart-buffer/
D.prettierrc.yaml4 singleQuote: true
/third_party/typescript_eslint/
D.prettierrc.json11 "singleQuote": true, boolean
/third_party/typescript/src/compiler/transformers/
Djsx.ts396 …const singleQuote = node.singleQuote !== undefined ? node.singleQuote : !isStringDoubleQuoted(node… constant
397 …onst literal = factory.createStringLiteral(tryDecodeEntities(node.text) || node.text, singleQuote);
/third_party/node/deps/npm/node_modules/cli-table3/
Dpackage.json115 "singleQuote": true, boolean
/third_party/css-what/src/
Dparse.ts22 SingleQuote = 39, enumerator
112 return c === CharCode.SingleQuote || c === CharCode.DoubleQuote;
/third_party/node/lib/internal/util/
Dinspect.js449 let singleQuote = 39;
459 singleQuote = -1;
461 singleQuote = -2;
463 if (singleQuote !== 39) {
471 return addQuotes(str, singleQuote);
474 return addQuotes(str, singleQuote);
482 if (point === singleQuote ||
498 return addQuotes(result, singleQuote);
/third_party/icu/icu4c/source/tools/escapesrc/
Descapesrc.cpp343 //printf("found singlequote at %d\n", pos); in fixLine()
/third_party/node/deps/icu-small/source/tools/escapesrc/
Descapesrc.cpp343 //printf("found singlequote at %d\n", pos); in fixLine()
/third_party/flutter/skia/third_party/externals/icu/source/tools/escapesrc/
Descapesrc.cpp340 //printf("found singlequote at %d\n", pos); in fixLine()
/third_party/skia/third_party/externals/icu/source/tools/escapesrc/
Descapesrc.cpp343 //printf("found singlequote at %d\n", pos); in fixLine()
/third_party/icu/icu4c/source/i18n/
Dtzfmt.cpp120 static const UChar SINGLEQUOTE = 0x0027; variable
2407 if (pattern.indexOf(SINGLEQUOTE) < 0) { in unquote()
2416 if (c == SINGLEQUOTE) { in unquote()
2453 if (ch == SINGLEQUOTE) { in parseOffsetPattern()
2455 text.append(SINGLEQUOTE); in parseOffsetPattern()
/third_party/node/deps/icu-small/source/i18n/
Dtzfmt.cpp120 static const UChar SINGLEQUOTE = 0x0027; variable
2407 if (pattern.indexOf(SINGLEQUOTE) < 0) { in unquote()
2416 if (c == SINGLEQUOTE) { in unquote()
2453 if (ch == SINGLEQUOTE) { in parseOffsetPattern()
2455 text.append(SINGLEQUOTE); in parseOffsetPattern()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dtzfmt.cpp117 static const UChar SINGLEQUOTE = 0x0027; variable
2402 if (pattern.indexOf(SINGLEQUOTE) < 0) { in unquote()
2411 if (c == SINGLEQUOTE) { in unquote()
2448 if (ch == SINGLEQUOTE) { in parseOffsetPattern()
2450 text.append(SINGLEQUOTE); in parseOffsetPattern()
/third_party/skia/third_party/externals/icu/source/i18n/
Dtzfmt.cpp120 static const UChar SINGLEQUOTE = 0x0027; variable
2407 if (pattern.indexOf(SINGLEQUOTE) < 0) { in unquote()
2416 if (c == SINGLEQUOTE) { in unquote()
2453 if (ch == SINGLEQUOTE) { in parseOffsetPattern()
2455 text.append(SINGLEQUOTE); in parseOffsetPattern()
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dquotes.test.ts28 description: 'singlequote',
/third_party/typescript/src/services/
DpatternMatcher.ts511 case CharacterCodes.singleQuote:
Dservices.ts2049 case CharacterCodes.singleQuote:
/third_party/typescript/src/compiler/
Dutilities.ts842 if ((<StringLiteral>node).singleQuote) {
843 return "'" + escapeText(node.text, CharacterCodes.singleQuote) + "'";
2289 return charCode === CharacterCodes.singleQuote || charCode === CharacterCodes.doubleQuote;
4082 …ing(s: string, quoteChar?: CharacterCodes.doubleQuote | CharacterCodes.singleQuote | CharacterCode…
4085 quoteChar === CharacterCodes.singleQuote ? singleQuoteEscapedCharsRegExp :
4091 …ing(s: string, quoteChar?: CharacterCodes.doubleQuote | CharacterCodes.singleQuote | CharacterCode…
4123 …sxAttributeString(s: string, quoteChar?: CharacterCodes.doubleQuote | CharacterCodes.singleQuote) {
4125 quoteChar === CharacterCodes.singleQuote ? jsxSingleQuoteEscapedCharsRegExp :
4144 return charCode === CharacterCodes.singleQuote ||
Dscanner.ts1327 case CharacterCodes.singleQuote:
1672 case CharacterCodes.singleQuote:
2367 case CharacterCodes.singleQuote:
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
DRBBITestMonkey.java636 … setAppliedRule(p2, "WB 12 Numeric x (MidNum | MidNumLet | SingleQuote) Numeric"); in next()

12