Home
last modified time | relevance | path

Searched refs:isStart (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/minimatch/src/dist/cjs/
Dast.js136 if (this.isStart() && !this.type)
145 isStart() { method in AST
149 if (!this.#parent?.isStart())
415 const noEmpty = this.isStart() && this.isEnd();
427 if (this.isStart()) {
474 if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
496 final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
502 (this.isStart() && !dot && !allowDot ? startNoDot : '') +
537 .filter(p => !(this.isStart() && this.isEnd()) || !!p)
Dast.d.ts11 isStart(): boolean;
Dast.js.map1isStart() && !this.type) ret.unshift([])\n if (\n this.isEnd() &&\n (this === this.#r…
/third_party/node/deps/npm/node_modules/minimatch/dist/mjs/
Dast.js133 if (this.isStart() && !this.type)
142 isStart() { method in AST
146 if (!this.#parent?.isStart())
412 const noEmpty = this.isStart() && this.isEnd();
424 if (this.isStart()) {
471 if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
493 final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
499 (this.isStart() && !dot && !allowDot ? startNoDot : '') +
534 .filter(p => !(this.isStart() && this.isEnd()) || !!p)
/third_party/node/deps/npm/node_modules/minimatch/dist/cjs/
Dast.js136 if (this.isStart() && !this.type)
145 isStart() { method in AST
149 if (!this.#parent?.isStart())
415 const noEmpty = this.isStart() && this.isEnd();
427 if (this.isStart()) {
474 if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
496 final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
502 (this.isStart() && !dot && !allowDot ? startNoDot : '') +
537 .filter(p => !(this.isStart() && this.isEnd()) || !!p)
/third_party/node/deps/minimatch/src/dist/mjs/
Dast.js133 if (this.isStart() && !this.type)
142 isStart() { method in AST
146 if (!this.#parent?.isStart())
412 const noEmpty = this.isStart() && this.isEnd();
424 if (this.isStart()) {
471 if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
493 final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
499 (this.isStart() && !dot && !allowDot ? startNoDot : '') +
534 .filter(p => !(this.isStart() && this.isEnd()) || !!p)
Dast.d.ts11 isStart(): boolean;
Dast.js.map1isStart() && !this.type) ret.unshift([])\n if (\n this.isEnd() &&\n (this === this.#r…
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
DMf2Serializer.java98 boolean isStart() { in isStart() method in Mf2Serializer.Token
148 if (Type.MESSAGE.equals(firstToken.type) && firstToken.isStart()) { in build()
162 if (token.isStart() && i == 0) { in parseMessage()
221 if (token.isStart()) { // all good in parseVariant()
259 if (token.isStart()) { // all good, do nothing in parseSelector()
283 if (token.isStart()) { // all good in parseDeclaration()
326 if (token.isStart() && i == startToken) { // all good, do nothing in parsePattern()
421 if (token.isStart() && i == startToken) { in parseExpression()
461 if (token.isStart() && i == startToken) { in parseOptions()
/third_party/vk-gl-cts/executor/
DxeTestCaseListParser.cpp94 bool isStart = element == xml::ELEMENT_START; in parse() local
99 if (isStart) in parse()
125 if (isStart) in parse()
/third_party/typescript/scripts/
Dregenerate-unicode-identifier-parts.mjs4 const isStart = c => /[\p{ID_Start}\u{2118}\u{212E}\u{309B}\u{309C}]/u.test(c); // Other_ID_Start e… function
6 …A}\u{136B}\u{136C}\u{136D}\u{136E}\u{136F}\u{1370}\u{1371}]/u.test(c) || isStart(c); // Likewise f…
13 if (isStart(String.fromCodePoint(i)) !== startsActive) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DStackColoring.cpp492 bool &isStart);
585 bool &isStart) { in isLifetimeStartOrEnd() argument
595 isStart = false; in isLifetimeStartOrEnd()
599 isStart = true; in isLifetimeStartOrEnd()
617 isStart = true; in isLifetimeStartOrEnd()
724 bool isStart = false; in collectMarkers() local
726 if (isLifetimeStartOrEnd(MI, slots, isStart)) { in collectMarkers()
727 if (!isStart) { in collectMarkers()
/third_party/node/deps/minimatch/
Dindex.js478 if (this.isStart() && !this.type)
485 isStart() { method in anonymousObject68bc21cb0c05.dist/cjs/ast.js._AST
488 if (!__privateGet(this, _parent)?.isStart())
623 const noEmpty = this.isStart() && this.isEnd();
632 if (this.isStart()) {
663 if (this.isStart() && this.isEnd() && !body && this.type !== "!") {
679 final = (this.isStart() && !dot ? startNoDot : "") + starNoEmpty;
683 "))" + (this.isStart() && !dot && !allowDot ? startNoDot : "") + star2 + ")"
851 }).filter((p) => !(this.isStart() && this.isEnd()) || !!p).join("|");
/third_party/skia/src/core/
DSkScan_Path.cpp316 void prepost(int y, bool isStart) { in prepost() argument
317 if (isStart) { in prepost()
359 static void PrePostInverseBlitterProc(SkBlitter* blitter, int y, bool isStart) { in PrePostInverseBlitterProc() argument
360 ((InverseBlitter*)blitter)->prepost(y, isStart); in PrePostInverseBlitterProc()