HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 251 - 275 of 4062) sorted by null

<<11121314151617181920>>

  /external/bison/src/
location.c 60 int line = cur->line; local
72 line += line < INT_MAX;
87 cur->line = line;
92 if (line == INT_MAX && loc->start.line != INT_MAX)
93 warn_at (*loc, _("line number overflow"));
108 if (0 <= loc.start.line)
147 size_t line; member in struct:caret_info
    [all...]
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
css_checker.py 61 def braces_have_space_before_and_nothing_after(line):
62 return re.search(r'(?:^|\S){|{\s*\S+\s*$', line)
64 def classes_use_dashes(line):
67 m = re.search(r'\.(-?[_a-zA-Z0-9-]+).*[,{]\s*$', line)
73 def close_brace_on_new_line(line):
74 return (line.find('}') >= 0 and re.search(r'[^ }]', line) and
75 not re.match(frame_reg, line))
77 def colons_have_space_after(line):
78 return re.search(r'(?<!data):(?!//)\S[^;]+;\s*', line)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_file.py 52 def _is_comment(line):
53 return line.startswith("//") or line.startswith("#")
80 for line in lines:
81 if _is_comment(line):
83 if not line:
87 self._parse_parameter(line)
89 entry = self._parse_line(line)
124 def _parse_parameter(self, line):
125 if '=' in line
    [all...]
  /external/chromium_org/v8/src/base/
