/external/chromium_org/tools/valgrind/ |
D | tsan_analyze.py | 69 self.line_ = self.cur_fd_.readline() 74 match = TsanAnalyzer.LOAD_LIB_RE.match(self.line_) 79 match = TsanAnalyzer.TSAN_LINE_RE.match(self.line_) 82 stack_trace_line = _StackTraceLine(self.line_, address, binary_name) 106 result = [self.line_] 107 if re.search("{{{", self.line_): 108 while not re.search('}}}', self.line_): 111 result.append(self.line_) 115 if re.match('-+ suppression -+', self.line_): 120 while not re.match('-+ end suppression -+', self.line_): [all …]
|
D | drmemory_analyze.py | 74 self.line_ = self.cur_fd_.readline() 77 result = [self.line_] 79 while len(self.line_.strip()) > 0: 80 result.append(self.line_) 111 if (self.line_ == ''): break 113 match = re.search("^Error #([0-9]+): (.*)", self.line_) 116 self.line_ = match.groups()[1].strip() + "\n" 121 if re.search("SUPPRESSIONS USED:", self.line_): 123 while self.line_.strip() != "": 124 line = self.line_.strip() [all …]
|
/external/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 188 line_(0), in Tokenizer() 216 ++line_; in NextChar() 267 current_.line = line_; in StartToken() 435 int start_line = line_; in ConsumeBlockComment() 484 current_.line = line_; in Next() 522 error_collector_->AddError(line_, column_ - 2, in Next() 552 current_.line = line_; in Next()
|
D | tokenizer.h | 194 int line_; variable 230 error_collector_->AddError(line_, column_, message); in AddError()
|
/external/chromium_org/ui/gfx/ |
D | render_text_mac.cc | 102 line_.reset(); in ResetLayout() 109 if (line_.get()) in EnsureLayout() 138 line_.reset(CTLineCreateWithAttributedString(attr_text_mutable)); in EnsureLayout() 144 double width = CTLineGetTypographicBounds(line_, &ascent, &descent, &leading); in EnsureLayout() 159 DCHECK(line_); in DrawVisualText() 250 DCHECK(line_); in ComputeRuns() 252 CFArrayRef ct_runs = CTLineGetGlyphRuns(line_); in ComputeRuns()
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
D | testharness.h | 46 int line_; variable 51 : ok_(true), fname_(f), line_(l) { in Tester() 56 fprintf(stderr, "%s:%d:%s\n", fname_, line_, ss_.str().c_str()); in ~Tester()
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 196 : file_(file), line_(line), index_(index), write_fd_(write_fd) {} in InternalRunDeathTestFlag() 204 int line() const { return line_; } in line() 210 int line_; variable
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 229 : file_(a_file), line_(a_line), index_(an_index), in InternalRunDeathTestFlag() 238 int line() const { return line_; } in line() 244 int line_; variable
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 229 : file_(a_file), line_(a_line), index_(an_index), in InternalRunDeathTestFlag() 238 int line() const { return line_; } in line() 244 int line_; variable
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 227 : file_(a_file), line_(a_line), index_(an_index), in InternalRunDeathTestFlag() 236 int line() const { return line_; } in line() 242 int line_; variable
|
/external/chromium_org/testing/gtest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 240 : file_(a_file), line_(a_line), index_(an_index), in InternalRunDeathTestFlag() 249 int line() const { return line_; } in line() 255 int line_; variable
|
/external/gtest/include/gtest/internal/ |
D | gtest-death-test-internal.h | 240 : file_(a_file), line_(a_line), index_(an_index), in InternalRunDeathTestFlag() 249 int line() const { return line_; } in line() 255 int line_; variable
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 193 line_(0), in Tokenizer() 223 ++line_; in NextChar() 290 current_.line = line_; in StartToken() 478 int start_line = line_; in ConsumeBlockComment() 537 current_.line = line_; in TryConsumeCommentStart() 605 error_collector_->AddError(line_, column_ - 2, in Next() 633 current_.line = line_; in Next()
|
D | tokenizer.h | 248 int line_; variable 288 error_collector_->AddError(line_, column_, message); in AddError()
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/ |
D | fake_resource_manager.h | 78 int line() const { return line_; } in line() 86 int line_; variable
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
D | common.cc | 177 : level_(level), filename_(filename), line_(line) {} in LogMessage() 190 log_handler_(level_, filename_, line_, message_); in Finish() 195 throw FatalException(filename_, line_, message_); in Finish()
|
/external/chromium_org/third_party/webrtc/overrides/webrtc/base/ |
D | logging.cc | 137 line_(line), in DiagnosticLogMessage() 151 line_(line), in DiagnosticLogMessage() 161 LOG_LAZY_STREAM_DIRECT(file_name_, line_, severity_) << str; in ~DiagnosticLogMessage()
|
/external/protobuf/gtest/src/ |
D | gtest-death-test.cc | 526 : DeathTestImpl(statement, regex), file_(file), line_(line) {} in WindowsDeathTest() 536 const int line_; member in testing::internal::WindowsDeathTest 636 file_, line_, in AssumeRole() 787 ForkingDeathTest(statement, regex), file_(file), line_(line) { } in ExecDeathTest() 793 const int line_; member in testing::internal::ExecDeathTest 963 file_, line_, death_test_index, pipe_fd[1]); in AssumeRole()
|
/external/ceres-solver/internal/ceres/miniglog/glog/ |
D | logging.h | 174 : file_(file), line_(line), tag_(tag), severity_(severity) { in MessageLogger() 246 (*iter)->send(severity, file_.c_str(), filename_only_.c_str(), line_, in LogToSinks() 275 int line_; variable
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-death-test.cc | 576 : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} in WindowsDeathTest() 586 const int line_; member in testing::internal::WindowsDeathTest 686 file_, line_, in AssumeRole() 837 ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } in ExecDeathTest() 843 const int line_; member in testing::internal::ExecDeathTest 1018 file_, line_, death_test_index, pipe_fd[1]); in AssumeRole()
|
/external/chromium_org/third_party/mesa/src/src/gtest/src/ |
D | gtest-death-test.cc | 574 : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} in WindowsDeathTest() 584 const int line_; member in testing::internal::WindowsDeathTest 684 file_, line_, in AssumeRole() 835 ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } in ExecDeathTest() 841 const int line_; member in testing::internal::ExecDeathTest 1016 file_, line_, death_test_index, pipe_fd[1]); in AssumeRole()
|
/external/mesa3d/src/gtest/src/ |
D | gtest-death-test.cc | 574 : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} in WindowsDeathTest() 584 const int line_; member in testing::internal::WindowsDeathTest 684 file_, line_, in AssumeRole() 835 ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } in ExecDeathTest() 841 const int line_; member in testing::internal::ExecDeathTest 1016 file_, line_, death_test_index, pipe_fd[1]); in AssumeRole()
|
/external/jsoncpp/src/test_lib_json/ |
D | jsontest.h | 38 unsigned int line_; variable 53 unsigned int line_; member
|
D | jsontest.cpp | 107 addFailureInfo( lastNode->file_, lastNode->line_, lastNode->expr_, in addFailure() 129 failure.line_ = line; in addFailureInfo() 202 printf( "%s%s(%d): ", indent.c_str(), failure.file_, failure.line_ ); in printFailure()
|
/external/gtest/src/ |
D | gtest-death-test.cc | 614 : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} in WindowsDeathTest() 624 const int line_; member in testing::internal::WindowsDeathTest 721 "=" + file_ + "|" + StreamableToString(line_) + "|" + in AssumeRole() 872 ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } in ExecDeathTest() 883 const int line_; member in testing::internal::ExecDeathTest 1123 + file_ + "|" + StreamableToString(line_) + "|" in AssumeRole()
|