Home
last modified time | relevance | path

Searched refs:nextToLast (Results 1 – 4 of 4) sorted by relevance

/third_party/glslang/SPIRV/
DspvIR.h219 const Instruction* nextToLast = (instructions.cend() - 2)->get(); in getMergeInstruction() local
220 switch (nextToLast->getOpCode()) { in getMergeInstruction()
223 return nextToLast; in getMergeInstruction()
/third_party/typescript/src/compiler/
Dutilities.ts2618 let nextToLast = lhs;
2619 while (!isIdentifier(nextToLast.expression)) {
2620nextToLast = nextToLast.expression as Exclude<BindableStaticNameExpression, Identifier>;
2622 const id = nextToLast.expression;
2624 … id.escapedText === "module" && getElementOrPropertyAccessName(nextToLast) === "exports") &&
/third_party/typescript/lib/
DtypingsInstaller.js17036 var nextToLast = lhs;
17037 while (!ts.isIdentifier(nextToLast.expression)) {
17038 nextToLast = nextToLast.expression;
17040 var id = nextToLast.expression;
17042 … id.escapedText === "module" && getElementOrPropertyAccessName(nextToLast) === "exports") &&
Dtsc.js13316 var nextToLast = lhs;
13317 while (!ts.isIdentifier(nextToLast.expression)) {
13318 nextToLast = nextToLast.expression;
13320 var id = nextToLast.expression;
13322 … id.escapedText === "module" && getElementOrPropertyAccessName(nextToLast) === "exports") &&