Home
last modified time | relevance | path

Searched refs:ignoreCase (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/css-what/src/__fixtures__/
Dtests.ts152 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/
Dregexp-construct.js20 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 …]
Dregexp-routines.js92 assert (re2.ignoreCase === true);
100 assert (re2.ignoreCase === re1.ignoreCase);
Dregression-test-issue-1072.js15 try { new (this.$)(new (this.RegExp)().ignoreCase).$ () } catch($){}
/third_party/typescript/src/compiler/
Dpath.ts318 … 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/
Dreadme.md23 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/
Dbuiltin-prototypes.js48 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/
Dregexp-construct.js21 assert(r2.ignoreCase === true);
26 assert(r3.ignoreCase === true);
40 assert (r.ignoreCase === true);
/third_party/css-what/src/
Dstringify.ts96 token.ignoreCase === "quirks" &&
104 token.ignoreCase === "quirks" &&
120 token.ignoreCase === null ? "" : token.ignoreCase ? " i" : " s"
Dparse.ts244 ignoreCase: "quirks",
384 let ignoreCase: boolean | null = null; variable
435 ignoreCase = false;
438 ignoreCase = true;
458 ignoreCase, constant
/third_party/typescript/src/testRunner/
DprojectsRunner.ts108 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/
DconstructorOverloads5.symbols43 ignoreCase: boolean;
44 >ignoreCase : Symbol(RegExp.ignoreCase, Decl(constructorOverloads5.ts, 11, 24))
DconstructorOverloads5.types40 ignoreCase: boolean;
41 >ignoreCase : boolean
/third_party/typescript/src/services/
DpatternMatcher.ts269 …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/
DvfsUtil.ts45 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/
DREADME.zh-cn.md58 …"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"]
Dignorecase.json.example2 "ignoreCase":[]
Drun.js322 ignoreCaseConfigList = JSON.parse(fs.readFileSync(ignoreCaseFilePath)).ignoreCase
349 for(let ignoreCase of ignoreList){
350 console.log(ignoreCase)
DREADME.md49 …"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/
DTextTrieMap.java43 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/
DTextTrieMap.java38 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/
Dstring_segment.cpp21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument
23 fFoldCase(ignoreCase) {} in StringSegment()
/third_party/node/deps/icu-small/source/i18n/
Dstring_segment.cpp21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument
23 fFoldCase(ignoreCase) {} in StringSegment()
/third_party/skia/third_party/externals/icu/source/i18n/
Dstring_segment.cpp21 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase) in StringSegment() argument
23 fFoldCase(ignoreCase) {} in StringSegment()
/third_party/typescript/tests/cases/compiler/
DconstructorOverloads5.ts13 ignoreCase: boolean;

1234