HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 101 - 125 of 3501) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/www/
builtins.py 153 for line in fileinput.input(inplace=1):
155 if builtin in line:
156 line = line.replace(builtin, repl)
159 if unh in line:
161 sys.stdout.write(line)
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 91 const char *line = supp; local
92 while (line) {
93 while (line[0] == ' ' || line[0] == '\t')
94 line++;
95 const char *end = internal_strchr(line, '\n');
97 end = line + internal_strlen(line);
98 if (line != end && line[0] != '#')
    [all...]
  /external/libvpx/libvpx/tools/
wrap-commit-msg.py 23 indicator = has_leading_whitespace(line);
25 preserve_formatting(line);
46 line = fileobj.readline()
47 if not line:
50 if line.lstrip() == line:
51 text += line
55 output += line
  /external/valgrind/main/drd/tests/
bar_bad_xml.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
45 <line>...</line>
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcvabits.stdoutB.exp 1 Breakpoint 1 at 0x........: file t.c, line 100.
3 Breakpoint 1, breakme (line=112) at t.c:100
4 100 if (line > 1000)
10 Breakpoint 1, breakme (line=117) at t.c:100
11 100 if (line > 1000)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 56 bool reservedErrorCheck(int line, const TString& identifier);
59 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, int line);
60 bool parseMatrixFields(const TString&, int matSize, TMatrixFields&, int line);
61 void assignError(int line, const char* op, TString left, TString right);
62 void unaryOpError(int line, const char* op, TString operand);
63 void binaryOpError(int line, const char* op, TString left, TString right);
64 bool precisionErrorCheck(int line, TPrecision precision, TBasicType type);
65 bool lValueErrorCheck(int line, const char* op, TIntermTyped*);
68 bool globalErrorCheck(int line, bool global, const char* token);
69 bool constructorErrorCheck(int line, TIntermNode*, TFunction&, TOperator, TType*)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 56 for filename, lineno, name, line in traceback.extract_stack(stack):
57 logger('File: "%s", line %d, in %s' % (filename, lineno, name))
58 if line:
59 logger(' %s' % line.strip())
65 for line in frame_str.split('\n'):
66 if line:
67 logger(" %s" % line)
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportParser.java 30 String line = null; local
31 while ((line = reader.readLine()) != null) {
35 if (line.startsWith(SECTION_HEADER) || (numLines > MAX_LINES)) {
38 sb.append(line);
41 } else if (line.startsWith(sectionWithHeader)) {
42 sb.append(line);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 5 Call = Struct.new( :file, :line, :method )
11 line = parts.shift.to_i
13 return Call.new( file, line )
18 return Call.new( file, line, method )
35 string = '%s:%i' % [ file, line ]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
filetestcase.py 38 # Matches a //, followed by an optional line number with a +/-, followed by a
41 _EXPECTED_RE = re.compile(r'\s*//\s*(?:(?P<line>[+-]?[0-9]+):)?'
79 for i, line in enumerate(stream):
80 match = self._EXPECTED_RE.search(line)
82 line = match.group('line')
84 if line is None:
85 line = i + 1
86 elif line.startswith('+') or line.startswith('-')
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
LineVerifierElem.java 36 public LineVerifierElem addExpected(final String line) {
37 if (!TextUtils.isEmpty(line)) {
38 mExpectedLineList.add(line);
51 final String line = lineArray[i]; local
52 if (TextUtils.isEmpty(line)) {
56 if ("BEGIN:VCARD".equalsIgnoreCase(line)) {
58 TestCase.fail("Multiple \"BEGIN:VCARD\" line found");
63 } else if ("END:VCARD".equalsIgnoreCase(line)) {
65 TestCase.fail("Multiple \"END:VCARD\" line found");
72 "VERSION:4.0")).equalsIgnoreCase(line)) {
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
debug.h 24 toplev.c according to command line options. */
38 /* Macro defined on line LINE with name and expansion TEXT. */
39 void (* define) (unsigned int line, const char *text);
41 /* MACRO undefined on line LINE. */
42 void (* undef) (unsigned int line, const char *macro);
44 /* Record the beginning of a new source file FILE from LINE number
46 void (* start_source_file) (unsigned int line, const char *file);
48 /* Record the resumption of a source file. LINE is the line numbe
    [all...]
  /external/valgrind/main/helgrind/tests/
tc06_two_races_xml.stderr.exp 9 <line>Helgrind, a thread error detector</line>
10 <line>Copyright (C) XXXX-YYYY, and GNU GPL'd, by OpenWorks LLP et al.</line>
11 <line>Using Valgrind-X.Y.X and LibVEX; rerun with -h for copyright info</line>
12 <line>Command: ./tc06_two_races</line>
22 <arg>--command-line-only=yes</arg>
55 <line>...</line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamState.cs 43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
  /external/chromium/third_party/libjingle/source/talk/base/
checks.h 37 void Fatal(const char* file, int line, const char* format, ...);
  /external/clang/test/Analysis/
taint-tester.cpp 18 char *line = 0; local
23 while ((read = T.getline(&line, &len, stdin)) != -1) {
24 printf("%s", line); // no warning
26 free(line);
  /external/clang/test/CodeGen/
catch-undef-behavior.c 67 #line 100
94 #line 200
144 #line 300
169 #line 400
180 #line 500
191 #line 600
204 #line 700
217 #line 800
242 #line 900
  /external/compiler-rt/lib/
int_util.h 26 void compilerrt_abort_impl(const char *file, int line,
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.hh 2 #line 1 "hb-buffer-deserialize-text.rl"
35 #line 36 "hb-buffer-deserialize-text.hh.tmp"
315 #line 91 "hb-buffer-deserialize-text.rl"
342 #line 343 "hb-buffer-deserialize-text.hh.tmp"
347 #line 348 "hb-buffer-deserialize-text.hh.tmp"
373 #line 51 "hb-buffer-deserialize-text.rl"
379 #line 55 "hb-buffer-deserialize-text.rl"
388 #line 62 "hb-buffer-deserialize-text.rl"
392 #line 63 "hb-buffer-deserialize-text.rl"
396 #line 64 "hb-buffer-deserialize-text.rl
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 26 private final int line; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, int column)
    [all...]
  /external/libvorbis/vq/
make_floor_books.pl 16 while($line=<F>){
18 print "#### $line";
19 if($line=~m/^GO/){
25 if($line=~m/\S+/ && !($line=~m/^\#/) ){
26 my $command=$line;
36 if($line=~m/^>(\S+)\s+(\S*)/){
48 #set the search path for input files; each build line will look
51 if($line=~m/^=(.*)/){
58 if($line=~m/^build (.*)/)
    [all...]
  /external/llvm/lib/Support/
Valgrind.cpp 60 void AnnotateHappensBefore(const char *file, int line,
62 void AnnotateHappensAfter(const char *file, int line,
64 void AnnotateIgnoreWritesBegin(const char *file, int line) {}
65 void AnnotateIgnoreWritesEnd(const char *file, int line) {}

Completed in 1198 milliseconds

1 2 3 45 6 7 8 91011>>