Searched refs:line (Results 326 - 350 of 3772) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1639.js44 var line = event_data.sourceLineText();
45 print('break: ' + line);
47 assertEquals(-1, line.indexOf('NOBREAK'),
49 assertEquals('BREAK ' + breaks, line.substr(-7));
/external/chromium_org/v8/tools/
H A Drun-valgrind.py44 # 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/
H A Doptimization-remark-line-directive.c1 // 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/
H A Demit-html.c4 #line 42 "foo.c"
/external/deqp/scripts/log/
H A Dlog_parser.py47 def __init__ (self, filename, line, message):
49 self.line = line
53 return "%s:%d: %s" % (self.filename, self.line, self.message)
55 def splitContainerLine (line):
56 return shlex.split(line)
73 for line in f:
74 self.parseLine(line)
93 def parseLine (self, line):
94 if len(line) >
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dparseerr.h34 * <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/llvm/include/llvm/Support/
H A DValgrind.h27 void AnnotateHappensAfter(const char *file, int line, const volatile void *cv);
28 void AnnotateHappensBefore(const char *file, int line, const volatile void *cv);
29 void AnnotateIgnoreWritesBegin(const char *file, int line);
30 void AnnotateIgnoreWritesEnd(const char *file, int line);
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_memory_debug.h48 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/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java47 /** line number 1..n within the input */
48 protected int line = 1; field in class:ANTLRStringStream
50 /** The index of the character relative to the beginning of the line 0..n-1 */
57 * values line, charPositionInLine, and p that can change as you
92 line = 1;
103 System.out.println("newline char found on line: "+line+
106 line++;
165 state.line = line;
217 setLine(int line) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb21 # [:line] the initial line number; default: +1+
28 @line = options.fetch :line, 1
33 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
40 if line = @readline.call
41 line = line.to_s.encode( Encoding::UTF_8 )
42 @string << line
43 @data.concat( line
[all...]
/external/chromium_org/net/android/javatests/src/org/chromium/net/
H A DX509UtilTest.java41 String line = reader.readLine();
42 while (line != null && !line.contains(BEGIN_MARKER)) line = reader.readLine();
45 while (line != null && line.contains(BEGIN_MARKER)) line = reader.readLine();
48 while (line != null && !line.contains(END_MARKER)) {
49 builder.append(line
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dlock_common.tcl76 fconfigure $chan -buffering line
94 set line [gets $chan]
95 if { $line == "OVER" } {
103 append r $line
110 set line "OVER"
112 set line [gets $chan]
115 if { $line == "OVER" } {
120 append ::tfnb($chan) $line
137 # process, followed by the word "OVER" on a line of its own. The child
158 set line [get
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Dwcassert.h38 extern "C" wc_assert(char *message, char *file, UINT32 line);
40 void wc_assert(char *message, char *file, UINT32 line);
43 #define WC_ASSERT(_x) if ( !(_x) ) wc_assert("ASSERT at %s line %d\n", __FILE__, __LINE__);
44 #define WC_ASSERT_ALWAYS() wc_assert("ASSERT! at %s line %d\n", __FILE__, __LINE__);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Dbench_wsh.py48 line = request.ws_stream.receive_message()
49 parts = line.split(' ')
/external/chromium_org/base/profiler/
H A Dscoped_profile.h20 #define PASTE_LINE_NUMBER_ON_NAME(name, line) name##line
/external/chromium_org/mojo/public/cpp/environment/lib/
H A Dlogging.cc33 LogMessage::LogMessage(const char* file, int line, MojoLogLevel log_level) argument
36 stream_ << GetFilename(file) << '(' << line << "): ";
/external/chromium_org/net/test/
H A Dscoped_mock_log.h72 int line,
84 int line,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionStatePlaceholder.cpp38 NoExceptionStateAssertionChecker::NoExceptionStateAssertionChecker(const char* file, int line) argument
41 , m_line(line) { }
/external/chromium_org/third_party/angle/tests/gles_conformance_tests/
H A Dgenerate_gles_conformance_tests.py11 for line in raw_lines:
12 line = line.strip()
13 if len(line) > 0 and not line.startswith("#"):
14 lines.append(line)
45 for line in lines:
46 tests += GenerateTestList(os.path.join(os.path.dirname(sourceFile), line), rootDir)
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineQuadraticIntersection_Test.cpp16 _Line line; member in struct:lineQuad
20 // quad line results
32 static int doIntersect(Intersections& intersections, const Quadratic& quad, const _Line& line, bool& flipped) { argument
35 if (line[0].x == line[1].x) {
36 double top = line[0].y;
37 double bottom = line[1].y;
42 result = verticalIntersect(quad, top, bottom, line[0].x, flipped, intersections);
43 } else if (line[0].y == line[
60 _Line line; member in struct:oneLineQuad
74 const _Line& line = oneOffs[index].line; local
95 const _Line& line = lineQuadTests[index].line; local
143 testLineIntersect(State4& state, const Quadratic& quad, const _Line& line, const double x, const double y) argument
204 _Line line = {{x - h, y - v}, {x, y}}; local
[all...]
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkHRESULT.cpp12 void SkTraceHR(const char* file, unsigned long line, HRESULT hr, const char* msg) { argument
16 SkDebugf("%s(%lu) : error 0x%x: ", file, line, hr);
/external/chromium_org/third_party/skia/tools/
H A Dmisc_utils.py20 Opens a file for reading and searches line by line for a match to
39 for line in input_stream:
40 match = pattern_object.search(line)
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Ddynamic_annotations.h395 #define ANNOTALYSIS_SEMICOLON_OR_EMPTY_BODY { (void)file; (void)line; }
418 void AnnotateRWLockCreate(const char *file, int line,
420 void AnnotateRWLockDestroy(const char *file, int line,
422 void AnnotateRWLockAcquired(const char *file, int line,
424 void AnnotateRWLockReleased(const char *file, int line,
426 void AnnotateBarrierInit(const char *file, int line,
429 void AnnotateBarrierWaitBefore(const char *file, int line,
431 void AnnotateBarrierWaitAfter(const char *file, int line,
433 void AnnotateBarrierDestroy(const char *file, int line,
435 void AnnotateCondVarWait(const char *file, int line,
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Ddynamic_annotations.h395 #define ANNOTALYSIS_SEMICOLON_OR_EMPTY_BODY { (void)file; (void)line; }
418 void AnnotateRWLockCreate(const char *file, int line,
420 void AnnotateRWLockDestroy(const char *file, int line,
422 void AnnotateRWLockAcquired(const char *file, int line,
424 void AnnotateRWLockReleased(const char *file, int line,
426 void AnnotateBarrierInit(const char *file, int line,
429 void AnnotateBarrierWaitBefore(const char *file, int line,
431 void AnnotateBarrierWaitAfter(const char *file, int line,
433 void AnnotateBarrierDestroy(const char *file, int line,
435 void AnnotateCondVarWait(const char *file, int line,
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
H A Dnheap.css6 line-height: 1em;

Completed in 5370 milliseconds

<<11121314151617181920>>