/third_party/node/deps/v8/src/strings/ |
H A D | unicode-inl.h | 88 byte next = **cursor; in ValueOfIncremental() local 91 if (V8_LIKELY(next <= kMaxOneByteChar && old_state == State::kAccept)) { in ValueOfIncremental() 93 return static_cast<uchar>(next); in ValueOfIncremental() 98 Utf8DfaDecoder::Decode(next, state, buffer); in ValueOfIncremental() 114 // the next (which we already did above). If we were already in a in ValueOfIncremental() 119 // next time. in ValueOfIncremental()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/ |
H A D | DigitSequenceMatcherTest.java | 46 Assert.assertEquals(1, digits.next()); in testStringDigits() 48 Assert.assertEquals(2, digits.next()); in testStringDigits() 50 Assert.assertEquals(3, digits.next()); in testStringDigits() 52 Assert.assertEquals(4, digits.next()); in testStringDigits()
|
/third_party/python/Python/ |
H A D | suggestions.c | 214 PyTracebackObject *next = traceback->tb_next; in offer_suggestions_for_name_error() local 215 if (next == NULL || !Py_IS_TYPE(next, &PyTraceBack_Type)) { in offer_suggestions_for_name_error() 219 traceback = next; in offer_suggestions_for_name_error()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineLoopUtils.cpp | 23 return *std::next(BB->instr_begin(), Offset); in findEquivalentInstruction() 34 Preheader = *std::next(Loop->pred_begin()); in PeelSingleBlockLoop() 37 Exit = *std::next(Loop->succ_begin()); in PeelSingleBlockLoop() 43 MF.insert(std::next(Loop->getIterator()), NewBB); in PeelSingleBlockLoop()
|
/third_party/skia/src/image/ |
H A D | SkRescaleAndReadPixels.cpp | 119 auto next = SkSurface::MakeRaster(ii); in SkRescaleAndReadPixels() local 120 if (!next) { in SkRescaleAndReadPixels() 124 next->getCanvas()->drawImageRect( in SkRescaleAndReadPixels() 127 tempSurf = std::move(next); in SkRescaleAndReadPixels()
|
/third_party/skia/src/effects/ |
H A D | Sk2DPathEffect.cpp | 27 next() will receive u and v values within these bounds, 31 virtual void next(const SkPoint& loc, int u, int v, SkPath* dst) const {} in next() function in Sk2DPathEffect 35 The default implementation calls next() repeatedly with each 54 this->next(dst, x++, y, path); in nextSpan() 83 for (; !iter.done(); iter.next()) { 166 void next(const SkPoint& loc, int u, int v, SkPath* dst) const override {
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | PoolAlloc.cpp | 114 tHeader* next = inUseList->nextPage; in ~TPoolAllocator() local 117 inUseList = next; in ~TPoolAllocator() 125 tHeader* next = freeList->nextPage; in ~TPoolAllocator() local 127 freeList = next; in ~TPoolAllocator() 292 currentPageOffset = pageSize; // make next allocation come from a new page in allocate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
H A D | LanaiDelaySlotFiller.cpp | 120 MBB.splice(std::next(I), &MBB, FI, I); in runOnMachineBasicBlock() 124 MBB.splice(std::next(I), &MBB, J); in runOnMachineBasicBlock() 126 BuildMI(MBB, std::next(I), DebugLoc(), TII->get(Lanai::NOP)); in runOnMachineBasicBlock() 133 // The instruction after it will be visited in the next iteration. in runOnMachineBasicBlock() 138 MIBundleBuilder(MBB, InstrWithSlot, std::next(LastFiller)); in runOnMachineBasicBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
H A D | MSP430BranchSelector.cpp | 146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches() 154 MF->insert(std::next(MBB), NewBB); in expandBranches() 157 NewBB->splice(NewBB->end(), &*MBB, std::next(MI), MBB->end()); in expandBranches() 184 MachineBasicBlock *NextMBB = &*std::next(MBB); in expandBranches()
|
/third_party/spirv-tools/source/diff/ |
H A D | lcs.h | 161 DiffMatchIndex next = {current.src_offset + 1, current.dst_offset + 1}; in CalculateLCS() local 162 if (IsCalculatedOrOutOfBound(next)) { in CalculateLCS() 163 MarkMatched(current, GetMemoizedLength(next) + 1, true); in CalculateLCS() 166 to_calculate.push(next); in CalculateLCS()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ustr_titlecase_brkiter.cpp | 40 * Titlecasing only calls setText(), first(), and next(). 59 int32_t next() U_OVERRIDE; 64 int32_t next(int32_t n) U_OVERRIDE; 109 int32_t WholeStringBreakIterator::next() { return length; } in next() function in WholeStringBreakIterator 114 int32_t WholeStringBreakIterator::next(int32_t /*n*/) { return length; } in next() function in WholeStringBreakIterator
|
/third_party/typescript/tests/baselines/reference/ |
H A D | asyncAwaitIsolatedModules_es5.js | 47 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
50 step((generator = generator.apply(thisArg, _arguments || [])).next());
55 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
60 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | asyncAwait_es5.js | 53 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
56 step((generator = generator.apply(thisArg, _arguments || [])).next());
61 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
66 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | classStaticBlock6.js | 85 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
88 step((generator = generator.apply(thisArg, _arguments || [])).next());
93 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
98 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | controlFlowForCatchAndFinally.js | 48 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
51 step((generator = generator.apply(thisArg, _arguments || [])).next());
56 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
61 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | neverAsDiscriminantType(strict=false).js | 73 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
76 step((generator = generator.apply(thisArg, _arguments || [])).next());
81 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
86 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | neverAsDiscriminantType(strict=true).js | 73 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
76 step((generator = generator.apply(thisArg, _arguments || [])).next());
81 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
86 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | es5-asyncFunctionLongObjectLiteral.js | 35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
43 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
48 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES3AMD.js | 35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
43 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
48 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES3CJS.js | 36 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
39 step((generator = generator.apply(thisArg, _arguments || [])).next());
44 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
49 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES3UMD.js | 35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
43 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
48 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES5AMD.js | 35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
43 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
48 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES5CJS.js | 36 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
39 step((generator = generator.apply(thisArg, _arguments || [])).next());
44 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
49 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importCallExpressionAsyncES5UMD.js | 35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38 step((generator = generator.apply(thisArg, _arguments || [])).next());
43 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
48 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
H A D | importMeta(module=commonjs,target=es5).js | 46 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
49 step((generator = generator.apply(thisArg, _arguments || [])).next());
54 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
59 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|