Home
last modified time | relevance | path

Searched refs:has_next (Results 1 – 24 of 24) sorted by relevance

/external/grpc-grpc/src/core/tsi/alts/handshaker/
Dalts_handshaker_service_api.cc41 req->has_next = true; in grpc_gcp_handshaker_req_create()
133 if (req == nullptr || application_protocol == nullptr || req->has_next) { in grpc_gcp_handshaker_req_add_application_protocol()
268 if (req == nullptr || req->has_next) { in grpc_gcp_handshaker_req_set_rpc_versions()
294 req->has_next) { in grpc_gcp_handshaker_req_set_local_endpoint()
314 req->has_next) { in grpc_gcp_handshaker_req_set_remote_endpoint()
341 if (req->has_next) { in grpc_gcp_handshaker_req_set_in_bytes()
Dhandshaker.pb.h141 bool has_next; member
/external/crosvm/devices/src/virtio/
Dqueue.rs122 } else if self.has_next() && self.next >= self.queue_size { in is_valid()
130 pub fn has_next(&self) -> bool { in has_next() method
155 if self.has_next() { in next_descriptor()
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow_deprecated_py2.py591 def while_body(has_next, *loop_vars): argument
594 has_next = opt_iterate.has_value()
604 has_next,
612 return (has_next,) + new_vars
614 def while_cond(has_next, *loop_vars): argument
617 has_next,
621 return has_next
Dcontrol_flow.py531 has_next = compat_util.BasicRef(True)
534 return (has_next.value,) + get_state()
538 has_next.value, loop_vars = aug_loop_vars[0], aug_loop_vars[1:]
547 has_next.value = opt_iterate.has_value()
567 control_flow_ops.cond(has_next.value, main_path, noop_path))
573 main_test = has_next.value
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DAST.stg156 if <referencedElementsDeep:{el|stream_<el>.has_next?}; separator=" || ">
170 while <referencedElements:{el|stream_<el>.has_next?}; separator=" || ">
184 <referencedElements:{el|stream_<el>.has_next?}; separator=" || "> or raise ANTLR3::RewriteEarlyExit
186 while <referencedElements:{el|stream_<el>.has_next?}; separator=" || ">
/external/perfetto/src/trace_processor/metrics/
Dmetrics.cc624 auto has_next = it.Next(); in ComputeMetrics() local
628 } else if (!has_next) { in ComputeMetrics()
647 has_next = it.Next(); in ComputeMetrics()
648 if (has_next) in ComputeMetrics()
/external/v8/src/builtins/
Dbuiltins-string.cc265 bool has_next = stream.HasMore(); in ConvertCaseHelper() local
266 uc32 next = has_next ? stream.GetNext() : 0; in ConvertCaseHelper()
293 if (has_next) { in ConvertCaseHelper()
/external/grpc-grpc/test/core/tsi/alts/handshaker/
Dalts_handshaker_service_api_test_lib.cc63 req->has_next = true; in grpc_gcp_handshaker_decoded_req_create()
569 if (l_req->has_next && r_req->has_next) { in grpc_gcp_handshaker_req_equals()
/external/tensorflow/tensorflow/stream_executor/
Dkernel.h297 bool has_next() { return arg_index_ < number_of_arguments_; }
304 if (!has_next()) {
/external/v8/src/wasm/
Dfunction-body-decoder.h176 bool has_next() { return pc_ < end_; } in NON_EXPORTED_BASE()
Dfunction-body-decoder.cc175 for (; i.has_next(); i.next()) { in PrintRawWasmCode()
Dwasm-debug.cc933 for (; iterator.has_next(); iterator.next()) { in FindNextBreakablePosition()
1214 for (; iterator.has_next(); iterator.next()) { in GetPossibleBreakpoints()
Dfunction-body-decoder-impl.h646 bool has_next() { return VALIDATE(decoder_->ok()) && index_ <= table_count_; } in has_next() function
648 DCHECK(has_next()); in next()
659 while (has_next()) next(); in length()
2625 while (iterator.has_next()) {
Dgraph-builder-interface.cc402 while (iterator.has_next()) { in BrTable()
/external/v8/src/regexp/
Dregexp-parser.cc69 if (has_next()) { in Next()
77 if (has_next()) { in Advance()
1398 if (!has_next()) return false; in ParsePropertyClassName()
1404 if (!has_next()) return false; in ParsePropertyClassName()
1565 DCHECK(has_next() && !IsSpecialClassEscape(Next())); in ParseClassCharacterEscape()
Dregexp-parser.h325 bool has_next() { return next_pos_ < in()->length(); } in has_next() function
/external/e2fsprogs/lib/ext2fs/
Dextent.c1266 int has_prev, has_next; in ext2fs_extent_set_bmap() local
1351 has_next = 0; in ext2fs_extent_set_bmap()
1357 has_next = 1; in ext2fs_extent_set_bmap()
1407 } else if (has_next && in ext2fs_extent_set_bmap()
1453 if (has_next && in ext2fs_extent_set_bmap()
/external/grpc-grpc/test/core/tsi/alts/fake_handshaker/
Dfake_handshaker_server.cc104 } else if (request.has_next()) { in ProcessRequest()
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc840 bool has_next = s.Next(); in DisableAndReadMetatrace() local
841 PERFETTO_CHECK(has_next); in DisableAndReadMetatrace()
/external/antlr/runtime/Python/antlr3/
Dtree.py2485 def has_next(self): member in TreeIterator
2503 if not self.has_next():
/external/antlr/runtime/Python3/antlr3/
Dtree.py2470 def has_next(self): member in TreeIterator
2488 if not self.has_next():
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_gpu_executor.cc324 while (iter.has_next()) { in Launch()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc2046 DCHECK(!table_iterator.has_next()); in BrTable()