/third_party/css-what/src/__fixtures__/ |
D | tests.ts | 152 ignoreCase: IgnoreCaseMode.QuirksMode, 176 ignoreCase: IgnoreCaseMode.QuirksMode, constant 192 ignoreCase: IgnoreCaseMode.QuirksMode, constant 234 ignoreCase: IgnoreCaseMode.QuirksMode, 251 ignoreCase: IgnoreCaseMode.Unknown, 267 ignoreCase: IgnoreCaseMode.Unknown, 283 ignoreCase: IgnoreCaseMode.Unknown, 299 ignoreCase: IgnoreCaseMode.Unknown, 315 ignoreCase: IgnoreCaseMode.Unknown, 331 ignoreCase: IgnoreCaseMode.Unknown, [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | regexp-construct.js | 20 assert (r.ignoreCase == false); 26 assert (r.ignoreCase == false); 32 assert (r.ignoreCase == true); 38 assert (r.ignoreCase == false); 44 assert (r.ignoreCase == true); 52 assert (r2.ignoreCase == true); 58 assert (r2.ignoreCase == true); 64 assert (r.ignoreCase == false); 70 assert (r.ignoreCase == false); 76 assert (r.ignoreCase == true); [all …]
|
D | regexp-routines.js | 92 assert (re2.ignoreCase === true); 100 assert (re2.ignoreCase === re1.ignoreCase);
|
D | regression-test-issue-1072.js | 15 try { new (this.$)(new (this.RegExp)().ignoreCase).$ () } catch($){}
|
/third_party/typescript/src/compiler/ |
D | path.ts | 318 … getBaseFileName(path: string, extensions: string | readonly string[], ignoreCase: boolean): strin… 319 …tion getBaseFileName(path: string, extensions?: string | readonly string[], ignoreCase?: boolean) { 330 …ension = extensions !== undefined && ignoreCase !== undefined ? getAnyExtensionFromPath(name, exte… 375 …xtensionFromPath(path: string, extensions: string | readonly string[], ignoreCase: boolean): strin… 376 …tensionFromPath(path: string, extensions?: string | readonly string[], ignoreCase?: boolean): stri… 380 …sionFromPathWorker(removeTrailingDirectorySeparator(path), extensions, ignoreCase ? equateStringsC… 655 …ion(path: string, ext: string, extensions: string | readonly string[], ignoreCase: boolean): strin… 656 …tension(path: string, ext: string, extensions?: string | readonly string[], ignoreCase?: boolean) { 657 …athext = extensions !== undefined && ignoreCase !== undefined ? getAnyExtensionFromPath(path, exte… 719 export function comparePaths(a: string, b: string, ignoreCase?: boolean): Comparison; [all …]
|
/third_party/css-what/ |
D | readme.md | 23 ignoreCase: null 43 …e`, `action`, `value`, `ignoreCase` | `[attr]` | `{ type: 'attribute', name: 'attr', action: … 44 …, `action`, `value`, `ignoreCase` | `[attr=val]` | `{ type: 'attribute', name: 'attr', action: 'e… 45 …`, `action`, `value`, `ignoreCase` | `[attr^=val]` | `{ type: 'attribute', name: 'attr', action: '… 46 …e`, `action`, `value`, `ignoreCase` | `[attr$=val]` | `{ type: 'attribute', name: 'attr', action: …
|
/third_party/jerryscript/tests/jerry/es5.1/ |
D | builtin-prototypes.js | 48 assert (RegExp.prototype.ignoreCase === false); 53 RegExp.prototype.ignoreCase = true; method in RegExp 57 assert (RegExp.prototype.ignoreCase === false); 62 delete RegExp.prototype.ignoreCase; method in delete 66 assert (RegExp.prototype.ignoreCase === false);
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | regexp-construct.js | 21 assert(r2.ignoreCase === true); 26 assert(r3.ignoreCase === true); 40 assert (r.ignoreCase === true);
|
/third_party/css-what/src/ |
D | stringify.ts | 96 token.ignoreCase === "quirks" && 104 token.ignoreCase === "quirks" && 120 token.ignoreCase === null ? "" : token.ignoreCase ? " i" : " s"
|
D | parse.ts | 244 ignoreCase: "quirks", 384 let ignoreCase: boolean | null = null; variable 435 ignoreCase = false; 438 ignoreCase = true; 458 ignoreCase, constant
|
/third_party/typescript/src/testRunner/ |
D | projectsRunner.ts | 108 this.vfs.ignoreCase 210 const ignoreCase = this.vfs.ignoreCase; constant 214 …neath(vfs.builtFolder, input, this.vfs.ignoreCase) || vpath.beneath(vfs.testLibFolder, input, this… 215 vpath.isAbsolute(input) ? vpath.relative(cwd, input, ignoreCase) : 220 …moveTestPathPrefixes(vpath.isAbsolute(output) ? vpath.relative(cwd, output, ignoreCase) : output)); 244 … let diskRelativeName = vpath.relative(this.vfs.cwd(), diskFileName, this.vfs.ignoreCase); 249 …onSubfolderDiskFiles}${vpath.extname(fileName, [".js.map", ".js", ".d.ts"], this.vfs.ignoreCase)}`;
|
/third_party/typescript/tests/baselines/reference/ |
D | constructorOverloads5.symbols | 43 ignoreCase: boolean; 44 >ignoreCase : Symbol(RegExp.ignoreCase, Decl(constructorOverloads5.ts, 11, 24))
|
D | constructorOverloads5.types | 40 ignoreCase: boolean; 41 >ignoreCase : boolean
|
/third_party/typescript/src/services/ |
D | patternMatcher.ts | 269 …function partStartsWith(candidate: string, candidateSpan: TextSpan, pattern: string, ignoreCase: b… 271 …ern.charCodeAt(patternSpan.start + i), candidate.charCodeAt(candidateSpan.start + i), ignoreCase)); 274 function equalChars(ch1: number, ch2: number, ignoreCase: boolean): boolean { 275 return ignoreCase ? toLowerCase(ch1) === toLowerCase(ch2) : ch1 === ch2; 278 …Match(candidate: string, candidateParts: TextSpan[], chunk: TextChunk, ignoreCase: boolean): boole… 321 … if (!partStartsWith(candidate, candidatePart, chunk.text, ignoreCase, chunkCharacterSpan)) {
|
/third_party/typescript/src/harness/ |
D | vfsUtil.ts | 45 public readonly ignoreCase: boolean; property in vfs.FileSystem 62 constructor(ignoreCase: boolean, options: FileSystemOptions = {}) { 64 this.ignoreCase = ignoreCase; 65 … this.stringComparer = this.ignoreCase ? vpath.compareCaseInsensitive : vpath.compareCaseSensitive; 140 const fs = new FileSystem(this.ignoreCase, { time: this._time }); 156 public shadow(ignoreCase = this.ignoreCase) { 158 …if (ignoreCase && !this.ignoreCase) throw new Error("Cannot create a case-insensitive file system … 159 const fs = new FileSystem(ignoreCase, { time: this._time }); 385 … const marker = vpath.compare(this._cwd, path, this.ignoreCase) === 0 ? "*" : " "; 1248 …export function createFromFileSystem(host: FileSystemResolverHost, ignoreCase: boolean, { document… [all …]
|
/third_party/typescript/tests/arkTSTest/ |
D | README.zh-cn.md | 58 …"ignoreCase":["testcase/arkts-identifiers-as-prop-names/xxxx.ets", "testcase/arkts-no-any-unknown"] 114 修改根目录下的`ignorecase.json.example`为`ignorecase.json`,配置`ignoreCase`字段为屏蔽用例字段,如: 118 "ignoreCase":["testcase/arkts-no-any-unknown/test2.ets","testcase/arkts-identifiers-as-prop-names"]
|
D | ignorecase.json.example | 2 "ignoreCase":[]
|
D | run.js | 322 ignoreCaseConfigList = JSON.parse(fs.readFileSync(ignoreCaseFilePath)).ignoreCase 349 for(let ignoreCase of ignoreList){ 350 console.log(ignoreCase)
|
D | README.md | 49 …"ignoreCase":["testcase/arkts-identifiers-as-prop-names/xxxx.ets", "testcase/arkts-no-any-unknown"] 101 …le" file in the root directory to "ignorecase.json" and configure the "ignoreCase" field for block… 106 "ignoreCase":["testcase/arkts-no-any-unknown/test2.ets","testcase/arkts-identifiers-as-prop-names"]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | TextTrieMap.java | 43 public TextTrieMap(boolean ignoreCase) { in TextTrieMap() argument 44 _ignoreCase = ignoreCase; in TextTrieMap() 138 CharIterator(CharSequence text, int offset, boolean ignoreCase) { in CharIterator() argument 141 _ignoreCase = ignoreCase; in CharIterator()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TextTrieMap.java | 38 public TextTrieMap(boolean ignoreCase) { in TextTrieMap() argument 39 _ignoreCase = ignoreCase; in TextTrieMap() 130 CharIterator(CharSequence text, int offset, boolean ignoreCase) { in CharIterator() argument 133 _ignoreCase = ignoreCase; in CharIterator()
|
/third_party/icu/icu4c/source/i18n/ |
D | string_segment.cpp | 21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument 23 fFoldCase(ignoreCase) {} in StringSegment()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | string_segment.cpp | 21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument 23 fFoldCase(ignoreCase) {} in StringSegment()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | string_segment.cpp | 21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument 23 fFoldCase(ignoreCase) {} in StringSegment()
|
/third_party/typescript/tests/cases/compiler/ |
D | constructorOverloads5.ts | 13 ignoreCase: boolean;
|