Home
last modified time | relevance | path

Searched refs:next (Results 2701 - 2725 of 5983) sorted by relevance

1...<<101102103104105106107108109110>>...240

/third_party/node/deps/v8/src/heap/
H A Dlarge-spaces.h45 LargePage* next_page() { return static_cast<LargePage*>(list_node_.next()); } in next_page()
47 return static_cast<const LargePage*>(list_node_.next()); in next_page()
/third_party/node/deps/v8/src/strings/
H A Dchar-predicates-inl.h162 bool IsLineTerminatorSequence(base::uc32 c, base::uc32 next) { in IsLineTerminatorSequence() argument
165 if (c == '\r') return next != '\n'; in IsLineTerminatorSequence()
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Ddecode_pvk2key.c137 goto next; in pvk2key_decode()
143 next: in pvk2key_decode()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/
H A DMatcherBytes.java108 Sequence s = it.next(); in compile()
114 // Compile the next candidate sequence. in compile()
132 Sequence s = it.next(); in compileFinalSequences()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvParser.java162 String line = lines.next(); in parseRow()
165 // "start" is the start of the next part and must be a valid index into current "line". in parseRow()
178 line = lines.next(); in parseRow()
221 // If not end-of-line, "pos" points at the last delimiter, so we can find the next start. in parseRow()
/third_party/rust/crates/clang-sys/build/
H A Dcommon.rs268 let directory = Path::new(output.lines().next().unwrap()).to_path_buf(); in search_libclang_directories()
278 let directory = Path::new(output.lines().next().unwrap()).to_path_buf(); in search_libclang_directories()
/third_party/python/Lib/
H A Dshelve.py178 This adds methods first(), next(), previous(), last() and
197 def next(self): member in BsdDbShelf
198 (key, value) = next(self.dict)
/third_party/python/Lib/email/
H A Dcharset.py313 returned from this iterator will provide the next maximum line
314 length. This parameter is used as an argument to built-in next()
342 maxlen = next(maxlengths) - extra
359 maxlen = next(maxlengths) - extra
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelect.cpp114 const auto AfterIt = std::next(MII); in runOnMachineFunction()
119 // And have our iterator point to the next instruction, if there is one. in runOnMachineFunction()
144 auto InsertedBegin = ReachedBegin ? MBB->begin() : std::next(MII); in runOnMachineFunction()
163 // And have our iterator point to the next instruction, if there is one. in runOnMachineFunction()
/third_party/skia/src/gpu/gradients/
H A DGrGradientBitmapCache.cpp56 Entry* next = entry->fNext; in ~GrGradientBitmapCache() local
58 entry = next; in ~GrGradientBitmapCache()
150 // Historically, stops have been mapped to [0, 256], with 256 then nudged to the next in fillGradient()
/third_party/skia/src/gpu/ops/
H A DAtlasTextOp.h25 const Geometry* next = g->fNext; variable
27 g = next;
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/truetype/
H A DLocaTable.java149 public Integer next() { in next() method in LocaTable.LocaIterator
211 this.loca.add(locaIter.next()); in initialize()
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/
H A DCMapEditingTests.java62 CMap.Builder<? extends CMap> cmapBuilder = cmapBuilderIter.next(); in testRemoveAllButOneCMap()
91 CMap cmap = cmapIter.next(); in testCopyAllCMapToNewFont()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-set.hh135 bool next (hb_codepoint_t *codepoint) const { return s.next (codepoint); } in next() function
/third_party/skia/third_party/externals/icu/source/common/
H A Ddictionarydata.cpp55 UStringTrieResult result = (codePointsMatched == 0) ? uct.first(c) : uct.next(c); in matches()
122 UStringTrieResult result = (codePointsMatched == 0) ? bt.first(transform(c)) : bt.next(transform(c)); in matches()
232 // these next two sections are empty in the current format, in udict_swap()
H A Dpluralmap.h134 * prior to using. Call next repeatedly to get the values until it
135 * returns NULL. Each time next returns, caller may pass index
139 const T *next(Category &index) const { in next() function in PluralMap
153 * non const version of next.
156 const T *result = next(index); in nextMutable()
/third_party/typescript/tests/baselines/reference/
H A DasyncFunctionReturnType.js82 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
85 step((generator = generator.apply(thisArg, _arguments || [])).next());
H A DnamedTupleMembers.js54 export type RecursiveTupleA = [initial: string, next: RecursiveTupleA];
135 export type RecursiveTupleA = [initial: string, next: RecursiveTupleA];
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DRopeByteStringTest.java58 stringUnderTest = iter.next(); in setUp()
60 stringUnderTest = stringUnderTest.concat(iter.next()); in setUp()
/third_party/rust/crates/memchr/src/tests/memchr/
H A Diter.rs149 while let Some(index) = iter.next() { in qc_memchr1_iter_size_hint()
173 if let Some(pos) = iter.next() { in double_ended_take()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dcord_ring_reader_test.cc106 absl::string_view next = reader.Next(); in TEST() local
107 ASSERT_THAT(next, Eq(flats[i])); in TEST()
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H A Depoll.rs301 fn next(&mut self) -> Option<Self::Item> { in next() functions
302 self.iter.next().map(|event| { in next()
/third_party/rust/crates/proc-macro-error/src/
H A Dlib.rs112 //! Most of the time you want to use the macros. Syntax is described in the next section below.
135 //! See [the next section](#syntax-1) for detailed syntax.
336 let first = spans.next().unwrap_or_else(|| Span::call_site()); in from_tokens()
529 .next() in FIRST_ARG_MUST_EITHER_BE_Span_OR_IMPLEMENT_ToTokens_OR_BE_SpanRange()
/third_party/vk-gl-cts/scripts/log/
H A Dlog_parser.py111 isNextResult = self.parseLine(next(file))
113 isNextResult = self.parseLine(next(file))
115 # Return the next TestCaseResult
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dasn1.c174 const u8 **next) in asn1_get_oid()
187 *next = hdr.payload + hdr.length; in asn1_get_oid()
173 asn1_get_oid(const u8 *buf, size_t len, struct asn1_oid *oid, const u8 **next) asn1_get_oid() argument

Completed in 33 milliseconds

1...<<101102103104105106107108109110>>...240