Home
last modified time | relevance | path

Searched refs:next_line (Results 1 – 25 of 37) sorted by relevance

12

/external/python/bumble/bumble/
Dhfp.py72 async def next_line(self): member in HfpProtocol
83 await (self.next_line())
84 await (self.next_line())
87 await (self.next_line())
88 await (self.next_line())
91 await (self.next_line())
92 await (self.next_line())
95 await (self.next_line())
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_procmaps_linux.cc39 char *next_line = (char*)internal_memchr(current_, '\n', last - current_); in Next() local
40 if (next_line == 0) in Next()
41 next_line = last; in Next()
73 while (current_ < next_line && *current_ == ' ') in Next()
77 while (current_ < next_line) { in Next()
84 current_ = next_line + 1; in Next()
/external/rust/crates/tokio/tests/
Dio_lines.rs12 let b = assert_ok!(st.next_line().await).unwrap(); in lines_inherent()
14 let b = assert_ok!(st.next_line().await).unwrap(); in lines_inherent()
16 let b = assert_ok!(st.next_line().await).unwrap(); in lines_inherent()
18 assert!(assert_ok!(st.next_line().await).is_none()); in lines_inherent()
/external/crosvm/rutabaga_gfx/src/
Drutabaga_2d.rs56 let mut next_line; in transfer_2d() localVariable
94 next_line = false; in transfer_2d()
98 next_line = true; in transfer_2d()
102 next_line = true; in transfer_2d()
120 next_line = false; in transfer_2d()
123 next_line = true; in transfer_2d()
131 if next_line { in transfer_2d()
/external/rust/crates/libfuzzer-sys/libfuzzer/scripts/
Dunbalanced_allocs.py42 next_line, stack = ProcessStack(f.readline(), f)
47 return next_line
56 next_line, stack = ProcessStack(f.readline(), f)
58 return next_line
/external/cronet/net/tools/
Dstitch_net_log_files.py92 for next_line in file:
93 if next_line.strip() == "":
94 line += next_line
97 line = next_line
/external/grpc-grpc/src/objective-c/
Dchange-comments.py71 def next_line(predicate): function
101 while next_line(isnt_comment):
107 while (next_line(is_comment)):
/external/toolchain-utils/cwp/cr-os/
Dfetch_gn_descs.py72 next_line = next(output, None)
73 if next_line is None:
76 if next_line.lstrip().startswith("{"):
81 warnings.append(next_line)
/external/gfxstream-protocols/registry/vulkan/scripts/spec_tools/
Dfile_process.py57 def next_line(self): member in LinewiseFileProcessor
64 if self.next_line is None:
66 return self.next_line.rstrip()
/external/angle/build/android/gyp/
Djavac_output_processor.py126 def _LookForUnknownSymbol(self, line, next_line): argument
127 if not next_line:
130 import_re_match = self._import_re.match(next_line)
/external/gfxstream-protocols/registry/vulkan/scripts/
Dcomment_convert.py137 next_line = self.next_line_rstripped
138 if next_line is None:
141 return next_line.strip().startswith('"')
/external/virglrenderer/src/
Dvrend_winsys_gbm.c207 bool next_iovec, next_line; in virgl_gbm_transfer_internal() local
228 next_line = false; in virgl_gbm_transfer_internal()
231 next_line = true; in virgl_gbm_transfer_internal()
245 next_line = false; in virgl_gbm_transfer_internal()
248 next_line = true; in virgl_gbm_transfer_internal()
257 if (next_line) in virgl_gbm_transfer_internal()
/external/cronet/build/android/gyp/
Djavac_output_processor.py169 def _LookForUnknownSymbol(self, line, next_line): argument
170 if not next_line:
173 import_re_match = self._import_re.match(next_line)
/external/pigweed/pw_build/py/pw_build/
Dgn_resolver.py161 def next_line(): function
170 line = next_line()
177 line = next_line()
186 line = next_line()
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk67 ret = getline next_line;
80 $0 = $0 "\n" next_line;
/external/rust/crates/codespan-reporting/examples/
Dcustom_files.rs140 .or_else(|next_line| Ok(next_line - 1)) in line_index()
/external/minijail/
Dutil.c622 attribute_cleanup_str char *next_line = NULL; in getmultiline() local
623 ssize_t next_ret = getmultiline(&next_line, &next_n, stream); in getmultiline()
635 memcpy(&line[ret + 1], next_line, next_ret + 1); in getmultiline()
/external/yapf/yapf/yapflib/
Dreformatter.py749 next_line = lines[index + 1]
750 for tok in next_line.tokens:
752 if (len(next_line.tokens) == 1 and next_line.first.is_multiline_string):
/external/autotest/site_utils/
Dperf_compare.py244 next_line = p.stdout.readline().strip()
245 if not next_line and p.poll() != None:
247 logging.debug(next_line)
/external/e2fsprogs/misc/
De2initrd_helper.c358 goto next_line; in get_root_type()
365 next_line: in get_root_type()
/external/rust/crates/codespan-reporting/src/
Dfiles.rs338 .unwrap_or_else(|next_line| next_line - 1)) in line_index()
/external/rust/crates/tokio/src/io/util/
Dlines.rs69 pub async fn next_line(&mut self) -> io::Result<Option<String>> { in next_line() function
/external/python/bumble/examples/
Drun_hfp_handsfree.py124 await (protocol.next_line())
Drun_hfp_gateway.py201 line = await protocol.next_line()
/external/python/cpython3/Lib/
Dast.py306 next_line = ''
309 next_line += c
313 next_line += '\n'
316 lines.append(next_line)
317 next_line = ''
319 if next_line:
320 lines.append(next_line)

12