HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 176 - 200 of 4596) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormatParseLocation.java 38 * <p>A location is the starting line number and starting column number.
50 * @param line the starting line number
54 static TextFormatParseLocation create(int line, int column) {
55 if (line == -1 && column == -1) {
58 if (line < 0 || column < 0) {
60 String.format("line and column values must be >= 0: line %d, column: %d", line, column));
62 return new TextFormatParseLocation(line, column)
65 private final int line; field in class:TextFormatParseLocation
    [all...]
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_doc_comment.cc 69 string line = *it; local
70 if (line.empty()) {
77 printer->Print("/// $line$\n", "line", *it);
  /external/python/cpython2/Demo/scripts/
pp.py 3 # Emulate some Perl command line options.
6 # -a : together with -n or -p, splits each line into list F
9 # -e scriptline : gives one line of the Python script; may be repeated
11 # -n : runs the script for each line of input
12 # -p : prints the line after the script has run
15 # read as input to the script, line by line. If a file is '-'
49 for line in optarg.split('\n'):
50 SCRIPT.append(line)
70 line = fp.readline( variable
    [all...]
  /external/python/cpython3/Tools/scripts/
abitype.py 182 line = source[pos:] variable
184 line = source[pos:nl+1] variable
185 tokens[-1][1] += line
186 pos += len(line)
  /external/selinux/checkpolicy/
checkpolicy.h 12 unsigned long line; member in struct:te_assert
  /external/selinux/libsepol/cil/src/
cil_lexer.h 48 uint32_t line; member in struct:token
cil_tree.h 48 uint32_t line; member in struct:cil_tree_node
  /external/skia/gm/
fatpathfill.cpp 62 SkPath line, path; local
63 line.moveTo(1, 2);
64 line.lineTo(SkIntToScalar(4 + i), 1);
65 paint.getFillPath(line, &path);
  /external/skqp/gm/
fatpathfill.cpp 62 SkPath line, path; local
63 line.moveTo(1, 2);
64 line.lineTo(SkIntToScalar(4 + i), 1);
65 paint.getFillPath(line, &path);
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
JCLRuleSet.java 25 package org.slf4j.migrator.line;
JULRuleSet.java 25 package org.slf4j.migrator.line;
LineConverter.java 25 package org.slf4j.migrator.line;
43 * If a rule matches, ask for line replacement.
SingleConversionRule.java 25 package org.slf4j.migrator.line;
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/line/
JCLRuleSetTest.java 25 package org.slf4j.migrator.line;
27 import org.slf4j.migrator.line.JCLRuleSet;
28 import org.slf4j.migrator.line.LineConverter;
54 // end of line
57 // Logger instanciation without declaration and comment at the end of line
80 // end of line
83 // Logger instanciation without declaration and comment at the end of line
103 // Logger declaration with modifiers and comment at the end of line
110 // Logger declaration on a line
113 // Logger instanciation on the next line
    [all...]
Log4jRuleSetTest.java 25 package org.slf4j.migrator.line;
30 import org.slf4j.migrator.line.LineConverter;
31 import org.slf4j.migrator.line.Log4jRuleSet;
61 // end of line
64 // Logger instanciation without declaration and comment at the end of line
86 // end of line
89 // Logger instanciation without declaration and comment at the end of line
109 // Logger declaration with modifiers and comment at the end of line
117 // Logger declaration on a line
120 // Logger instanciation on the next line
    [all...]
  /external/squashfs-tools/squashfs-tools/
read_file.c 38 * Read file, passing each line to parse_line() for
48 char *def, *err, *line = NULL; local
65 line = realloc(line, size += (MAX_LINE + 1));
66 if(line == NULL)
70 err = fgets(line + total, MAX_LINE + 1, fd);
74 len = strlen(line + total);
77 if(len == MAX_LINE && line[total - 1] != '\n') {
78 /* line too large */
79 ERROR("Line too long when reading
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
ErrorHandling.cpp 88 unsigned line) {
96 dbgs() << " at " << file << ":" << line; local
  /external/syslinux/gpxe/src/hci/
readline.c 78 * Read line from console
81 * @ret line Line read from console (excluding terminating newline)
83 * The returned line is allocated with malloc(); the caller must
90 char *line; local
107 line = strdup ( buf );
108 if ( ! line )
110 return line;
shell.c 92 char *line; local
96 line = readline ( shell_prompt );
97 if ( line ) {
98 system ( line );
99 free ( line );
  /external/tensorflow/tensorflow/core/lib/io/
buffered_inputstream_test.cc 44 string line; local
45 EXPECT_TRUE(errors::IsOutOfRange(in.ReadLine(&line)));
53 WriteStringToFile(env, fname, "line one\nline two\nline three\n"));
61 string line; local
62 TF_ASSERT_OK(in.ReadLine(&line));
63 EXPECT_EQ(line, "line one");
64 TF_ASSERT_OK(in.ReadLine(&line));
65 EXPECT_EQ(line, "line two")
85 string line; local
110 string line; local
139 string line; local
    [all...]
inputbuffer_test.cc 45 string line; local
47 EXPECT_TRUE(errors::IsOutOfRange(in.ReadLine(&line)));
55 WriteStringToFile(env, fname, "line one\nline two\nline three\n"));
60 string line; local
62 TF_CHECK_OK(in.ReadLine(&line));
63 EXPECT_EQ(line, "line one");
64 TF_CHECK_OK(in.ReadLine(&line));
65 EXPECT_EQ(line, "line two")
82 string line; local
105 string line; local
132 string line; local
    [all...]
  /external/toybox/toys/net/
rfkill.c 37 // Parse command line options
76 char *line, *name = 0, *type = 0; local
84 while ((line = get_line(tvar))) {
85 char *s = line;
90 free(line);
  /external/toybox/toys/pending/
fmt.c 17 Reformat input to not exceed a maximum line length.
19 -w WIDTH maximum characters per line (default 75)
32 char *line = NULL; local
36 while ((line_length = getline(&line, &allocated_length, fp)) > 0) {
39 while (b < line_length && isspace(line[b])) b++;
50 while (isspace(line[b])) b++;
51 for (e = b + 1; e < line_length && !isspace(line[e]);) e++;
54 line[e] = 0;
55 w = utf8len(line + b);
62 xprintf("%.*s%.*s",is_first?indent_end:1,is_first?line:" ",(e-b),line+b)
    [all...]
userdel.c 27 char *filenamesfx = NULL, *sfx = NULL, *line = NULL; local
52 while ((line = get_line(fileno(exfp))) != NULL){
54 if (!strncmp(line, toybuf, ulen+1)) goto LOOP;
56 char *n, *p = strrchr(line, ':');
63 fprintf(newfp, "%s%s\n", line, n);
68 fprintf(newfp, "%s%s\n", line, n);
72 if (!n) fprintf(newfp, "%s\n", line);
73 } else fprintf(newfp, "%s\n", line);
76 free(line);
  /external/toybox/toys/posix/
uudecode.c 30 char *line = 0, mode[16], local
36 free(line);
37 if (!(line = get_line(ifd))) error_exit("bad EOF");
39 sscanf(line, class[m], mode, &idx);
45 else ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
52 free(line);
53 if (m == 2 || !(line = get_line(ifd))) break;
54 if (!strcmp(line, m ? "====" : "end")) {
60 in = out = line;
98 if (i && i!=len) error_exit("bad %s", line);
    [all...]

Completed in 735 milliseconds

1 2 3 4 5 6 78 91011>>