logging.h 13 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);
45 inline void CheckEqualsHelper(const char* file, int line,
49 V8_Fatal(file, line,
58 inline void CheckEqualsHelper(const char* file, int line,
66 V8_Fatal(file, line,
81 int line,
87 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i",
96 int line,
104 V8_Fatal(file, line,
112 int line,
    [all...]
  /external/chromium_org/ppapi/generators/
idl_diff.py 46 for line in self.was:
47 print 'src: >>%s<<' % line
48 for line in self.now:
49 print 'gen: >>%s<<' % line
55 # Return True if this change is only a one line change in the copyright notice
67 # Return True if this change only removes a blank line from a comment
81 for line in change.now:
82 if line: return False
83 for line in change.was:
84 if line: return Fals
    [all...]
  /art/tools/
cpplint.py 49 # - Check for spaces between brackets in one-line inline method
75 same line, but it is far from perfect (in either direction).
103 'NOLINT(category)' comment to the line. NOLINT or NOLINT(*)
104 suppresses errors of all categories on that line.
320 # False positives include C-style multi-line comments (http://go/nsiut )
321 # and multi-line strings (http://go/beujw ), but those have always been
338 _END_ASM = 2 # Last line of inline assembly block
363 Parses any NOLINT comments on the current line, updating the global
369 raw_line: str, the line of input text, with comments.
370 linenum: int, the number of the current line
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py 49 # - Check for spaces between brackets in one-line inline method
75 same line, but it is far from perfect (in either direction).
103 'NOLINT(category)' comment to the line. NOLINT or NOLINT(*)
104 suppresses errors of all categories on that line.
320 # False positives include C-style multi-line comments (http://go/nsiut )
321 # and multi-line strings (http://go/beujw ), but those have always been
338 _END_ASM = 2 # Last line of inline assembly block
363 Parses any NOLINT comments on the current line, updating the global
369 raw_line: str, the line of input text, with comments.
370 linenum: int, the number of the current line
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 33 int id, const TString &name, const TType &type, const TSourceLoc &line)
36 node->setLine(line);
47 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
95 node->setLine(line);
125 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
136 node->setLine(line);
154 TOperator op, TIntermTyped *base, TIntermTyped *index, const TSourceLoc &line)
157 node->setLine(line);
172 TOperator op, TIntermNode *childNode, const TSourceLoc &line)
179 mInfoSink.info.message(EPrefixInternalError, line,
    [all...]
  /external/chromium_org/chrome/tools/convert_dict/
aff_reader.cc 20 // Returns true if the given line begins with the given case-sensitive
87 std::string line = ReadLine(file_); local
90 if (!got_command && !line.empty() && line[0] == '#') {
91 intro_comment_.append(line);
96 StripComment(&line);
97 if (line.empty())
101 if (StringBeginsWith(line, "SET ")) {
103 encoding_ = line.substr(4);
105 } else if (StringBeginsWith(line, "AF "))
    [all...]
  /external/chromium_org/tools/mac/
symbolicate_crash.py 106 line = ''
107 while not thread_re.match(line):
110 line = line.strip()
111 if line:
112 parts = line.split(':', 1)
119 line = fd.readline()
123 # position by the length of the line so that it is re-read when
125 fd.seek(-len(line), os.SEEK_CUR)
136 # line
    [all...]
dump-static-initializers.py 40 for line in child.stdout:
41 file_match = dsymutil_file_re.search(line)
45 o_file_match = dsymutil_o_file_re.search(line)
49 match = dsymutil_re.search(line)
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
lex.yy.c 0 #line 2 "src/chromium_gensrc/mesa/lex.yy.c"
3 #line 4 "src/chromium_gensrc/mesa/lex.yy.c"
241 /* Whether we're considered to be at the beginning of a line.
247 int yy_bs_lineno; /**< The line count. */
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStream.java 47 /** ANTLR tracks the line information automatically */
50 /** Because this stream can rewind, we need to be able to reset the line */
51 void setLine(int line);
55 /** The index of the character relative to the beginning of the line 0..n-1 */
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
StreamRedirector.java 65 String line = ""; local
68 line = br.readLine();
69 if (line == null)
72 logWriter.println(name + "> " + line);
  /external/chromium_org/base/mac/
mach_logging.cc 33 int line,
36 : LogMessage(file_path, line, severity),
49 int line,
52 : LogMessage(file_path, line, severity),
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_view.h 27 // Invalidates one line of the autocomplete popup.
28 virtual void InvalidateLine(size_t line) = 0;
  /external/chromium_org/components/translate/core/browser/
translate_event_details.cc 13 line(in_line),
  /external/chromium_org/testing/gtest/scripts/
common.py 38 # Matches the line from 'svn info .' output that describes what SVN
50 lines = [line.strip() for line in f.readlines()]
58 for line in GetCommandOutput('svn info .'):
59 m = _SVN_INFO_URL_RE.match(line)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xcodeproj.py 39 def _check_development_region(self, line_index, line):
41 matched = self._development_region_regex.search(line)
52 for line_index, line in enumerate(lines):
53 if self._check_development_region(line_index, line):
  /external/chromium_org/third_party/icu/source/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_memory_debug.h 48 debug_malloc(const char *file, unsigned line, const char *function,
52 debug_calloc(const char *file, unsigned line, const char *function,
56 debug_free(const char *file, unsigned line, const char *function,
60 debug_realloc(const char *file, unsigned line, const char *function,
  /external/chromium_org/v8/src/
checks.h 37 void CheckNonEqualsHelper(const char* file, int line,
41 void CheckEqualsHelper(const char* file, int line, const char* expected_source,
44 void CheckNonEqualsHelper(const char* file, int line,
51 int line,
  /external/chromium_org/v8/tools/
run-valgrind.py 44 # Compute the command line.
63 for line in errors:
64 if LEAK_LINE_MATCHER.search(line):
65 leaks.append(line)
66 if not LEAK_OKAY_MATCHER.search(line):
  /external/clang/test/Frontend/
optimization-remark-line-directive.c 1 // This file tests -Rpass diagnostics together with #line
2 // directives. We cannot map #line directives back to
11 #line 1230 "/bad/path/to/original.c"
  /external/clang/test/Misc/
emit-html.c 4 #line 42 "foo.c"

Completed in 2578 milliseconds

<<11121314151617181920>>