Searched defs:line (Results 101 - 125 of 1454) sorted by relevance

1234567891011>>

/external/chromium_org/gpu/command_buffer/service/
H A Dlogger.cc28 const char* filename, int line, const std::string& msg) {
38 filename, line, ::logging::LOG_ERROR).stream() << prefixed_msg;
27 LogMessage( const char* filename, int line, const std::string& msg) argument
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_logging.cc88 CdmLogMessage::CdmLogMessage(const char* file, int line) { argument
120 stream_ << filename << "(" << line << ")] "; local
124 // Use std::cout explicitly for the line break. This limits the use of this
/external/chromium_org/media/formats/webm/
H A Dwebm_webvtt_parser.cc42 void WebMWebVTTParser::ParseLine(std::string* line) { argument
43 line->clear();
45 // Consume characters from the stream, until we reach end-of-line.
74 line->push_back(byte);
/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/native_client_sdk/src/libraries/xray/
H A Dparsesymbols.c18 char* line) {
24 if (2 != sscanf(line, "%x %1023s", &uiaddr, symbol_text))
28 fprintf(stderr, "%s\n", line);
35 parsed_symbol = strstr(line, symbol_text);
47 char line[XRAY_LINE_SIZE]; local
60 while (NULL != fgets(line, XRAY_LINE_SIZE, f)) {
61 if (line == strstr(line, " .text ")) {
65 if (line == strstr(line, "
17 XRaySymbolTableCreateEntry(struct XRaySymbolTable* symtab, char* line) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_server_bin.cc26 base::CommandLine* line = base::CommandLine::ForCurrentProcess(); local
32 if (line->HasSwitch("h") || line->HasSwitch("help")) {
45 if (line->HasSwitch("quic_in_memory_cache_dir")) {
47 line->GetSwitchValueNative("quic_in_memory_cache_dir");
50 if (line->HasSwitch("port")) {
52 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
/external/chromium_org/net/ssl/
H A Dopenssl_ssl_util.h20 // Puts a net error, |err|, on the error stack in OpenSSL. The file and line are
44 OpenSSLErrorInfo() : error_code(0), file(NULL), line(0) {}
48 int line; member in struct:net::OpenSSLErrorInfo
/external/chromium_org/net/test/
H A Dscoped_mock_log.cc51 int line,
54 return g_instance_->Log(severity, file, line, message_start, str);
49 LogMessageHandler(int severity, const char* file, int line, size_t message_start, const std::string& str) argument
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Ddie.cc50 void Die::SandboxDie(const char* msg, const char* file, int line) { argument
52 LogToStderr(msg, file, line);
54 logging::LogMessage(file, line, logging::LOG_FATAL).stream() << msg;
66 void Die::SandboxInfo(const char* msg, const char* file, int line) { argument
68 logging::LogMessage(file, line, logging::LOG_INFO).stream() << msg;
72 void Die::LogToStderr(const char* msg, const char* file, int line) { argument
75 snprintf(buf, sizeof(buf), "%d", line);
/external/chromium_org/testing/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DSourceLocation.h17 line(0)
22 line(l)
28 return (file == other.file) && (line == other.line);
32 int line; member in struct:pp::SourceLocation
/external/chromium_org/third_party/boringssl/src/crypto/err/
H A Derr_test.c46 int line, flags; local
58 packed_error = ERR_get_error_line_data(&file, &line, &data, &flags);
60 line != 4 ||
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp37 std::string line; local
39 while (getline(ls, line)) {
40 std::istringstream ts(line);
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp-parse.y186 | input line
189 line: label
214 "#line %" PRIiMAX "\n",
224 "#line %" PRIiMAX " %" PRIiMAX "\n",
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineParameterization.cpp60 void tangent(const _Line& line, _Point& result) { argument
61 result.x = line[0].x - line[1].x;
62 result.y = line[0].y - line[1].y;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsLine.h24 SkDLine line; local
25 line.set(a);
26 return line.subDivide(t1, t2);
H A DSkPathOpsRect.cpp12 void SkDRect::setBounds(const SkDLine& line) { argument
13 set(line[0]);
14 add(line[1]);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsDRectTest.cpp45 const SkDLine& line = lineTests[index]; local
46 SkASSERT(ValidLine(line));
47 rect.setBounds(line);
48 REPORTER_ASSERT(reporter, rect.fLeft == SkTMin(line[0].fX, line[1].fX));
49 REPORTER_ASSERT(reporter, rect.fTop == SkTMin(line[0].fY, line[1].fY));
50 REPORTER_ASSERT(reporter, rect.fRight == SkTMax(line[0].fX, line[1].fX));
51 REPORTER_ASSERT(reporter, rect.fBottom == SkTMax(line[
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dcommon.cc54 void LogAssert(const char* function, const char* file, int line, argument
57 custom_assert_logger_(function, file, line, expression);
59 LOG(LS_ERROR) << file << "(" << line << ")" << ": ASSERT FAILED: "
H A Dunittest_main.cc32 unsigned int line,
36 << std::endl << line; local
29 TestInvalidParameterHandler(const wchar_t* expression, const wchar_t* function, const wchar_t* file, unsigned int line, uintptr_t pReserved) argument
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dlogging.cc46 LogMessage::LogMessage(const char* file, int line, LoggingSeverity sev) argument
48 print_stream_ << "(" << DescribeFile(file) << ":" << line << "): ";
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
H A Dgenmacro.c43 int line = 0; local
77 line++;
/external/chromium_org/tools/grit/grit/tool/
H A Dbuild_unittest.py51 line = f.readline() variable in class:BuildUnittest.testGenerateDepFile.DummyOpts
52 (dep_output_file, deps_string) = line.split(': ')
/external/chromium_org/v8/src/base/
H A Dlogging.cc75 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { argument
78 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
79 line);

Completed in 439 milliseconds

1234567891011>>