Home
last modified time | relevance | path

Searched refs:PatternMatchKind (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/testRunner/unittests/services/
DpatternMatcher.ts96 … assertSegmentMatch("Foo", "Foo", { kind: ts.PatternMatchKind.exact, isCaseSensitive: true });
100 … assertSegmentMatch("foo", "Foo", { kind: ts.PatternMatchKind.exact, isCaseSensitive: false });
104 … assertSegmentMatch("Foo", "Fo", { kind: ts.PatternMatchKind.prefix, isCaseSensitive: true });
108 … assertSegmentMatch("Foo", "fo", { kind: ts.PatternMatchKind.prefix, isCaseSensitive: false });
112 …assertSegmentMatch("FogBar", "FB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: true });
116 …assertSegmentMatch("FogBar", "FoB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: true }…
136 …assertSegmentMatch("SimpleUIElement", "SiUI", { kind: ts.PatternMatchKind.camelCase, isCaseSensiti…
140 …assertSegmentMatch("FogBar", "b", { kind: ts.PatternMatchKind.substring, isCaseSensitive: false });
144 …assertSegmentMatch("FogBar", "fB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: false }…
148 …assertSegmentMatch("_fogBar", "_fB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: true …
[all …]
/third_party/typescript/src/services/
DpatternMatcher.ts4 export enum PatternMatchKind { enum
16 kind: PatternMatchKind;
93 function createPatternMatch(kind: PatternMatchKind, isCaseSensitive: boolean): PatternMatch {
157 …tePatternMatch(chunk.text.length === candidate.length ? PatternMatchKind.exact : PatternMatchKind.…
172 …return createPatternMatch(PatternMatchKind.substring, /*isCaseSensitive:*/ partStartsWith(candidat…
182 return createPatternMatch(PatternMatchKind.substring, /*isCaseSensitive:*/ false);
190 return createPatternMatch(PatternMatchKind.substring, /*isCaseSensitive:*/ true);
198 return createPatternMatch(PatternMatchKind.camelCase, isCaseSensitive);
DnavigateTo.ts6 readonly matchKind: PatternMatchKind;
127 matchKind: PatternMatchKind[rawItem.matchKind] as keyof typeof PatternMatchKind,
/third_party/typescript/src/harness/
Dclient.ts252 matchKind: entry.matchKind as keyof typeof PatternMatchKind,
DfourslashInterfaceImpl.ts1808 readonly matchKind?: keyof typeof ts.PatternMatchKind;