Searched refs:uniques (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/src/sksl/lex/ |
D | NFAtoDFA.h | 139 std::vector<std::vector<int>*> uniques; in computeMappings() local 143 for (size_t j = 0; j < uniques.size(); ++j) { in computeMappings() 144 if (*uniques[j] == fTransitions[i]) { in computeMappings() 150 found = (int) uniques.size(); in computeMappings() 151 uniques.push_back(&fTransitions[i]); in computeMappings() 156 for (std::vector<int>* row : uniques) { in computeMappings()
|
/third_party/typescript/src/services/ |
D | stringCompletions.ts | 290 const uniques = new Map<string, true>(); constant 304 return getStringLiteralTypes(type, uniques); 336 …function getStringLiteralTypes(type: Type | undefined, uniques = new Map<string, true>()): readonl… 339 return type.isUnion() ? flatMap(type.types, t => getStringLiteralTypes(t, uniques)) : 340 …type.isStringLiteral() && !(type.flags & TypeFlags.EnumLiteral) && addToSeen(uniques, type.value) …
|
D | completions.ts | 1425 const uniques = new Map<string, boolean>(); constant 1430 …if (!info || (uniques.get(info.name) && (!origin || !originIsObjectLiteralMethod(origin))) || kind… 1467 uniques.set(name, shouldShadowLaterSymbols); 1492 has: name => uniques.has(name), 1493 add: name => uniques.set(name, true), 1552 const uniques = new Map<string, true>(); constant 1561 if (!uniques.has(name)) { 1562 uniques.set(name, true); 3310 …const uniques = exports.filter(e => e.escapedName !== InternalSymbolName.Default && !existing.has(… constant 3311 symbols = concatenate(symbols, uniques); [all …]
|