HomeSort by relevance Sort by last modified time
    Searched refs:get_line (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/toybox/lib/
pending.h 11 char *get_line(int fd);
  /external/toybox/toys/posix/
comm.c 52 line[i] = get_line(file[i]);
62 line[i] = get_line(file[i]);
68 line[i] = get_line(file[i]);
76 line[i] = get_line(file[i]);
uudecode.c 37 if (!(line = get_line(ifd))) error_exit("bad EOF");
53 if (m == 2 || !(line = get_line(ifd))) break;
  /external/toybox/toys/other/
rev.c 25 if (!(c = get_line(fd))) break;
makedevs.c 55 for (line_no = 0; (line = get_line(fd)); free(line)) {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 71 $new_args->{line} = $token->get_line();
80 $new_args->{line} = $input->get_line();
105 sub get_line { subroutine
Lexer.pm 56 $self->state->token_start_line($self->input->get_line());
204 sub get_line { subroutine
207 return $self->input->get_line();
312 my $input_symbol = $self->input->LT(1) . ' line=' . $self->get_line() . ':' . $self->get_char_position_in_line();
319 my $input_symbol = $self->input->LT(1) . ' line=' . $self->get_line() . ':' . $self->get_char_position_in_line();
ANTLRStringStream.pm 60 sub get_line { subroutine
177 $self->line($state->get_line);
CommonToken.pm 78 $self->line($token->get_line());
98 sub get_line { subroutine
Parser.pm 52 $t->set_line($current->get_line());
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 21 print "pos: ", $token->get_line(), ':', $token->get_char_position_in_line(), "\n";
  /external/valgrind/massif/
ms_print.in 154 sub get_line()
199 my $line = get_line();
376 while ($line = get_line()) {
389 $line = get_line();
418 $line = get_line();
421 my $time = equals_num_line(get_line(), "time");
422 my $mem_heap_B = equals_num_line(get_line(), "mem_heap_B");
423 my $mem_heap_extra_B = equals_num_line(get_line(), "mem_heap_extra_B");
424 my $mem_stacks_B = equals_num_line(get_line(), "mem_stacks_B");
426 my $heap_tree = equals_num_line(get_line(), "heap_tree")
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-demangle.c 52 get_line(buf) function
203 get_line (&format);
207 get_line (&input);
208 get_line (&expect);
332 get_line (&expect);
  /external/harfbuzz_ng/util/
main-font-text.hh 80 while ((text = input.get_line (&text_len)))
  /external/valgrind/include/
pub_tool_errormgr.h 106 extern Bool VG_(get_line) ( Int fd, HChar** bufpp, SizeT* nBufp, Int* lineno );
  /external/autotest/scheduler/
rdb_cache_unittests.py 255 self.assertTrue(cache.get_line(key) == [])
259 self.assertRaises(rdb_utils.CacheMiss, cache.get_line, *(key,))
267 rdb_utils.CacheMiss, cache.get_line, *(key,))
274 cache.get_line(cache.get_key(host.labels, host.acls)) == [host])
282 rdb_utils.CacheMiss, cache.get_line, *(key,))
290 self.assertTrue(set(cache.get_line(key)) == set([host, different_host]))
rdb_cache_manager.py 116 kwargs[MEMOIZE_KEY] = self.cache.get_line(cache_key)
262 def get_line(self, key): member in class:RDBHostCacheManager
  /external/toybox/kconfig/lxdialog/
textbox.c 27 static char *get_line(void);
165 * by calling get_line() in the following
179 get_line();
326 line = get_line();
350 static char *get_line(void) function
  /external/toybox/toys/net/
rfkill.c 84 while ((line = get_line(tvar))) {
  /external/toybox/toys/pending/
userdel.c 52 while ((line = get_line(fileno(exfp))) != NULL){
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 26 get_line(bytesio *self, char **output) function
323 n = get_line(self, &output);
374 while ((n = get_line(self, &output)) != 0) {
484 n = get_line(self, &next);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bytesio.c 26 get_line(bytesio *self, char **output) function
313 n = get_line(self, &output);
364 while ((n = get_line(self, &output)) != 0) {
474 n = get_line(self, &next);
  /external/python/cpython2/Modules/_io/
bytesio.c 26 get_line(bytesio *self, char **output) function
323 n = get_line(self, &output);
374 while ((n = get_line(self, &output)) != 0) {
484 n = get_line(self, &next);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tabnanny.py 71 def get_line(self): member in class:NannyNag
118 line = nag.get_line()
  /external/e2fsprogs/misc/
e2initrd_helper.c 126 static char *get_line(struct mem_file *file) function
351 buf = get_line(&file);

Completed in 1128 milliseconds

1 2 3