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

1 2 3 4 5 6 78 91011>>

  /external/skqp/tools/fiddle/
parse-fiddle-output 8 while IFS= read -r line; do
9 type=$(echo $line | sed -n 's/[^"]*"\([^"]*\)":.*/\1/p')
18 echo $line | sed 's/[^"]*"[^"]*": "//; s/"\(,\|\)$//' \
  /frameworks/base/cmds/incident_helper/src/parsers/
BatteryTypeParser.cpp 30 string line; local
35 // parse line by line
36 while (reader.readLine(&line)) {
37 if (line.empty()) continue;
44 proto.write(BatteryTypeProto::TYPE, line);
49 if (!reader.ok(&line)) {
50 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
  /frameworks/base/core/java/com/android/internal/alsa/
LineTokenizer.java 32 int nextToken(String line, int startIndex) {
33 int len = line.length();
36 if (mDelimiters.indexOf(line.charAt(offset)) == -1) {
45 int nextDelimiter(String line, int startIndex) {
46 int len = line.length();
49 if (mDelimiters.indexOf(line.charAt(offset)) != -1) {
  /external/google-breakpad/src/client/linux/minidump_writer/
line_reader_unittest.cc 62 const char *line; local
64 ASSERT_FALSE(reader.GetNextLine(&line, &len));
72 const char *line; local
74 ASSERT_TRUE(reader.GetNextLine(&line, &len));
76 ASSERT_EQ('a', line[0]);
77 ASSERT_EQ('\0', line[1]);
80 ASSERT_FALSE(reader.GetNextLine(&line, &len));
88 const char *line; local
90 ASSERT_TRUE(reader.GetNextLine(&line, &len));
92 ASSERT_EQ('a', line[0])
104 const char *line; local
126 const char *line; local
150 const char *line; local
166 const char *line; local
    [all...]
  /external/curl/src/
tool_parsecfg.c 43 static const char *unslashquote(const char *line, char *param);
123 char *line; local
133 line = aline;
136 /* line with # in the first non-blank column is a comment! */
137 while(*line && ISSPACE(*line))
138 line++;
140 switch(*line) {
152 option = line;
157 while(*line && !ISSPACE(*line) && !ISSEP(*line, dashed_option)
332 char *line = NULL; local
    [all...]
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 22 public SourcePositionInfo(String file, int line, int column) {
24 this.line = line;
30 this.line = that.line;
44 int line = that.line; local
49 line++;
53 return new SourcePositionInfo(that.file, line, 0);
60 int line = that.line - 1; // -1 because, well, it seems to wor local
101 public int line; field in class:SourcePositionInfo
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /art/tools/checker/file_format/checker/
parser.py 22 def __isCheckerLine(line):
23 return line.startswith("///") or line.startswith("##")
25 def __extractLine(prefix, line, arch = None, debuggable = False):
26 """ Attempts to parse a check line. The regex searches for a comment symbol
28 beginning of the line. Whitespaces are ignored.
40 # beginning of the line.
41 match = re.match(regexPrefix, line)
43 return line[match.end():].strip()
47 def __preprocessLineForStart(prefix, line, targetArch)
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/logcat/
Logcat.java 37 for (LogLine line: lines) {
38 if (tags.contains(line.tag) && (levels == null || levels.indexOf(line.level) >= 0)) {
39 result.add(line);
50 for (LogLine line: lines) {
51 if (tag.equals(line.tag) && (levels == null || levels.indexOf(line.level) >= 0)) {
52 result.add(line);
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/signature/
SignatureTest.class 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStreamState.as 32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 public var line:int;
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/autotest/client/profilers/powertop/src/
xrandr.c 48 char line[1024]; local
53 memset(line, 0, 1024);
60 if (fgets(line, 1024, file)==NULL)
62 if (line[0]!=' ') {
63 if (line[0]=='T' && line[1]=='V' && line[2]==' ')
68 if (strchr(line,'*') && has_tv)
  /external/compiler-rt/lib/builtins/
eprintf.c 30 const char* line, const char* file)
32 fprintf(stderr, format, assertion_expression, line, file);
  /external/parameter-framework/upstream/tools/xmlGenerator/analyse/
sortAsound.conf.sh 66 while read line
68 current_command="$( echo "$line" | sed 's/ =.*#.*//' )"
70 current_value="$( echo "$line" | sed 's/.*= \(.*\) #.*/\1/' | tr [:upper:] [:lower:] )"
71 current_mode="$( echo "$line" | sed 's/.*# //' )"
  /external/python/cpython2/Modules/_ctypes/libffi/src/
debug.c 41 void ffi_assert(char *expr, char *file, int line)
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line)
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
debug.c 40 void ffi_assert(char *expr, char *file, int line)
42 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
49 void ffi_type_test(ffi_type *a, char *file, int line)
51 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/python/cpython3/Lib/test/subprocessdata/
input_reader.py 6 for line in sys.stdin:
  /external/python/cpython3/Modules/_ctypes/libffi/src/
debug.c 41 void ffi_assert(char *expr, char *file, int line)
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line)
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/skia/infra/bots/recipe_modules/core/resources/
binary_size_utils.py 40 for line in nm_lines:
41 line = line.rstrip()
42 match = sym_re.match(line)
51 match = addr_re.match(line)
55 match = noaddr_re.match(line)
60 match = addr_only_re.match(line)
66 # line that we didn't expect or recognize.
67 logging.warning('nm output parser failed to parse: %s', repr(line))
  /external/skia/src/sksl/
SkSLPosition.h 16 * Represents a position in the source code. Both line and column are one-based. Column is currently
24 Position(int line, int column)
25 : fLine(line)
  /external/skqp/infra/bots/recipe_modules/core/resources/
binary_size_utils.py 40 for line in nm_lines:
41 line = line.rstrip()
42 match = sym_re.match(line)
51 match = addr_re.match(line)
55 match = noaddr_re.match(line)
60 match = addr_only_re.match(line)
66 # line that we didn't expect or recognize.
67 logging.warning('nm output parser failed to parse: %s', repr(line))
  /external/skqp/src/sksl/
SkSLPosition.h 16 * Represents a position in the source code. Both line and column are one-based. Column is currently
24 Position(int line, int column)
25 : fLine(line)
  /external/walt/android/WALT/app/src/main/jni/
findteensy.py 26 line = subprocess.check_output("lsusb | grep eensy", shell=True) variable
27 parts = line.split()
  /prebuilts/go/darwin-x86/test/
inline_literal.go 16 return "Hello World" // line 16
19 func foo() string { // line 19
20 x := hello() // line 20
21 y := hello() // line 21
22 return x + y // line 22
26 x := hello() // line 26
35 // Test for issue #15453. Previously, line 26 would appear in foo().
40 file, line := f.FileLine(pc)
41 if line == 0 {
44 // Line 16 can appear inside foo() because PC-line table ha
    [all...]

Completed in 1702 milliseconds

1 2 3 4 5 6 78 91011>>