line              481 ash/system/user/tray_user.cc     gfx::RenderText* line = gfx::RenderText::CreateInstance();
line              482 ash/system/user/tray_user.cc     line->SetDirectionalityMode(gfx::DIRECTIONALITY_FROM_UI);
line              483 ash/system/user/tray_user.cc     line->SetText(*it);
line              484 ash/system/user/tray_user.cc     const gfx::Size size(contents_area.width(), line->GetStringSize().height());
line              485 ash/system/user/tray_user.cc     line->SetDisplayRect(gfx::Rect(position, size));
line              489 ash/system/user/tray_user.cc     line->SetColor(kPublicAccountUserCardTextColor);
line              499 ash/system/user/tray_user.cc       line->ApplyColor(kPublicAccountUserCardNameColor,
line              508 ash/system/user/tray_user.cc     lines_.push_back(line);
line               60 base/android/java/src/org/chromium/base/SysUtils.java                     String line;
line               62 base/android/java/src/org/chromium/base/SysUtils.java                         line = reader.readLine();
line               63 base/android/java/src/org/chromium/base/SysUtils.java                         if (line == null) {
line               67 base/android/java/src/org/chromium/base/SysUtils.java                         Matcher m = pattern.matcher(line);
line               29 base/android/java/src/org/chromium/base/TraceEvent.java         public void println(final String line) {
line               30 base/android/java/src/org/chromium/base/TraceEvent.java             if (line.startsWith(">")) {
line               31 base/android/java/src/org/chromium/base/TraceEvent.java                 beginHandling(line);
line               33 base/android/java/src/org/chromium/base/TraceEvent.java                 assert line.startsWith("<");
line               34 base/android/java/src/org/chromium/base/TraceEvent.java                 endHandling(line);
line               38 base/android/java/src/org/chromium/base/TraceEvent.java         void beginHandling(final String line) {
line               39 base/android/java/src/org/chromium/base/TraceEvent.java             TraceEvent.begin(DISPATCH_EVENT_NAME, line);
line               42 base/android/java/src/org/chromium/base/TraceEvent.java         void endHandling(final String line) {
line              111 base/android/java/src/org/chromium/base/TraceEvent.java         final void beginHandling(final String line) {
line              118 base/android/java/src/org/chromium/base/TraceEvent.java             super.beginHandling(line);
line              122 base/android/java/src/org/chromium/base/TraceEvent.java         final void endHandling(final String line) {
line              127 base/android/java/src/org/chromium/base/TraceEvent.java                         + elapsed + "ms: " + line);
line              129 base/android/java/src/org/chromium/base/TraceEvent.java             super.endHandling(line);
line              113 base/debug/proc_maps_linux.cc     const char* line = lines[i].c_str();
line              128 base/debug/proc_maps_linux.cc     if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4c %llx %hhx:%hhx %ld %n",
line              131 base/debug/proc_maps_linux.cc       DPLOG(WARNING) << "sscanf failed for line: " << line;
line              159 base/debug/proc_maps_linux.cc     regions.back().path.assign(line + path_index);
line              104 base/debug/stack_trace_win.cc       IMAGEHLP_LINE64 line = {};
line              105 base/debug/stack_trace_win.cc       line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
line              107 base/debug/stack_trace_win.cc                                            &line_displacement, &line);
line              119 base/debug/stack_trace_win.cc         (*os) << " (" << line.FileName << ":" << line.LineNumber << ")";
line              337 base/debug/trace_event_memory.cc     const std::string& line = lines[i];
line              338 base/debug/trace_event_memory.cc     AppendHeapProfileLineAsTraceFormat(line, output);
line              343 base/debug/trace_event_memory.cc void AppendHeapProfileTotalsAsTraceFormat(const std::string& line,
line              355 base/debug/trace_event_memory.cc   Tokenize(line, " :[]@", &tokens);
line              357 base/debug/trace_event_memory.cc     DLOG(WARNING) << "Invalid totals line " << line;
line              369 base/debug/trace_event_memory.cc bool AppendHeapProfileLineAsTraceFormat(const std::string& line,
line              385 base/debug/trace_event_memory.cc   Tokenize(line, " :[]@", &tokens);
line              388 base/debug/trace_event_memory.cc     DLOG(WARNING) << "Invalid line " << line;
line              135 base/debug/trace_event_memory.h BASE_EXPORT void AppendHeapProfileTotalsAsTraceFormat(const std::string& line,
line              141 base/debug/trace_event_memory.h BASE_EXPORT bool AppendHeapProfileLineAsTraceFormat(const std::string& line,
line              154 base/debug/trace_event_memory.h #define INTERNAL_TRACE_MEMORY_ID3(line) trace_memory_unique_##line
line              155 base/debug/trace_event_memory.h #define INTERNAL_TRACE_MEMORY_ID2(line) INTERNAL_TRACE_MEMORY_ID3(line)
line              153 base/environment.cc     const wchar_t* line = &env[cur_env];
line              154 base/environment.cc     size_t line_length = ParseEnvLine(line, &key);
line              159 base/environment.cc       result.append(line, line_length);
line               23 base/ini_parser.cc     std::string line = tokenizer.token();
line               24 base/ini_parser.cc     if (line.empty()) {
line               28 base/ini_parser.cc     if (line[0] == '#' || line[0] == ';') {
line               32 base/ini_parser.cc     if (line[0] == '[') {
line               34 base/ini_parser.cc       current_section = line.substr(1);
line               40 base/ini_parser.cc       size_t equal = line.find('=');
line               42 base/ini_parser.cc         key = line.substr(0, equal);
line               43 base/ini_parser.cc         value = line.substr(equal + 1);
line              955 base/json/json_parser.cc std::string JSONParser::FormatErrorMessage(int line, int column,
line              957 base/json/json_parser.cc   if (line || column) {
line              959 base/json/json_parser.cc         line, column, description.c_str());
line              223 base/json/json_parser.h   static std::string FormatErrorMessage(int line, int column,
line              526 base/logging.cc LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
line              528 base/logging.cc     : severity_(severity), file_(file), line_(line) {
line              529 base/logging.cc   Init(file, line);
line              532 base/logging.cc LogMessage::LogMessage(const char* file, int line)
line              533 base/logging.cc     : severity_(LOG_INFO), file_(file), line_(line) {
line              534 base/logging.cc   Init(file, line);
line              537 base/logging.cc LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
line              538 base/logging.cc     : severity_(severity), file_(file), line_(line) {
line              539 base/logging.cc   Init(file, line);
line              542 base/logging.cc LogMessage::LogMessage(const char* file, int line, std::string* result)
line              543 base/logging.cc     : severity_(LOG_FATAL), file_(file), line_(line) {
line              544 base/logging.cc   Init(file, line);
line              549 base/logging.cc LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
line              551 base/logging.cc     : severity_(severity), file_(file), line_(line) {
line              552 base/logging.cc   Init(file, line);
line              671 base/logging.cc void LogMessage::Init(const char* file, int line) {
line              709 base/logging.cc   stream_ << ":" << filename << "(" << line << ")] ";
line              733 base/logging.cc                                            int line,
line              739 base/logging.cc       log_message_(file, line, severity) {
line              743 base/logging.cc                                            int line,
line              748 base/logging.cc       log_message_(file, line, severity) {
line              794 base/logging.cc                                  int line,
line              798 base/logging.cc       log_message_(file, line, severity) {
line              291 base/logging.h     const char* file, int line, size_t message_start, const std::string& str);
line              733 base/logging.h   LogMessage(const char* file, int line, LogSeverity severity, int ctr);
line              743 base/logging.h   LogMessage(const char* file, int line);
line              750 base/logging.h   LogMessage(const char* file, int line, LogSeverity severity);
line              755 base/logging.h   LogMessage(const char* file, int line, std::string* result);
line              759 base/logging.h   LogMessage(const char* file, int line, LogSeverity severity,
line              767 base/logging.h   void Init(const char* file, int line);
line              832 base/logging.h                        int line,
line              838 base/logging.h                        int line,
line              860 base/logging.h                   int line,
line               26 base/logging_win.cc     const char* file, int line, size_t message_start,
line               82 base/logging_win.cc     event.SetField(2, sizeof(line), &line);
line               57 base/logging_win.h       int line, size_t message_start, const std::string& str);
line               16 base/mac/mac_logging.cc                                        int line,
line               19 base/mac/mac_logging.cc     : LogMessage(file_path, line, severity),
line               33 base/mac/mac_logging.h                      int line,
line               41 base/numerics/safe_numerics_unittest.cc       << " on line " << line;
line               47 base/numerics/safe_numerics_unittest.cc       << " on line " << line;
line               53 base/numerics/safe_numerics_unittest.cc     int line,
line              109 base/numerics/safe_numerics_unittest.cc     int line,
line              142 base/numerics/safe_numerics_unittest.cc     int line,
line              175 base/numerics/safe_numerics_unittest.cc static void TestArithmetic(const char* dst, int line) {
line              254 base/numerics/safe_numerics_unittest.cc   TestSpecializedArithmetic<Dst>(dst, line);
line              296 base/numerics/safe_numerics_unittest.cc       << " on line " << line;
line              300 base/numerics/safe_numerics_unittest.cc   static void Test(const char *dst, const char *src, int line) {
line              347 base/numerics/safe_numerics_unittest.cc   static void Test(const char *dst, const char *src, int line) {
line              383 base/numerics/safe_numerics_unittest.cc   static void Test(const char *dst, const char *src, int line) {
line              405 base/numerics/safe_numerics_unittest.cc   static void Test(const char *dst, const char *src, int line) {
line              437 base/numerics/safe_numerics_unittest.cc   static void Test(const char *dst, const char *src, int line) {
line               37 base/profiler/scoped_profile.h #define PASTE_LINE_NUMBER_ON_NAME(name, line) name##line
line               38 base/strings/string_split.cc bool SplitStringIntoKeyValue(const std::string& line,
line               46 base/strings/string_split.cc   size_t end_key_pos = line.find_first_of(key_value_delimiter);
line               48 base/strings/string_split.cc     DVLOG(1) << "cannot find delimiter in: " << line;
line               51 base/strings/string_split.cc   key->assign(line, 0, end_key_pos);
line               54 base/strings/string_split.cc   std::string remains(line, end_key_pos, line.size() - end_key_pos);
line               57 base/strings/string_split.cc     DVLOG(1) << "cannot parse value from line: " << line;
line              147 base/strings/string_split.cc bool SplitStringIntoKeyValuePairs(const std::string& line,
line              154 base/strings/string_split.cc   SplitString(line, key_value_pair_delimiter, &pairs);
line               41 base/strings/string_split.h BASE_EXPORT bool SplitStringIntoKeyValuePairs(const std::string& line,
line               89 base/sys_info_linux.cc     std::string line;
line               90 base/sys_info_linux.cc     while (std::getline(iss, line)) {
line               91 base/sys_info_linux.cc       if (line.compare(0, strlen(kCpuModelPrefix), kCpuModelPrefix) == 0) {
line               92 base/sys_info_linux.cc         size_t pos = line.find(": ");
line               93 base/sys_info_linux.cc         return line.substr(pos + 2);
line               74 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *lock)
line               78 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *lock)
line               82 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *lock, long is_w)
line               86 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *lock, long is_w)
line               90 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *barrier, long count,
line               95 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *barrier)
line               99 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *barrier)
line              103 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *barrier)
line              107 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *cv,
line              112 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *cv)
line              116 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *cv)
line              120 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *obj)
line              124 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *obj)
line              128 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *address, long size)
line              132 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *address, long size)
line              136 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *pcq)
line              140 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *pcq)
line              144 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *pcq)
line              148 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *pcq)
line              152 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mem, long size)
line              156 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mem,
line              161 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              165 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mem,
line              170 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mem, long size,
line              175 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mu)
line              179 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *mu)
line              183 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *arg)
line              187 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const char *name)
line              191 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              195 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              199 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              203 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              207 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              211 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              215 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, int enable)
line              219 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line, const volatile void *arg)
line              223 base/third_party/dynamic_annotations/dynamic_annotations.c     const char *file, int line)
line              433 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              436 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              439 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              442 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              445 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, const volatile void *barrier, long count,
line              448 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              451 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              454 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              457 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, const volatile void *cv,
line              460 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              463 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              466 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              469 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              472 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              475 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              478 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              481 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              484 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              487 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              490 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              493 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, const volatile void *mem,
line              496 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              498 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, const volatile void *mem,
line              501 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, const volatile void *mem, long size,
line              504 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              507 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              510 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              513 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              516 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              518 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              520 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              522 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              524 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              526 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              528 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line, int enable) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              530 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line,
line              533 base/third_party/dynamic_annotations/dynamic_annotations.h     const char *file, int line) DYNAMIC_ANNOTATIONS_ATTRIBUTE_WEAK;
line              124 base/third_party/xdg_mime/xdgmimealias.c   char line[255];
line              136 base/third_party/xdg_mime/xdgmimealias.c   while (fgets (line, 255, file) != NULL)
line              139 base/third_party/xdg_mime/xdgmimealias.c       if (line[0] == '#')
line              142 base/third_party/xdg_mime/xdgmimealias.c       sep = strchr (line, ' ');
line              153 base/third_party/xdg_mime/xdgmimealias.c       list->aliases[list->n_aliases].alias = strdup (line);
line              615 base/third_party/xdg_mime/xdgmimeglob.c   char line[255];
line              625 base/third_party/xdg_mime/xdgmimeglob.c   while (fgets (line, 255, glob_file) != NULL)
line              632 base/third_party/xdg_mime/xdgmimeglob.c       if (line[0] == '#' || line[0] == 0)
line              635 base/third_party/xdg_mime/xdgmimeglob.c       end = line + strlen(line) - 1;
line              639 base/third_party/xdg_mime/xdgmimeglob.c       p = line;
line              123 base/third_party/xdg_mime/xdgmimeicon.c   char line[255];
line              135 base/third_party/xdg_mime/xdgmimeicon.c   while (fgets (line, 255, file) != NULL)
line              138 base/third_party/xdg_mime/xdgmimeicon.c       if (line[0] == '#')
line              141 base/third_party/xdg_mime/xdgmimeicon.c       sep = strchr (line, ':');
line              152 base/third_party/xdg_mime/xdgmimeicon.c       list->icons[list->n_icons].mime_type = strdup (line);
line              129 base/third_party/xdg_mime/xdgmimeparent.c   char line[255];
line              142 base/third_party/xdg_mime/xdgmimeparent.c   while (fgets (line, 255, file) != NULL)
line              145 base/third_party/xdg_mime/xdgmimeparent.c       if (line[0] == '#')
line              148 base/third_party/xdg_mime/xdgmimeparent.c       sep = strchr (line, ' ');
line              156 base/third_party/xdg_mime/xdgmimeparent.c 	  if (strcmp (list->parents[i].mime, line) == 0)
line              171 base/third_party/xdg_mime/xdgmimeparent.c 	  list->parents[list->n_mimes].mime = strdup (line);
line              273 cc/output/gl_renderer.cc                              int line) {
line              276 cc/output/gl_renderer.cc     LOG(ERROR) << "GL command failed: File: " << file << "\n\tLine " << line
line               79 cc/output/gl_renderer.h                           int line);
line              139 chrome/browser/chromeos/imageburner/burn_manager.cc void ConfigFile::ProcessLine(const std::vector<std::string>& line) {
line              142 chrome/browser/chromeos/imageburner/burn_manager.cc   if (line[0] == kName) {
line              157 chrome/browser/chromeos/imageburner/burn_manager.cc   if (line[0] == kHwid) {
line              160 chrome/browser/chromeos/imageburner/burn_manager.cc     last_block.hwids.insert(line[1]);
line              163 chrome/browser/chromeos/imageburner/burn_manager.cc     last_block.properties.insert(std::make_pair(line[0], line[1]));
line              107 chrome/browser/chromeos/imageburner/burn_manager.h   void ProcessLine(const std::vector<std::string>& line);
line              605 chrome/browser/devtools/devtools_adb_bridge.cc     std::string line = lines[i];
line              606 chrome/browser/devtools/devtools_adb_bridge.cc     size_t pos = line.find(kDumpsysScreenSizePrefix);
line              609 chrome/browser/devtools/devtools_adb_bridge.cc           line.substr(pos + std::string(kDumpsysScreenSizePrefix).size()));
line              160 chrome/browser/download/download_request_limiter_unittest.cc       int line) {
line              161 chrome/browser/download/download_request_limiter_unittest.cc     EXPECT_EQ(expect_continues, continue_count_) << "line " << line;
line              162 chrome/browser/download/download_request_limiter_unittest.cc     EXPECT_EQ(expect_cancels, cancel_count_) << "line " << line;
line              163 chrome/browser/download/download_request_limiter_unittest.cc     EXPECT_EQ(expect_asks, ask_allow_count_) << "line " << line;
line               30 chrome/browser/extensions/api/system_cpu/cpu_info_provider_linux.cc   std::string line;
line               34 chrome/browser/extensions/api/system_cpu/cpu_info_provider_linux.cc   std::getline(iss, line);
line               36 chrome/browser/extensions/api/system_cpu/cpu_info_provider_linux.cc   while (std::getline(iss, line)) {
line               37 chrome/browser/extensions/api/system_cpu/cpu_info_provider_linux.cc     if (line.compare(0, 3, "cpu") != 0)
line               41 chrome/browser/extensions/api/system_cpu/cpu_info_provider_linux.cc     int vals = sscanf(line.c_str(), "%*s %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64,
line              227 chrome/browser/extensions/api/web_request/web_request_api_helpers.cc     std::string line = modification.name() + ": " + modification.value();
line              228 chrome/browser/extensions/api/web_request/web_request_api_helpers.cc     modified_headers->Append(new base::StringValue(line));
line               41 chrome/browser/extensions/user_script_master.cc static bool GetDeclarationValue(const base::StringPiece& line,
line               44 chrome/browser/extensions/user_script_master.cc   base::StringPiece::size_type index = line.find(prefix);
line               48 chrome/browser/extensions/user_script_master.cc   std::string temp(line.data() + index + prefix.length(),
line               49 chrome/browser/extensions/user_script_master.cc                    line.length() - index - prefix.length());
line               67 chrome/browser/extensions/user_script_master.cc   base::StringPiece line;
line               94 chrome/browser/extensions/user_script_master.cc     line.set(script_text.data() + line_start, line_end - line_start);
line               97 chrome/browser/extensions/user_script_master.cc       if (line.starts_with(kUserScriptBegin))
line              100 chrome/browser/extensions/user_script_master.cc       if (line.starts_with(kUserScriptEng))
line              104 chrome/browser/extensions/user_script_master.cc       if (GetDeclarationValue(line, kIncludeDeclaration, &value)) {
line              109 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kExcludeDeclaration, &value)) {
line              113 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kNamespaceDeclaration, &value)) {
line              115 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kNameDeclaration, &value)) {
line              117 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kVersionDeclaration, &value)) {
line              121 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kDescriptionDeclaration, &value)) {
line              123 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kMatchDeclaration, &value)) {
line              128 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kExcludeMatchDeclaration, &value)) {
line              133 chrome/browser/extensions/user_script_master.cc       } else if (GetDeclarationValue(line, kRunAtDeclaration, &value)) {
line              277 chrome/browser/history/url_database.cc   int line;
line              283 chrome/browser/history/url_database.cc     line = __LINE__;
line              289 chrome/browser/history/url_database.cc     line = __LINE__;
line              292 chrome/browser/history/url_database.cc       GetDB().GetCachedStatement(sql::StatementID(__FILE__, line), sql));
line               31 chrome/browser/install_verification/win/module_ids.cc     const base::StringPiece& line,
line               35 chrome/browser/install_verification/win/module_ids.cc   base::CStringTokenizer line_tokenizer(line.begin(), line.end(), " ");
line               59 chrome/browser/media/webrtc_browsertest_base.cc                                         int line,
line              138 chrome/browser/net/evicted_domain_cookie_counter_unittest.cc   std::string line(cookie_line);
line              140 chrome/browser/net/evicted_domain_cookie_counter_unittest.cc     line.append(";max-age=" + base::Int64ToString(max_age));
line              142 chrome/browser/net/evicted_domain_cookie_counter_unittest.cc       GURL(url), line, mock_time_, net::CookieOptions());
line               81 chrome/browser/net/firefox_proxy_settings.cc     const std::string& line = *iter;
line               82 chrome/browser/net/firefox_proxy_settings.cc     size_t start_key = line.find(kUserPrefString);
line               86 chrome/browser/net/firefox_proxy_settings.cc     size_t stop_key = line.find('"', start_key);
line               89 chrome/browser/net/firefox_proxy_settings.cc           pref_file.value() << "' line is '" << line << "'.";
line               92 chrome/browser/net/firefox_proxy_settings.cc     std::string key = line.substr(start_key, stop_key - start_key);
line               93 chrome/browser/net/firefox_proxy_settings.cc     size_t start_value = line.find(',', stop_key + 1);
line               96 chrome/browser/net/firefox_proxy_settings.cc           pref_file.value() << "' line is '" << line << "'.";
line               99 chrome/browser/net/firefox_proxy_settings.cc     size_t stop_value = line.find(");", start_value + 1);
line              102 chrome/browser/net/firefox_proxy_settings.cc           pref_file.value() << "' line is '" << line << "'.";
line              105 chrome/browser/net/firefox_proxy_settings.cc     std::string value = line.substr(start_value + 1,
line              350 chrome/browser/notifications/desktop_notification_service.cc     base::string16 line = title.empty() ? body : title;
line              356 chrome/browser/notifications/desktop_notification_service.cc     subst.push_back(net::EscapeForHTML(base::UTF16ToUTF8(line)));
line              220 chrome/browser/process_info_snapshot_mac.cc   std::string line;
line              221 chrome/browser/process_info_snapshot_mac.cc   while (std::getline(top_in, line)) {
line              222 chrome/browser/process_info_snapshot_mac.cc     std::istringstream in(line, std::istringstream::in);
line               25 chrome/browser/safe_browsing/protocol_parser.cc bool GetLine(const char* input, int input_len, std::string* line) {
line               29 chrome/browser/safe_browsing/protocol_parser.cc       line->assign(input, pos - input);
line               53 chrome/browser/safe_browsing/protocol_parser.cc   std::string line;
line               55 chrome/browser/safe_browsing/protocol_parser.cc     if (!GetLine(data, length, &line))
line               58 chrome/browser/safe_browsing/protocol_parser.cc     offset = static_cast<int>(line.size()) + 1;
line               63 chrome/browser/safe_browsing/protocol_parser.cc     base::SplitString(line, ':', &cmd_parts);
line              222 chrome/browser/safe_browsing/safe_browsing_database_unittest.cc   static bool LogMessageIgnorer(int severity, const char* file, int line,
line              102 chrome/browser/search/suggestions/suggestions_source.cc       std::string line;
line              103 chrome/browser/search/suggestions/suggestions_source.cc       line.append("<li><a href=\"");
line              104 chrome/browser/search/suggestions/suggestions_source.cc       line.append(net::EscapeForHTML(suggestion.url()));
line              105 chrome/browser/search/suggestions/suggestions_source.cc       line.append("\" target=\"_blank\">");
line              106 chrome/browser/search/suggestions/suggestions_source.cc       line.append(net::EscapeForHTML(suggestion.title()));
line              107 chrome/browser/search/suggestions/suggestions_source.cc       line.append("</a></li>\n");
line              108 chrome/browser/search/suggestions/suggestions_source.cc       out.push_back(line);
line              680 chrome/browser/thumbnails/content_analysis_unittest.cc   for (int line = 0; line < 3; ++line) {
line              681 chrome/browser/thumbnails/content_analysis_unittest.cc     int alignment = line % 2;
line              683 chrome/browser/thumbnails/content_analysis_unittest.cc         body_rect.height() / 3 * line + margin_vertical;
line               35 chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h   virtual void InvalidateLine(size_t line) OVERRIDE {}
line              246 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc void OmniboxPopupViewGtk::InvalidateLine(size_t line) {
line              247 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   if (line < GetHiddenMatchCount())
line              253 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc       line, GetWindowRect(gdk_window).width()).ToGdkRectangle();
line              344 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   size_t line = std::max(y - kBorderThickness, 0) / kHeightPerResult;
line              345 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   return std::min(line + GetHiddenMatchCount(), GetResult().size() - 1);
line              348 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc gfx::Rect OmniboxPopupViewGtk::GetRectForLine(size_t line, int width) const {
line              349 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   size_t visible_line = line - GetHiddenMatchCount();
line              491 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc void OmniboxPopupViewGtk::AcceptLine(size_t line,
line              493 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   omnibox_view_->OpenMatch(GetResult().match_at(line), disposition, GURL(),
line              494 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc                            base::string16(), line);
line              563 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   size_t line = LineFromY(static_cast<int>(event->y));
line              566 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   model_->SetHoveredLine(line);
line              569 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc     model_->SetSelectedLine(line, false, false);
line              580 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   size_t line = LineFromY(static_cast<int>(event->y));
line              581 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   model_->SetHoveredLine(line);
line              583 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc     model_->SetSelectedLine(line, false, false);
line              598 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc   size_t line = LineFromY(static_cast<int>(event->y));
line              601 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc       AcceptLine(line, CURRENT_TAB);
line              604 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc       AcceptLine(line, NEW_BACKGROUND_TAB);
line               49 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.h   virtual void InvalidateLine(size_t line) OVERRIDE;
line               67 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.h   gfx::Rect GetRectForLine(size_t line, int width) const;
line               97 chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.h   void AcceptLine(size_t line, WindowOpenDisposition disposition);
line               97 chrome/browser/ui/omnibox/omnibox_popup_model.cc void OmniboxPopupModel::SetHoveredLine(size_t line) {
line               98 chrome/browser/ui/omnibox/omnibox_popup_model.cc   const bool is_disabling = (line == kNoMatch);
line               99 chrome/browser/ui/omnibox/omnibox_popup_model.cc   DCHECK(is_disabling || (line < result().size()));
line              101 chrome/browser/ui/omnibox/omnibox_popup_model.cc   if (line == hovered_line_)
line              110 chrome/browser/ui/omnibox/omnibox_popup_model.cc   hovered_line_ = line;
line              115 chrome/browser/ui/omnibox/omnibox_popup_model.cc void OmniboxPopupModel::SetSelectedLine(size_t line,
line              125 chrome/browser/ui/omnibox/omnibox_popup_model.cc   line = std::min(line, result.size() - 1);
line              126 chrome/browser/ui/omnibox/omnibox_popup_model.cc   const AutocompleteMatch& match = result.match_at(line);
line              137 chrome/browser/ui/omnibox/omnibox_popup_model.cc   if (line == selected_line_ && !force)
line              153 chrome/browser/ui/omnibox/omnibox_popup_model.cc   selected_line_ = line;
line               60 chrome/browser/ui/omnibox/omnibox_popup_model.h   void SetHoveredLine(size_t line);
line               76 chrome/browser/ui/omnibox/omnibox_popup_model.h   void SetSelectedLine(size_t line, bool reset_to_default, bool force);
line               28 chrome/browser/ui/omnibox/omnibox_popup_view.h   virtual void InvalidateLine(size_t line) = 0;
line              359 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc       gfx::RenderText* line = gfx::RenderText::CreateInstance();
line              360 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc       line->SetDirectionalityMode(gfx::DIRECTIONALITY_FROM_UI);
line              361 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc       line->SetText(*it);
line              363 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc                            line->GetStringSize().height());
line              364 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc       line->SetDisplayRect(gfx::Rect(position, size));
line              366 chrome/browser/ui/views/extensions/extension_installed_bubble_view.cc       sign_in_promo_lines_.push_back(line);
line              143 chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc void OmniboxPopupContentsView::InvalidateLine(size_t line) {
line              144 chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc   OmniboxResultView* result = result_view_at(line);
line              147 chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc   if (HasMatchAt(line) && GetMatchAtIndex(line).associated_keyword.get()) {
line              148 chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc     result->ShowKeyword(IsSelectedIndex(line) &&
line               43 chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h   virtual void InvalidateLine(size_t line) OVERRIDE;
line              118 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc   dict.Set("line", new base::FundamentalValue(details.line));
line               97 chrome/browser/ui/webui/version_handler.cc     std::string line = active_groups[i].trial_name + ":" +
line               99 chrome/browser/ui/webui/version_handler.cc     base::ReplaceChars(line, "-", kNonBreakingHyphenUTF8String, &line);
line              100 chrome/browser/ui/webui/version_handler.cc     variations.push_back(line);
line               89 chrome/common/extensions/docs/examples/apps/hello-java/HelloLicenseServlet.java         for (String line; (line = input.readLine()) != null; file += line);
line              103 chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/IRCProxyWebSocket.java             String line = in_.readLine();
line              104 chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/IRCProxyWebSocket.java             System.out.println("<< " + line);
line              105 chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/IRCProxyWebSocket.java             outbound_.sendMessage(frame_, line + "\r\n");
line              144 chrome/common/importer/firefox_importer_utils.cc     const std::string& line = lines[i];
line              145 chrome/common/importer/firefox_importer_utils.cc     if (line.empty() || line[0] == '#' || line[0] == ';')
line              147 chrome/common/importer/firefox_importer_utils.cc     size_t equal = line.find('=');
line              149 chrome/common/importer/firefox_importer_utils.cc       std::string key = line.substr(0, equal);
line              151 chrome/common/importer/firefox_importer_utils.cc         base::StringToInt(line.substr(equal + 1), version);
line              160 chrome/common/importer/firefox_importer_utils.cc         size_t separator_pos = line.find_first_of('=');
line              161 chrome/common/importer/firefox_importer_utils.cc         const std::string& path_from_ini = line.substr(separator_pos + 1);
line              165 chrome/common/importer/firefox_importer_utils.cc         *app_path = base::FilePath::FromUTF8Unsafe(line.substr(equal + 1));
line               35 chrome/installer/tools/validate_installation_main.cc                              int line,
line              105 chrome/installer/tools/validate_installation_main.cc                                       int line,
line              114 chrome/installer/tools/validate_installation_main.cc     return (old_message_handler_)(severity, file, line, message_start, str);
line               30 chrome/installer/util/installation_validation_helper.cc                                       int line,
line               80 chrome/installer/util/installation_validation_helper.cc                                                int line,
line               88 chrome/installer/util/installation_validation_helper.cc     ADD_FAILURE_AT(file, line)
line               94 chrome/installer/util/installation_validation_helper.cc     return (old_message_handler_)(severity, file, line, message_start, str);
line              322 chrome/installer/util/installation_validator_unittest.cc                                         int line,
line              328 chrome/installer/util/installation_validator_unittest.cc                                               int line,
line              335 chrome/installer/util/installation_validator_unittest.cc                                int line,
line              413 chrome/installer/util/installation_validator_unittest.cc                                                  int line,
line              424 chrome/installer/util/installation_validator_unittest.cc           file, line, str.substr(message_start, message_length).c_str());
line              427 chrome/installer/util/installation_validator_unittest.cc       ADD_FAILURE_AT(file, line)
line              434 chrome/installer/util/installation_validator_unittest.cc     return (old_log_message_handler_)(severity, file, line, message_start, str);
line              212 chrome/renderer/spellchecker/spellcheck_provider.cc     const base::string16& line,
line              222 chrome/renderer/spellchecker/spellcheck_provider.cc     spellcheck_->RequestTextChecking(line, completion);
line              231 chrome/renderer/spellchecker/spellcheck_provider.cc                                          line,
line              237 chrome/renderer/spellchecker/spellcheck_provider.cc   last_request_ = line;
line               46 chrome/test/base/chrome_process_util_mac.cc     std::string line(base::CollapseWhitespaceASCII(*line_iter, false));
line               48 chrome/test/base/chrome_process_util_mac.cc     base::SplitString(line, ' ', &values);
line               72 chrome/test/base/web_ui_browsertest.cc                 int line,
line              205 chrome/test/chromedriver/chrome/adb_impl.cc     std::string line = lines[i];
line              206 chrome/test/chromedriver/chrome/adb_impl.cc     if (line.empty())
line              209 chrome/test/chromedriver/chrome/adb_impl.cc     base::SplitStringAlongWhitespace(line, &tokens);
line               69 chrome/test/chromedriver/chrome/console_logger.cc       int line = -1;
line               70 chrome/test/chromedriver/chrome/console_logger.cc       if (message_dict->GetInteger("line", &line)) {
line               73 chrome/test/chromedriver/chrome/console_logger.cc           base::SStringPrintf(&line_column, "%d:%d", line, column);
line               75 chrome/test/chromedriver/chrome/console_logger.cc           base::SStringPrintf(&line_column, "%d", line);
line              116 chrome/test/chromedriver/chrome/console_logger_unittest.cc                       int line,
line              125 chrome/test/chromedriver/chrome/console_logger_unittest.cc   if (line != -1)
line              126 chrome/test/chromedriver/chrome/console_logger_unittest.cc     out_params->SetInteger("message.line", line);
line               96 chrome/test/chromedriver/logging.cc                       int line,
line               61 chrome/test/logging/win/log_file_printer.cc                            int line,
line               68 chrome/test/logging/win/log_file_printer.cc   *out << filename << '(' << line << ')';
line              110 chrome/test/logging/win/log_file_printer.cc                                 int line,
line              220 chrome/test/logging/win/log_file_printer.cc                                     int line,
line              226 chrome/test/logging/win/log_file_printer.cc   WriteLocationToStream(file, line, &location_stream);
line              152 chrome/test/logging/win/log_file_reader.cc   int line = 0;
line              160 chrome/test/logging/win/log_file_reader.cc       parser.ReadInt(&line) &&
line              166 chrome/test/logging/win/log_file_reader.cc         line, file, message);
line               53 chrome/test/logging/win/log_file_reader.h                                 int line,
line               87 chrome/tools/convert_dict/aff_reader.cc     std::string line = ReadLine(file_);
line               90 chrome/tools/convert_dict/aff_reader.cc     if (!got_command && !line.empty() && line[0] == '#') {
line               91 chrome/tools/convert_dict/aff_reader.cc       intro_comment_.append(line);
line               96 chrome/tools/convert_dict/aff_reader.cc     StripComment(&line);
line               97 chrome/tools/convert_dict/aff_reader.cc     if (line.empty())
line              101 chrome/tools/convert_dict/aff_reader.cc     if (StringBeginsWith(line, "SET ")) {
line              103 chrome/tools/convert_dict/aff_reader.cc       encoding_ = line.substr(4);
line              105 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "AF ")) {
line              110 chrome/tools/convert_dict/aff_reader.cc         std::string group(line.substr(3));
line              115 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "SFX ") ||
line              116 chrome/tools/convert_dict/aff_reader.cc                StringBeginsWith(line, "PFX ")) {
line              117 chrome/tools/convert_dict/aff_reader.cc       AddAffix(&line);
line              118 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "REP ")) {
line              122 chrome/tools/convert_dict/aff_reader.cc         std::string replacement(line.substr(4));
line              127 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "TRY ") ||
line              128 chrome/tools/convert_dict/aff_reader.cc                StringBeginsWith(line, "MAP ")) {
line              129 chrome/tools/convert_dict/aff_reader.cc       HandleEncodedCommand(line);
line              130 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "IGNORE ")) {
line              133 chrome/tools/convert_dict/aff_reader.cc     } else if (StringBeginsWith(line, "COMPLEXPREFIXES ")) {
line              138 chrome/tools/convert_dict/aff_reader.cc       HandleRawCommand(line);
line              325 chrome/tools/convert_dict/aff_reader.cc void AffReader::HandleRawCommand(const std::string& line) {
line              326 chrome/tools/convert_dict/aff_reader.cc   other_commands_.push_back(line);
line              329 chrome/tools/convert_dict/aff_reader.cc void AffReader::HandleEncodedCommand(const std::string& line) {
line              331 chrome/tools/convert_dict/aff_reader.cc   if (!EncodingToUTF8(line, &utf8))
line              332 chrome/tools/convert_dict/aff_reader.cc     Panic("Cannot encode command '%s' to utf8.", line.c_str());
line               71 chrome/tools/convert_dict/aff_reader.h   void HandleRawCommand(const std::string& line);
line               72 chrome/tools/convert_dict/aff_reader.h   void HandleEncodedCommand(const std::string& line);
line               22 chrome/tools/convert_dict/dic_reader.cc void SplitDicLine(const std::string& line, std::vector<std::string>* output) {
line               25 chrome/tools/convert_dict/dic_reader.cc   size_t slash_index = line.size();
line               26 chrome/tools/convert_dict/dic_reader.cc   for (size_t i = 0; i < line.size(); i++) {
line               27 chrome/tools/convert_dict/dic_reader.cc     if (line[i] == '/' && i > 0 && line[i - 1] != '\\') {
line               37 chrome/tools/convert_dict/dic_reader.cc   std::string word = line.substr(0, slash_index);
line               42 chrome/tools/convert_dict/dic_reader.cc   if (slash_index < line.size() - 1)
line               43 chrome/tools/convert_dict/dic_reader.cc     output->push_back(line.substr(slash_index + 1));
line               59 chrome/tools/convert_dict/dic_reader.cc     std::string line = ReadLine(file);
line               61 chrome/tools/convert_dict/dic_reader.cc     StripComment(&line);
line               62 chrome/tools/convert_dict/dic_reader.cc     if (line.empty())
line               73 chrome/tools/convert_dict/dic_reader.cc     SplitDicLine(line, &split);
line               16 chrome/tools/convert_dict/hunspell_reader.cc void TrimLine(std::string* line) {
line               17 chrome/tools/convert_dict/hunspell_reader.cc   if (line->size() > 3 &&
line               18 chrome/tools/convert_dict/hunspell_reader.cc       static_cast<unsigned char>((*line)[0]) == 0xef &&
line               19 chrome/tools/convert_dict/hunspell_reader.cc       static_cast<unsigned char>((*line)[1]) == 0xbb &&
line               20 chrome/tools/convert_dict/hunspell_reader.cc       static_cast<unsigned char>((*line)[2]) == 0xbf)
line               21 chrome/tools/convert_dict/hunspell_reader.cc     *line = line->substr(3);
line               26 chrome/tools/convert_dict/hunspell_reader.cc   base::TrimWhitespace(*line, base::TRIM_ALL, line);
line               30 chrome/tools/convert_dict/hunspell_reader.cc   const char* line = fgets(line_buffer, kLineBufferLen - 1, file);
line               31 chrome/tools/convert_dict/hunspell_reader.cc   if (!line)
line               34 chrome/tools/convert_dict/hunspell_reader.cc   std::string str = line;
line               39 chrome/tools/convert_dict/hunspell_reader.cc void StripComment(std::string* line) {
line               40 chrome/tools/convert_dict/hunspell_reader.cc   for (size_t i = 0; i < line->size(); i++) {
line               41 chrome/tools/convert_dict/hunspell_reader.cc     if ((*line)[i] == '#') {
line               42 chrome/tools/convert_dict/hunspell_reader.cc       line->resize(i);
line               43 chrome/tools/convert_dict/hunspell_reader.cc       TrimLine(line);
line               18 chrome/tools/convert_dict/hunspell_reader.h void TrimLine(std::string* line);
line               21 chrome/tools/convert_dict/hunspell_reader.h void StripComment(std::string* line);
line               90 chrome/tools/profile_reset/jtl_parser.cc   std::string line;
line               97 chrome/tools/profile_reset/jtl_parser.cc     if (!RE2::Consume(&verbose_text_piece, single_line_regex, &line)) {
line              103 chrome/tools/profile_reset/jtl_parser.cc         &line, remove_whitespace_regex, kRemoveWhitespaceRewrite);
line              104 chrome/tools/profile_reset/jtl_parser.cc     *compacted_text += line;
line              112 chrome/utility/importer/bookmark_html_reader.cc     std::string line;
line              113 chrome/utility/importer/bookmark_html_reader.cc     base::TrimString(lines[i], " ", &line);
line              120 chrome/utility/importer/bookmark_html_reader.cc     while (StartsWithASCII(line, kHrTag, false)) {
line              121 chrome/utility/importer/bookmark_html_reader.cc       line.erase(0, arraysize(kHrTag) - 1);
line              122 chrome/utility/importer/bookmark_html_reader.cc       base::TrimString(line, " ", &line);
line              126 chrome/utility/importer/bookmark_html_reader.cc     if (internal::ParseCharsetFromLine(line, &charset))
line              130 chrome/utility/importer/bookmark_html_reader.cc     if (internal::ParseFolderNameFromLine(line,
line              148 chrome/utility/importer/bookmark_html_reader.cc         internal::ParseBookmarkFromLine(line, charset, &title,
line              151 chrome/utility/importer/bookmark_html_reader.cc         internal::ParseMinimumBookmarkFromLine(line, charset, &title, &url);
line              192 chrome/utility/importer/bookmark_html_reader.cc     if (StartsWithASCII(line, "<DL>", false)) {
line              203 chrome/utility/importer/bookmark_html_reader.cc     } else if (StartsWithASCII(line, "</DL>", false)) {
line              243 chrome/utility/importer/bookmark_html_reader.cc bool ParseCharsetFromLine(const std::string& line, std::string* charset) {
line              245 chrome/utility/importer/bookmark_html_reader.cc   if (StartsWithASCII(line, "<META", false) &&
line              246 chrome/utility/importer/bookmark_html_reader.cc       (line.find("CONTENT=\"") != std::string::npos ||
line              247 chrome/utility/importer/bookmark_html_reader.cc           line.find("content=\"") != std::string::npos)) {
line              248 chrome/utility/importer/bookmark_html_reader.cc     size_t begin = line.find(kCharset);
line              252 chrome/utility/importer/bookmark_html_reader.cc     size_t end = line.find_first_of('\"', begin);
line              253 chrome/utility/importer/bookmark_html_reader.cc     *charset = line.substr(begin, end - begin);
line              259 chrome/utility/importer/bookmark_html_reader.cc bool ParseFolderNameFromLine(const std::string& line,
line              269 chrome/utility/importer/bookmark_html_reader.cc   if (!StartsWithASCII(line, kFolderOpen, true))
line              272 chrome/utility/importer/bookmark_html_reader.cc   size_t end = line.find(kFolderClose);
line              273 chrome/utility/importer/bookmark_html_reader.cc   size_t tag_end = line.rfind('>', end) + 1;
line              278 chrome/utility/importer/bookmark_html_reader.cc   base::CodepageToUTF16(line.substr(tag_end, end - tag_end), charset.c_str(),
line              282 chrome/utility/importer/bookmark_html_reader.cc   std::string attribute_list = line.substr(arraysize(kFolderOpen),
line              304 chrome/utility/importer/bookmark_html_reader.cc bool ParseBookmarkFromLine(const std::string& line,
line              328 chrome/utility/importer/bookmark_html_reader.cc   if (!StartsWithASCII(line, kItemOpen, true))
line              331 chrome/utility/importer/bookmark_html_reader.cc   size_t end = line.find(kItemClose);
line              332 chrome/utility/importer/bookmark_html_reader.cc   size_t tag_end = line.rfind('>', end) + 1;
line              336 chrome/utility/importer/bookmark_html_reader.cc   std::string attribute_list = line.substr(arraysize(kItemOpen),
line              347 chrome/utility/importer/bookmark_html_reader.cc   base::CodepageToUTF16(line.substr(tag_end, end - tag_end), charset.c_str(),
line              391 chrome/utility/importer/bookmark_html_reader.cc bool ParseMinimumBookmarkFromLine(const std::string& line,
line              404 chrome/utility/importer/bookmark_html_reader.cc   if (!StartsWithASCII(line, kItemOpen, false))
line              408 chrome/utility/importer/bookmark_html_reader.cc   size_t end = line.find(kItemClose);
line              409 chrome/utility/importer/bookmark_html_reader.cc   size_t tag_end = line.rfind('>', end) + 1;
line              413 chrome/utility/importer/bookmark_html_reader.cc   std::string attribute_list = line.substr(arraysize(kItemOpen),
line              417 chrome/utility/importer/bookmark_html_reader.cc   base::CodepageToUTF16(line.substr(tag_end, end - tag_end), charset.c_str(),
line               62 chrome/utility/importer/bookmark_html_reader.h bool ParseCharsetFromLine(const std::string& line,
line               64 chrome/utility/importer/bookmark_html_reader.h bool ParseFolderNameFromLine(const std::string& line,
line               72 chrome/utility/importer/bookmark_html_reader.h bool ParseBookmarkFromLine(const std::string& line,
line               88 chrome/utility/importer/bookmark_html_reader.h bool ParseMinimumBookmarkFromLine(const std::string& line,
line              112 chromeos/network/network_event_log.cc   std::string line;
line              114 chromeos/network/network_event_log.cc     line += "[" + base::UTF16ToUTF8(base::TimeFormatTimeOfDay(time)) + "] ";
line              117 chromeos/network/network_event_log.cc     line += base::StringPrintf("%s:%d ", file.c_str(), file_line);
line              119 chromeos/network/network_event_log.cc   line += format_html ? GetHtmlText(show_desc) : GetNormalText(show_desc);
line              121 chromeos/network/network_event_log.cc     line += base::StringPrintf(" (%d)", count);
line              122 chromeos/network/network_event_log.cc   return line;
line               64 components/autofill/content/browser/wallet/wallet_address.cc       base::string16 line;
line               65 components/autofill/content/browser/wallet/wallet_address.cc       address_line_list->GetString(i, &line);
line               66 components/autofill/content/browser/wallet/wallet_address.cc       street_address.push_back(line);
line              387 components/autofill/content/browser/wallet/wallet_address.cc base::string16 Address::GetStreetAddressLine(size_t line) const {
line              388 components/autofill/content/browser/wallet/wallet_address.cc   return street_address_.size() > line ? street_address_[line] :
line              164 components/autofill/content/browser/wallet/wallet_address.h   base::string16 GetStreetAddressLine(size_t line) const;
line              197 components/autofill/core/browser/autofill_merge_unittest.cc     std::string line = lines[i];
line              199 components/autofill/core/browser/autofill_merge_unittest.cc     if (line != kProfileSeparator) {
line              201 components/autofill/core/browser/autofill_merge_unittest.cc       size_t separator_pos = line.find(kFieldSeparator);
line              204 components/autofill/core/browser/autofill_merge_unittest.cc           base::UTF8ToUTF16(line.substr(0, separator_pos));
line              206 components/autofill/core/browser/autofill_merge_unittest.cc           base::UTF8ToUTF16(line.substr(separator_pos + kFieldOffset));
line              218 components/autofill/core/browser/autofill_merge_unittest.cc     if ((i > 0 && line == kProfileSeparator) || i == lines.size() - 1) {
line               60 components/breakpad/tools/crash_service.cc     std::wstring line = pos->first;
line               61 components/breakpad/tools/crash_service.cc     line += L':';
line               62 components/breakpad/tools/crash_service.cc     line += pos->second;
line               63 components/breakpad/tools/crash_service.cc     line += L'\n';
line               64 components/breakpad/tools/crash_service.cc     file.write(line.c_str(), static_cast<std::streamsize>(line.length()));
line               11 components/translate/core/browser/translate_event_details.cc       line(in_line),
line               24 components/translate/core/browser/translate_event_details.h   int line;
line              250 components/translate/core/browser/translate_language_list.cc void TranslateLanguageList::NotifyEvent(int line, const std::string& message) {
line              251 components/translate/core/browser/translate_language_list.cc   TranslateEventDetails details(__FILE__, line, message);
line               82 components/translate/core/browser/translate_language_list.h   void NotifyEvent(int line, const std::string& message);
line               22 content/app/startup_helper_win.cc                       const wchar_t* file, unsigned int line,
line               80 content/browser/accessibility/accessibility_tree_formatter.cc   base::string16 line =
line               82 content/browser/accessibility/accessibility_tree_formatter.cc   if (line.find(base::ASCIIToUTF16(kSkipString)) != base::string16::npos)
line               85 content/browser/accessibility/accessibility_tree_formatter.cc   *contents += line;
line              175 content/browser/accessibility/accessibility_tree_formatter.cc     bool include_by_default, const std::string& attr, base::string16* line) {
line              176 content/browser/accessibility/accessibility_tree_formatter.cc   WriteAttribute(include_by_default, base::UTF8ToUTF16(attr), line);
line              180 content/browser/accessibility/accessibility_tree_formatter.cc     bool include_by_default, const base::string16& attr, base::string16* line) {
line              185 content/browser/accessibility/accessibility_tree_formatter.cc   if (!line->empty())
line              186 content/browser/accessibility/accessibility_tree_formatter.cc     *line += base::ASCIIToUTF16(" ");
line              187 content/browser/accessibility/accessibility_tree_formatter.cc   *line += attr;
line              134 content/browser/accessibility/accessibility_tree_formatter.h                       base::string16* line);
line              137 content/browser/accessibility/accessibility_tree_formatter.h                       base::string16* line);
line              120 content/browser/accessibility/accessibility_tree_formatter_android.cc   base::string16 line;
line              124 content/browser/accessibility/accessibility_tree_formatter_android.cc   WriteAttribute(true, base::UTF16ToUTF8(class_value), &line);
line              130 content/browser/accessibility/accessibility_tree_formatter_android.cc       WriteAttribute(true, attribute_name, &line);
line              140 content/browser/accessibility/accessibility_tree_formatter_android.cc                    &line);
line              150 content/browser/accessibility/accessibility_tree_formatter_android.cc                    &line);
line              153 content/browser/accessibility/accessibility_tree_formatter_android.cc   return indent + line + base::ASCIIToUTF16("\n");
line               43 content/browser/accessibility/accessibility_tree_formatter_gtk.cc   base::string16 line;
line               47 content/browser/accessibility/accessibility_tree_formatter_gtk.cc     WriteAttribute(true, base::StringPrintf("[%s]", role_value.c_str()), &line);
line               52 content/browser/accessibility/accessibility_tree_formatter_gtk.cc                  &line);
line               59 content/browser/accessibility/accessibility_tree_formatter_gtk.cc                  &line);
line               68 content/browser/accessibility/accessibility_tree_formatter_gtk.cc       WriteAttribute(true, state_value, &line);
line               75 content/browser/accessibility/accessibility_tree_formatter_gtk.cc                  &line);
line               77 content/browser/accessibility/accessibility_tree_formatter_gtk.cc   return indent + line + base::ASCIIToUTF16("\n");
line              204 content/browser/accessibility/accessibility_tree_formatter_win.cc   base::string16 line;
line              208 content/browser/accessibility/accessibility_tree_formatter_win.cc   WriteAttribute(true, base::UTF16ToUTF8(role_value), &line);
line              213 content/browser/accessibility/accessibility_tree_formatter_win.cc                  &line);
line              229 content/browser/accessibility/accessibility_tree_formatter_win.cc                        &line);
line              240 content/browser/accessibility/accessibility_tree_formatter_win.cc                        &line);
line              251 content/browser/accessibility/accessibility_tree_formatter_win.cc                        &line);
line              264 content/browser/accessibility/accessibility_tree_formatter_win.cc             WriteAttribute(false, string_value, &line);
line              277 content/browser/accessibility/accessibility_tree_formatter_win.cc                          &line);
line              281 content/browser/accessibility/accessibility_tree_formatter_win.cc                          &line);
line              291 content/browser/accessibility/accessibility_tree_formatter_win.cc   return indent + line + base::ASCIIToUTF16("\n");
line              103 content/browser/accessibility/dump_accessibility_tree_browsertest.cc       const std::string& line = *iter;
line              110 content/browser/accessibility/dump_accessibility_tree_browsertest.cc       if (StartsWithASCII(line, allow_empty_str, true)) {
line              112 content/browser/accessibility/dump_accessibility_tree_browsertest.cc           Filter(base::UTF8ToUTF16(line.substr(allow_empty_str.size())),
line              114 content/browser/accessibility/dump_accessibility_tree_browsertest.cc       } else if (StartsWithASCII(line, allow_str, true)) {
line              116 content/browser/accessibility/dump_accessibility_tree_browsertest.cc                                       line.substr(allow_str.size())),
line              118 content/browser/accessibility/dump_accessibility_tree_browsertest.cc       } else if (StartsWithASCII(line, deny_str, true)) {
line              120 content/browser/accessibility/dump_accessibility_tree_browsertest.cc                                       line.substr(deny_str.size())),
line              214 content/browser/accessibility/dump_accessibility_tree_browsertest.cc     for (int line = 0, diff_index = 0;
line              215 content/browser/accessibility/dump_accessibility_tree_browsertest.cc          line < static_cast<int>(expected_lines.size());
line              216 content/browser/accessibility/dump_accessibility_tree_browsertest.cc          ++line) {
line              219 content/browser/accessibility/dump_accessibility_tree_browsertest.cc           diff_lines[diff_index] == line) {
line              223 content/browser/accessibility/dump_accessibility_tree_browsertest.cc       printf("%1s %4d %s\n", is_diff? kSignalDiff : "", line + 1,
line              224 content/browser/accessibility/dump_accessibility_tree_browsertest.cc              expected_lines[line].c_str());
line              302 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   std::string line;
line              303 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_TRUE(!!std::getline(in, line));
line              306 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_EQ("<script>start(\"foo\\\\bar\");</script>", line);
line              308 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_EQ("<script>start(\"/foo/bar\");</script>", line);
line              311 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_TRUE(!!std::getline(in, line));
line              312 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   VerifyListingEntry(line, "hoge", "hoge", false, 10);
line              314 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_TRUE(!!std::getline(in, line));
line              315 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   VerifyListingEntry(line, "baz", "baz", true, 0);
line              316 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_FALSE(!!std::getline(in, line));
line              362 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   std::string line;
line              363 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_TRUE(!!std::getline(in, line));
line              364 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_FALSE(!!std::getline(in, line));
line              389 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   std::string line;
line              390 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   EXPECT_TRUE(!!std::getline(in, line));  // |line| contains the temp dir path.
line              394 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc   while (!!std::getline(in, line))
line              395 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc     listing_entries.push_back(line);
line               29 content/gpu/gpu_child_thread.cc                                  const char* file, int line,
line               71 content/gpu/gpu_main.cc                                  const char* file, int line,
line              425 content/renderer/media/rtc_peer_connection_handler.cc     reason_str.append(error.line);
line              450 content/renderer/media/rtc_peer_connection_handler.cc     reason_str.append(error.line);
line              528 content/shell/renderer/test_runner/WebTestProxy.cpp             for (WebRect line(0, 0, width, 1); line.y < height; line.y++)
line              529 content/shell/renderer/test_runner/WebTestProxy.cpp                 paintRect(line);
line              249 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp             line(canvas, left + 1, i, right - 1, i, readOnlyColor);
line              370 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              374 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              378 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              393 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              397 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              401 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp         line(canvas,
line              540 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp             line(canvas, left, top, right, top, edgeColor);
line              541 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp             line(canvas, left, bottom, right, bottom, edgeColor);
line              545 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp             line(canvas, left, top, left, bottom, edgeColor);
line              546 content/shell/renderer/test_runner/WebTestThemeEngineMock.cpp             line(canvas, right, top, right, bottom, edgeColor);
line              781 content/shell/renderer/test_runner/web_ax_object_proxy.cc   int line = 0;
line              783 content/shell/renderer/test_runner/web_ax_object_proxy.cc   while (line < vector_size && line_breaks[line] <= index)
line              784 content/shell/renderer/test_runner/web_ax_object_proxy.cc     line++;
line              785 content/shell/renderer/test_runner/web_ax_object_proxy.cc   return line;
line               72 crypto/openssl_util.cc   static void LockingCallback(int mode, int n, const char* file, int line) {
line               73 crypto/openssl_util.cc     OpenSSLInitSingleton::GetInstance()->OnLockingCallback(mode, n, file, line);
line               76 crypto/openssl_util.cc   void OnLockingCallback(int mode, int n, const char* file, int line) {
line              214 dbus/dbus_statistics.cc     std::string line;
line              216 dbus/dbus_statistics.cc       line += stat->service;
line              219 dbus/dbus_statistics.cc       line += stat->interface;
line              221 dbus/dbus_statistics.cc         line += "." + stat->method;
line              223 dbus/dbus_statistics.cc     line += base::StringPrintf(":");
line              225 dbus/dbus_statistics.cc       line += base::StringPrintf(" Sent (BLOCKING):");
line              227 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d", sent_blocking);
line              229 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d/min", sent_blocking / dminutes);
line              231 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d (%d/min)",
line              235 dbus/dbus_statistics.cc       line += base::StringPrintf(" Sent:");
line              237 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d", sent);
line              239 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d/min", sent / dminutes);
line              241 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d (%d/min)", sent, sent / dminutes);
line              244 dbus/dbus_statistics.cc       line += base::StringPrintf(" Received:");
line              246 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d", received);
line              248 dbus/dbus_statistics.cc         line += base::StringPrintf(" %d/min", received / dminutes);
line              250 dbus/dbus_statistics.cc         line += base::StringPrintf(
line              253 dbus/dbus_statistics.cc     result += line + "\n";
line               54 extensions/common/stack_frame.cc   size_t line = 1;
line               60 extensions/common/stack_frame.cc                            &function, &source, &line, &column) &&
line               63 extensions/common/stack_frame.cc                            &source, &line, &column)) {
line               67 extensions/common/stack_frame.cc   return scoped_ptr<StackFrame>(new StackFrame(line,
line               20 extensions/common/stack_frame_unittest.cc                            size_t line,
line               28 extensions/common/stack_frame_unittest.cc   EXPECT_EQ(line, frame->line_number());
line               27 gpu/command_buffer/service/async_pixel_transfer_manager_egl.cc bool CheckErrors(const char* file, int line) {
line               33 gpu/command_buffer/service/async_pixel_transfer_manager_egl.cc                 << file << ":" << line << " " << eglerror;
line               38 gpu/command_buffer/service/async_pixel_transfer_manager_egl.cc                 << file << ":" << line << " " << glerror;
line               26 gpu/command_buffer/service/error_state.cc       int line,
line               32 gpu/command_buffer/service/error_state.cc       int line,
line               38 gpu/command_buffer/service/error_state.cc       int line,
line               45 gpu/command_buffer/service/error_state.cc       int line,
line               52 gpu/command_buffer/service/error_state.cc       const char* filename, int line, const char* function_name) OVERRIDE;
line               55 gpu/command_buffer/service/error_state.cc       const char* filename, int line, const char* function_name) OVERRIDE;
line               58 gpu/command_buffer/service/error_state.cc       const char* filename, int line, const char* function_name) OVERRIDE;
line              105 gpu/command_buffer/service/error_state.cc     const char* filename, int line, const char* function_name) {
line              108 gpu/command_buffer/service/error_state.cc     SetGLError(filename, line, error, function_name, "");
line              115 gpu/command_buffer/service/error_state.cc     int line,
line              122 gpu/command_buffer/service/error_state.cc         filename, line,
line              134 gpu/command_buffer/service/error_state.cc     int line,
line              138 gpu/command_buffer/service/error_state.cc   SetGLError(filename, line, GL_INVALID_ENUM, function_name,
line              145 gpu/command_buffer/service/error_state.cc     int line,
line              151 gpu/command_buffer/service/error_state.cc         filename, line, GL_INVALID_ENUM, function_name,
line              157 gpu/command_buffer/service/error_state.cc         filename, line, error, function_name,
line              166 gpu/command_buffer/service/error_state.cc     int line,
line              171 gpu/command_buffer/service/error_state.cc       filename, line, error, function_name,
line              178 gpu/command_buffer/service/error_state.cc     const char* filename, int line, const char* function_name) {
line              181 gpu/command_buffer/service/error_state.cc     SetGLError(filename, line, error, function_name,
line              187 gpu/command_buffer/service/error_state.cc     const char* filename, int line, const char* function_name) {
line              194 gpu/command_buffer/service/error_state.cc           filename, line,
line               74 gpu/command_buffer/service/error_state.h       int line,
line               80 gpu/command_buffer/service/error_state.h       int line,
line               86 gpu/command_buffer/service/error_state.h       int line,
line               93 gpu/command_buffer/service/error_state.h       int line,
line              102 gpu/command_buffer/service/error_state.h       const char* filename, int line, const char* function_name) = 0;
line              109 gpu/command_buffer/service/error_state.h       const char* filename, int line, const char* function_name) = 0;
line              114 gpu/command_buffer/service/error_state.h       const char* filename, int line, const char* function_name) = 0;
line               23 gpu/command_buffer/service/error_state_mock.h       const char* filename, int line,
line               26 gpu/command_buffer/service/error_state_mock.h       const char* filename, int line,
line               30 gpu/command_buffer/service/error_state_mock.h       int line,
line               37 gpu/command_buffer/service/error_state_mock.h       int line,
line               43 gpu/command_buffer/service/error_state_mock.h       const char* file, int line, const char* filename));
line               45 gpu/command_buffer/service/error_state_mock.h       const char* file, int line, const char* filename));
line               47 gpu/command_buffer/service/error_state_mock.h       const char* file, int line, const char* filename));
line             1580 gpu/command_buffer/service/gles2_cmd_decoder.cc   void RenderWarning(const char* filename, int line, const std::string& msg);
line             1582 gpu/command_buffer/service/gles2_cmd_decoder.cc       const char* filename, int line, const std::string& msg);
line             5980 gpu/command_buffer/service/gles2_cmd_decoder.cc     const char* filename, int line, const std::string& msg) {
line             5981 gpu/command_buffer/service/gles2_cmd_decoder.cc   logger_.LogMessage(filename, line, std::string("RENDER WARNING: ") + msg);
line             5985 gpu/command_buffer/service/gles2_cmd_decoder.cc     const char* filename, int line, const std::string& msg) {
line             5986 gpu/command_buffer/service/gles2_cmd_decoder.cc   logger_.LogMessage(filename, line,
line               28 gpu/command_buffer/service/logger.cc     const char* filename, int line, const std::string& msg) {
line               38 gpu/command_buffer/service/logger.cc           filename, line, ::logging::LOG_ERROR).stream() << prefixed_msg;
line               29 gpu/command_buffer/service/logger.h   void LogMessage(const char* filename, int line, const std::string& msg);
line               24 gpu/command_buffer/tests/gl_test_utils.cc bool GLTestHelper::CheckGLError(const char* msg, int line) {
line               30 gpu/command_buffer/tests/gl_test_utils.cc          << "GL ERROR in " << msg << " at line " << line << " : " << error;
line               18 gpu/command_buffer/tests/gl_test_utils.h   static bool CheckGLError(const char* msg, int line);
line               55 gpu/config/gpu_info_collector_x11.cc     std::string line = t.token();
line               56 gpu/config/gpu_info_collector_x11.cc     if (StartsWithASCII(line, "ReleaseVersion=", true)) {
line               57 gpu/config/gpu_info_collector_x11.cc       size_t begin = line.find_first_of("0123456789");
line               59 gpu/config/gpu_info_collector_x11.cc         size_t end = line.find_first_not_of("0123456789.", begin);
line               61 gpu/config/gpu_info_collector_x11.cc           return line.substr(begin);
line               63 gpu/config/gpu_info_collector_x11.cc           return line.substr(begin, end - begin);
line               88 media/cdm/ppapi/cdm_logging.cc CdmLogMessage::CdmLogMessage(const char* file, int line) {
line              120 media/cdm/ppapi/cdm_logging.cc   stream_ << filename << "(" << line << ")] ";
line               41 media/cdm/ppapi/cdm_logging.h   CdmLogMessage(const char* file, int line);
line               42 media/formats/webm/webm_webvtt_parser.cc void WebMWebVTTParser::ParseLine(std::string* line) {
line               43 media/formats/webm/webm_webvtt_parser.cc   line->clear();
line               74 media/formats/webm/webm_webvtt_parser.cc     line->push_back(byte);
line               38 media/formats/webm/webm_webvtt_parser.h   void ParseLine(std::string* line);
line               18 native_client_sdk/src/libraries/xray/parsesymbols.c                                               char* line) {
line               24 native_client_sdk/src/libraries/xray/parsesymbols.c   if (2 != sscanf(line, "%x %1023s", &uiaddr, symbol_text))
line               28 native_client_sdk/src/libraries/xray/parsesymbols.c     fprintf(stderr, "%s\n", line);
line               35 native_client_sdk/src/libraries/xray/parsesymbols.c   parsed_symbol = strstr(line, symbol_text);
line               47 native_client_sdk/src/libraries/xray/parsesymbols.c   char line[XRAY_LINE_SIZE];
line               60 native_client_sdk/src/libraries/xray/parsesymbols.c   while (NULL != fgets(line, XRAY_LINE_SIZE, f)) {
line               61 native_client_sdk/src/libraries/xray/parsesymbols.c     if (line == strstr(line, " .text ")) {
line               65 native_client_sdk/src/libraries/xray/parsesymbols.c     if (line == strstr(line, " .gnu.linkonce.t.")) {
line               70 native_client_sdk/src/libraries/xray/parsesymbols.c     if (line == strstr(line, " .text.")) {
line               75 native_client_sdk/src/libraries/xray/parsesymbols.c     if (line == strstr(line, "                0x")) {
line               77 native_client_sdk/src/libraries/xray/parsesymbols.c         XRaySymbolTableCreateEntry(symtab, line);
line               81 native_client_sdk/src/libraries/xray/parsesymbols.c           if (NULL != XRaySymbolTableCreateEntry(symtab, line))
line              103 native_client_sdk/src/libraries/xray/xray_priv.h     struct XRaySymbolTable* symtab, char* line);
line               23 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                                 << resource_tracker->line();
line               31 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                         int line) {
line               35 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc       new FakeResourceTracker(resource, classname, file, line);
line               55 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                               << resource_tracker->line();
line               71 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                               << resource_tracker->line();
line              103 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                               << resource_tracker->line();
line              111 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc                                          int line)
line              115 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.cc       line_(line),
line               27 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.h                      int line);
line               51 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.h                       int line);
line               78 native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_resource_manager.h   int line() const { return line_; }
line               41 net/android/javatests/src/org/chromium/net/X509UtilTest.java         String line = reader.readLine();
line               42 net/android/javatests/src/org/chromium/net/X509UtilTest.java         while (line != null && !line.contains(BEGIN_MARKER)) line = reader.readLine();
line               45 net/android/javatests/src/org/chromium/net/X509UtilTest.java         while (line != null && line.contains(BEGIN_MARKER)) line = reader.readLine();
line               48 net/android/javatests/src/org/chromium/net/X509UtilTest.java         while (line != null && !line.contains(END_MARKER)) {
line               49 net/android/javatests/src/org/chromium/net/X509UtilTest.java             builder.append(line.trim());
line               50 net/android/javatests/src/org/chromium/net/X509UtilTest.java             line = reader.readLine();
line              229 net/cookies/cookie_store_unittest.h                                   const std::string& line) {
line              231 net/cookies/cookie_store_unittest.h     bool matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
line              239 net/cookies/cookie_store_unittest.h       matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies));
line              243 net/cookies/cookie_store_unittest.h                          << "\" does not match \"" << line << "\"";
line              256 net/cookies/cookie_store_unittest.h   std::set<std::string> TokenizeCookieLine(const std::string& line) {
line              258 net/cookies/cookie_store_unittest.h     base::StringTokenizer tokenizer(line, " ;");
line              238 net/disk_cache/blockfile/stress_cache.cc bool MessageHandler(int severity, const char* file, int line,
line              114 net/disk_cache/blockfile/trace.cc   char line[kEntrySize + 2];
line              117 net/disk_cache/blockfile/trace.cc   vsprintf_s(line, format, ap);
line              119 net/disk_cache/blockfile/trace.cc   vsnprintf(line, kEntrySize, format, ap);
line              123 net/disk_cache/blockfile/trace.cc   line[kEntrySize] = '\0';
line              124 net/disk_cache/blockfile/trace.cc   LOG(INFO) << line;
line              134 net/disk_cache/blockfile/trace.cc     memcpy(s_trace_buffer->buffer[s_trace_buffer->current], line, kEntrySize);
line              152 net/disk_cache/blockfile/trace.cc     char line[kEntrySize + 2];
line              159 net/disk_cache/blockfile/trace.cc       memcpy(line, s_trace_buffer->buffer[current], kEntrySize);
line              160 net/disk_cache/blockfile/trace.cc       line[kEntrySize] = '\0';
line              161 net/disk_cache/blockfile/trace.cc       size_t length = strlen(line);
line              163 net/disk_cache/blockfile/trace.cc         line[length] = '\n';
line              164 net/disk_cache/blockfile/trace.cc         line[length + 1] = '\0';
line              165 net/disk_cache/blockfile/trace.cc         DebugOutput(line);
line               35 net/ftp/ftp_ctrl_response_buffer.cc     ParsedLine line = lines_.front();
line               39 net/ftp/ftp_ctrl_response_buffer.cc       if (!line.is_complete || line.status_code != response_buf_.status_code) {
line               40 net/ftp/ftp_ctrl_response_buffer.cc         line_buf_.append(line.raw_text);
line               46 net/ftp/ftp_ctrl_response_buffer.cc       line_buf_ = line.status_text;
line               47 net/ftp/ftp_ctrl_response_buffer.cc       DCHECK_EQ(line.status_code, response_buf_.status_code);
line               49 net/ftp/ftp_ctrl_response_buffer.cc       if (!line.is_multiline) {
line               59 net/ftp/ftp_ctrl_response_buffer.cc       if (!line.is_complete)
line               62 net/ftp/ftp_ctrl_response_buffer.cc       response_buf_.status_code = line.status_code;
line               63 net/ftp/ftp_ctrl_response_buffer.cc       if (line.is_multiline) {
line               64 net/ftp/ftp_ctrl_response_buffer.cc         line_buf_ = line.status_text;
line               67 net/ftp/ftp_ctrl_response_buffer.cc         response_buf_.lines.push_back(line.status_text);
line              114 net/ftp/ftp_ctrl_response_buffer.cc     const std::string& line) {
line              117 net/ftp/ftp_ctrl_response_buffer.cc   if (line.length() >= 3) {
line              118 net/ftp/ftp_ctrl_response_buffer.cc     if (base::StringToInt(base::StringPiece(line.begin(), line.begin() + 3),
line              122 net/ftp/ftp_ctrl_response_buffer.cc     if (result.has_status_code && line.length() >= 4 && line[3] == ' ') {
line              124 net/ftp/ftp_ctrl_response_buffer.cc     } else if (result.has_status_code && line.length() >= 4 && line[3] == '-') {
line              131 net/ftp/ftp_ctrl_response_buffer.cc     result.status_text = line.substr(4);
line              133 net/ftp/ftp_ctrl_response_buffer.cc     result.status_text = line;
line              136 net/ftp/ftp_ctrl_response_buffer.cc   result.raw_text = line;
line               71 net/ftp/ftp_ctrl_response_buffer.h   static ParsedLine ParseLine(const std::string& line);
line              154 net/ftp/ftp_network_transaction.cc   std::string line(response.lines[0]);
line              155 net/ftp/ftp_network_transaction.cc   if (!IsStringASCII(line))
line              157 net/ftp/ftp_network_transaction.cc   if (line.length() < 2)
line              160 net/ftp/ftp_network_transaction.cc   size_t paren_pos = line.find('(');
line              164 net/ftp/ftp_network_transaction.cc     size_t comma_pos = line.find(',');
line              168 net/ftp/ftp_network_transaction.cc     size_t space_pos = line.rfind(' ', comma_pos);
line              170 net/ftp/ftp_network_transaction.cc       line = line.substr(space_pos + 1);
line              173 net/ftp/ftp_network_transaction.cc     size_t closing_paren_pos = line.rfind(')');
line              179 net/ftp/ftp_network_transaction.cc     line = line.substr(paren_pos + 1, closing_paren_pos - paren_pos - 1);
line              185 net/ftp/ftp_network_transaction.cc   base::SplitString(line, ',', &pieces);
line              829 net/ftp/ftp_network_transaction.cc       std::string line = response.lines[0];
line              833 net/ftp/ftp_network_transaction.cc       if (IsStringASCII(line)) {
line              834 net/ftp/ftp_network_transaction.cc         line = StringToLowerASCII(line);
line              838 net/ftp/ftp_network_transaction.cc         base::RemoveChars(line, base::kWhitespaceASCII, &line);
line              844 net/ftp/ftp_network_transaction.cc         if (line.find("vms") != std::string::npos) {
line              846 net/ftp/ftp_network_transaction.cc         } else if (line.find("l8") != std::string::npos ||
line              847 net/ftp/ftp_network_transaction.cc                    line.find("unix") != std::string::npos ||
line              848 net/ftp/ftp_network_transaction.cc                    line.find("bsd") != std::string::npos) {
line              850 net/ftp/ftp_network_transaction.cc         } else if (line.find("win32") != std::string::npos ||
line              851 net/ftp/ftp_network_transaction.cc                    line.find("windows") != std::string::npos) {
line              853 net/ftp/ftp_network_transaction.cc         } else if (line.find("os/2") != std::string::npos) {
line              888 net/ftp/ftp_network_transaction.cc       std::string line = response.lines[0];
line              889 net/ftp/ftp_network_transaction.cc       if (line.empty())
line              891 net/ftp/ftp_network_transaction.cc       std::string::size_type quote_pos = line.find('"');
line              893 net/ftp/ftp_network_transaction.cc         line = line.substr(quote_pos + 1);
line              894 net/ftp/ftp_network_transaction.cc         quote_pos = line.find('"');
line              897 net/ftp/ftp_network_transaction.cc         line = line.substr(0, quote_pos);
line              900 net/ftp/ftp_network_transaction.cc         line = FtpUtil::VMSPathToUnix(line);
line              901 net/ftp/ftp_network_transaction.cc       if (line.length() && line[line.length() - 1] == '/')
line              902 net/ftp/ftp_network_transaction.cc         line.erase(line.length() - 1);
line              903 net/ftp/ftp_network_transaction.cc       current_remote_directory_ = line;
line              355 net/http/http_network_transaction_unittest.cc     std::string line;
line              356 net/http/http_network_transaction_unittest.cc     EXPECT_TRUE(entries[pos].GetStringValue("line", &line));
line              357 net/http/http_network_transaction_unittest.cc     EXPECT_EQ("GET / HTTP/1.1\r\n", line);
line               28 net/http/http_util.cc static size_t FindStringEnd(const std::string& line, size_t start, char delim) {
line               29 net/http/http_util.cc   DCHECK_LT(start, line.length());
line               30 net/http/http_util.cc   DCHECK_EQ(line[start], delim);
line               34 net/http/http_util.cc   for (size_t end = line.find_first_of(set, start + 1);
line               35 net/http/http_util.cc        end != std::string::npos; end = line.find_first_of(set, end + 2)) {
line               36 net/http/http_util.cc     if (line[end] != '\\')
line               39 net/http/http_util.cc   return line.length();
line               46 net/http/http_util.cc size_t HttpUtil::FindDelimiter(const std::string& line,
line               53 net/http/http_util.cc     size_t cur_delim_pos = line.find_first_of(delim_str, search_start);
line               55 net/http/http_util.cc       return line.length();
line               57 net/http/http_util.cc     char ch = line[cur_delim_pos];
line               64 net/http/http_util.cc     search_start = FindStringEnd(line, cur_delim_pos, ch);
line               65 net/http/http_util.cc     if (search_start == line.length())
line               76 net/http/http_util.cc   return line.length();
line               39 net/http/http_util.h   static size_t FindDelimiter(const std::string& line,
line             1181 net/proxy/proxy_config_service_linux.cc     char line[BUFFER_SIZE];
line             1183 net/proxy/proxy_config_service_linux.cc     while (fgets(line, sizeof(line), input.get())) {
line             1185 net/proxy/proxy_config_service_linux.cc       size_t length = strlen(line);
line             1189 net/proxy/proxy_config_service_linux.cc       if (line[length - 1] != '\n') {
line             1201 net/proxy/proxy_config_service_linux.cc       line[--length] = '\0';
line             1202 net/proxy/proxy_config_service_linux.cc       if (length && line[length - 1] == '\r')
line             1203 net/proxy/proxy_config_service_linux.cc         line[--length] = '\0';
line             1205 net/proxy/proxy_config_service_linux.cc       if (line[0] == '[') {
line             1208 net/proxy/proxy_config_service_linux.cc         in_proxy_settings = !strncmp(line, "[Proxy Settings]", 16);
line             1211 net/proxy/proxy_config_service_linux.cc         char* split = strchr(line, '=');
line             1217 net/proxy/proxy_config_service_linux.cc         std::string key = line;
line               51 net/test/scoped_mock_log.cc                                       int line,
line               54 net/test/scoped_mock_log.cc   return g_instance_->Log(severity, file, line, message_start, str);
line               72 net/test/scoped_mock_log.h                          int line,
line               84 net/test/scoped_mock_log.h                                 int line,
line              580 net/third_party/nss/ssl/ssl3con.c     static char line[40];
line              595 net/third_party/nss/ssl/ssl3con.c         sprintf(line, "*UNKNOWN* handshake type! (%d)", msgType);
line              596 net/third_party/nss/ssl/ssl3con.c 	rv = line;
line              605 net/third_party/nss/ssl/ssl3con.c     static char line[40];
line              615 net/third_party/nss/ssl/ssl3con.c         sprintf(line, "*UNKNOWN* record type! (%d)", msgType);
line              616 net/third_party/nss/ssl/ssl3con.c 	rv = line;
line              107 net/tools/balsa/balsa_frame_test.cc   const char* line = NULL;
line              121 net/tools/balsa/balsa_frame_test.cc         .WillOnce(DoAll(SaveArg<0>(&line),
line              148 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ("GET / HTTP/1.0", StringPiece(line, line_length));
line              159 net/tools/balsa/balsa_frame_test.cc   const char* line = NULL;
line              177 net/tools/balsa/balsa_frame_test.cc         .WillOnce(DoAll(SaveArg<0>(&line),
line              199 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ("HTTP/1.1 200 OK", StringPiece(line, line_length));
line              214 net/tools/balsa/balsa_frame_test.cc   const char* line = NULL;
line              236 net/tools/balsa/balsa_frame_test.cc         .WillOnce(DoAll(SaveArg<0>(&line),
line              267 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ("HTTP/1.1 200 OK", StringPiece(line, line_length));
line              404 net/tools/balsa/balsa_frame_test.cc   const char* line = NULL;
line              418 net/tools/balsa/balsa_frame_test.cc         .WillOnce(DoAll(SaveArg<0>(&line),
line              440 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ("GET / HTTP/1.0", StringPiece(line, line_length));
line              529 net/tools/balsa/balsa_headers.cc     const HeaderLineDescription& line) const {
line              530 net/tools/balsa/balsa_headers.cc   DCHECK_GE(line.last_char_idx, line.value_begin_idx);
line              531 net/tools/balsa/balsa_headers.cc   return base::StringPiece(GetPtr(line.buffer_base_idx) + line.value_begin_idx,
line              532 net/tools/balsa/balsa_headers.cc                      line.last_char_idx - line.value_begin_idx);
line              599 net/tools/balsa/balsa_headers.cc     const HeaderLineDescription& line = *i;
line              600 net/tools/balsa/balsa_headers.cc     if (line.skip) {
line              603 net/tools/balsa/balsa_headers.cc     const size_t key_len = line.key_end_idx - line.first_char_idx;
line              608 net/tools/balsa/balsa_headers.cc     if (strncasecmp(GetPtr(line.buffer_base_idx) + line.first_char_idx,
line              610 net/tools/balsa/balsa_headers.cc       DCHECK_GE(line.last_char_idx, line.value_begin_idx);
line              622 net/tools/balsa/balsa_headers.cc     const HeaderLineDescription& line = *i;
line              623 net/tools/balsa/balsa_headers.cc     const size_t key_len = line.key_end_idx - line.first_char_idx;
line              628 net/tools/balsa/balsa_headers.cc     if (strncasecmp(GetPtr(line.buffer_base_idx) + line.first_char_idx,
line              630 net/tools/balsa/balsa_headers.cc       DCHECK_GE(line.last_char_idx, line.value_begin_idx);
line              642 net/tools/balsa/balsa_headers.cc     const HeaderLineDescription& line = *i;
line              643 net/tools/balsa/balsa_headers.cc     if (line.skip) {
line              646 net/tools/balsa/balsa_headers.cc     const size_t key_len = line.key_end_idx - line.first_char_idx;
line              651 net/tools/balsa/balsa_headers.cc     if (strncasecmp(GetPtr(line.buffer_base_idx) + line.first_char_idx,
line              653 net/tools/balsa/balsa_headers.cc       DCHECK_GE(line.last_char_idx, line.value_begin_idx);
line              707 net/tools/balsa/balsa_headers.cc     HeaderLineDescription& line = header_lines_[i];
line              708 net/tools/balsa/balsa_headers.cc     const size_t key_len = line.key_end_idx - line.first_char_idx;
line              713 net/tools/balsa/balsa_headers.cc     if (!strncasecmp(GetPtr(line.buffer_base_idx) + line.first_char_idx,
line              715 net/tools/balsa/balsa_headers.cc       line.skip = true;
line              732 net/tools/balsa/balsa_headers.cc     const HeaderLineDescription& line = header_lines_[i];
line              733 net/tools/balsa/balsa_headers.cc     if (!line.skip) {
line              735 net/tools/balsa/balsa_headers.cc       write_buf_size += line.key_end_idx - line.first_char_idx + 2;
line              737 net/tools/balsa/balsa_headers.cc       write_buf_size += line.last_char_idx - line.value_begin_idx + 2;
line              777 net/tools/balsa/balsa_headers.cc void BalsaHeaders::SetFirstLine(const base::StringPiece& line) {
line              778 net/tools/balsa/balsa_headers.cc   base::StringPiece new_line = balsa_buffer_.Write(line,
line              782 net/tools/balsa/balsa_headers.cc   whitespace_4_idx_ = whitespace_1_idx_ + line.size();
line              395 net/tools/balsa/balsa_headers.h       const HeaderLineDescription& line = headers_->header_lines_[index];
line              396 net/tools/balsa/balsa_headers.h       const char* stream_begin = headers_->GetPtr(line.buffer_base_idx);
line              398 net/tools/balsa/balsa_headers.h           base::StringPiece(stream_begin + line.first_char_idx,
line              399 net/tools/balsa/balsa_headers.h                       line.key_end_idx - line.first_char_idx),
line              400 net/tools/balsa/balsa_headers.h           base::StringPiece(stream_begin + line.value_begin_idx,
line              401 net/tools/balsa/balsa_headers.h                       line.last_char_idx - line.value_begin_idx));
line              402 net/tools/balsa/balsa_headers.h       DCHECK_GE(line.key_end_idx, line.first_char_idx);
line              403 net/tools/balsa/balsa_headers.h       DCHECK_GE(line.last_char_idx, line.value_begin_idx);
line              785 net/tools/balsa/balsa_headers.h       const HeaderLineDescription& line = header_lines_[i];
line              786 net/tools/balsa/balsa_headers.h       if (line.skip) {
line              789 net/tools/balsa/balsa_headers.h       const char* line_ptr = GetPtr(line.buffer_base_idx);
line              792 net/tools/balsa/balsa_headers.h           base::StringPiece(line_ptr + line.first_char_idx,
line              793 net/tools/balsa/balsa_headers.h                       line.key_end_idx - line.first_char_idx),
line              794 net/tools/balsa/balsa_headers.h           base::StringPiece(line_ptr + line.value_begin_idx,
line              795 net/tools/balsa/balsa_headers.h                       line.last_char_idx - line.value_begin_idx));
line              934 net/tools/balsa/balsa_headers.h   void SetFirstLine(const base::StringPiece& line);
line             1017 net/tools/balsa/balsa_headers.h       const HeaderLineDescription& line) const;
line               52 net/tools/balsa/balsa_headers_token_utils.h       const BalsaHeaders::HeaderLineDescription& line,
line              138 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc bool ParseRangeLine(const std::string& line,
line              142 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc   base::SplitStringAlongWhitespace(line, tokens);
line              163 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc bool ParseRangeProperty(const std::string& line,
line              168 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc   base::SplitStringAlongWhitespace(line, tokens);
line              182 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc     LOG(WARNING) << "Discarding value not in kB: " << line;
line              201 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc   std::string line;
line              204 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc   if (!std::getline(maps_file, line) || line.empty())
line              208 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc     if (!ParseRangeLine(line, &tokens, &is_anonymous_read_write)) {
line              209 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc       LOG(WARNING) << "Parsing smaps - did not expect line: " << line;
line              211 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc     if (!std::getline(maps_file, line) || line.empty())
line              215 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc     while (ParseRangeProperty(line, &tokens, &size, &is_private_dirty)) {
line              220 net/tools/disk_cache_memory_test/disk_cache_memory_test.cc       if (!std::getline(maps_file, line) || line.empty())
line               38 net/tools/quic/quic_client_bin.cc   CommandLine* line = CommandLine::ForCurrentProcess();
line               44 net/tools/quic/quic_client_bin.cc   if (line->HasSwitch("h") || line->HasSwitch("help")) {
line               57 net/tools/quic/quic_client_bin.cc   if (line->HasSwitch("port")) {
line               59 net/tools/quic/quic_client_bin.cc     if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
line               63 net/tools/quic/quic_client_bin.cc   if (line->HasSwitch("address")) {
line               64 net/tools/quic/quic_client_bin.cc     FLAGS_address = line->GetSwitchValueASCII("address");
line               66 net/tools/quic/quic_client_bin.cc   if (line->HasSwitch("hostname")) {
line               67 net/tools/quic/quic_client_bin.cc     FLAGS_hostname = line->GetSwitchValueASCII("hostname");
line               69 net/tools/quic/quic_client_bin.cc   if (line->HasSwitch("secure")) {
line               92 net/tools/quic/quic_client_bin.cc   client.SendRequestsAndWaitForResponse(line->GetArgs());
line               25 net/tools/quic/quic_server_bin.cc   CommandLine* line = CommandLine::ForCurrentProcess();
line               31 net/tools/quic/quic_server_bin.cc   if (line->HasSwitch("h") || line->HasSwitch("help")) {
line               44 net/tools/quic/quic_server_bin.cc   if (line->HasSwitch("quic_in_memory_cache_dir")) {
line               46 net/tools/quic/quic_server_bin.cc         line->GetSwitchValueASCII("quic_in_memory_cache_dir");
line               49 net/tools/quic/quic_server_bin.cc   if (line->HasSwitch("port")) {
line               51 net/tools/quic/quic_server_bin.cc     if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
line              148 net/url_request/url_request_throttler_unittest.cc     line = line_num;
line              152 net/url_request/url_request_throttler_unittest.cc   int line;
line              161 net/url_request/url_request_throttler_unittest.cc     line = line_num;
line              165 net/url_request/url_request_throttler_unittest.cc   int line;
line              281 net/url_request/url_request_throttler_unittest.cc         "Test case #" << i << " line " << test_values[i].line << " failed";
line              397 net/url_request/url_request_throttler_unittest.cc         "Test case #" << i << " line " << test_values[i].line << " failed";
line              692 net/websockets/websocket_job_test.cc     std::string line = lines[i] + "\r\n";
line              693 net/websockets/websocket_job_test.cc     SCOPED_TRACE("Line: " + line);
line              694 net/websockets/websocket_job_test.cc     websocket_->OnReceivedData(socket_.get(), line.c_str(), line.size());
line              101 ppapi/tests/test_case.cc                                          int line,
line              111 ppapi/tests/test_case.cc   output << "Failure in " << file << "(" << line << "): " << cmd;
line               59 ppapi/tests/test_case.h   static std::string MakeFailureMessage(const char* file, int line,
line               51 printing/backend/cups_helper.cc     std::string line = lines[i];
line               52 printing/backend/cups_helper.cc     if (line.empty())
line               55 printing/backend/cups_helper.cc     if (base::strncasecmp (line.c_str(), kDefault, kDefaultLen) == 0 &&
line               56 printing/backend/cups_helper.cc         isspace(line[kDefaultLen])) {
line               57 printing/backend/cups_helper.cc       line = line.substr(kDefaultLen);
line               58 printing/backend/cups_helper.cc     } else if (base::strncasecmp (line.c_str(), kDest, kDestLen) == 0 &&
line               59 printing/backend/cups_helper.cc                isspace(line[kDestLen])) {
line               60 printing/backend/cups_helper.cc       line = line.substr(kDestLen);
line               65 printing/backend/cups_helper.cc     base::TrimWhitespaceASCII(line, base::TRIM_ALL, &line);
line               66 printing/backend/cups_helper.cc     if (line.empty())
line               69 printing/backend/cups_helper.cc     size_t space_found = line.find(' ');
line               73 printing/backend/cups_helper.cc     std::string name = line.substr(0, space_found);
line               82 printing/backend/cups_helper.cc     line = line.substr(space_found + 1);
line               84 printing/backend/cups_helper.cc     base::TrimWhitespaceASCII(line, base::TRIM_ALL, &line);
line               85 printing/backend/cups_helper.cc     if (line.empty())
line               88 printing/backend/cups_helper.cc     *num_options = cupsParseOptions(line.c_str(), 0, options);
line              197 remoting/base/util_unittest.cc   std::string line(kLineSize, 'a');
line              198 remoting/base/util_unittest.cc   line[kLineSize - 1] = '\n';
line              204 remoting/base/util_unittest.cc     memcpy(&buffer[i * kLineSize], &line[0], kLineSize);
line              212 remoting/base/util_unittest.cc     EXPECT_EQ(0, memcmp(&line[0], p, kLineSize - 1));
line              232 remoting/base/util_unittest.cc   std::string line(kLineSize, 'a');
line              233 remoting/base/util_unittest.cc   line[kLineSize - 2] = '\r';
line              234 remoting/base/util_unittest.cc   line[kLineSize - 1] = '\n';
line              240 remoting/base/util_unittest.cc     memcpy(&buffer[i * kLineSize], &line[0], kLineSize);
line              248 remoting/base/util_unittest.cc     EXPECT_EQ(0, memcmp(&line[0], p, kLineSize - 2));
line             1029 remoting/client/plugin/chromoting_instance.cc bool ChromotingInstance::LogToUI(int severity, const char* file, int line,
line             1071 remoting/client/plugin/chromoting_instance.cc     return (g_logging_old_handler)(severity, file, line, message_start, str);
line              171 remoting/client/plugin/chromoting_instance.h   static bool LogToUI(int severity, const char* file, int line,
line               86 remoting/host/plugin/host_log_handler.cc bool HostLogHandler::LogToUI(int severity, const char* file, int line,
line              118 remoting/host/plugin/host_log_handler.cc     return (g_logging_old_handler)(severity, file, line, message_start, str);
line               32 remoting/host/plugin/host_log_handler.h   static bool LogToUI(int severity, const char* file, int line,
line               47 sandbox/linux/seccomp-bpf/die.cc void Die::SandboxDie(const char* msg, const char* file, int line) {
line               49 sandbox/linux/seccomp-bpf/die.cc     LogToStderr(msg, file, line);
line               51 sandbox/linux/seccomp-bpf/die.cc     logging::LogMessage(file, line, logging::LOG_FATAL).stream() << msg;
line               63 sandbox/linux/seccomp-bpf/die.cc void Die::SandboxInfo(const char* msg, const char* file, int line) {
line               65 sandbox/linux/seccomp-bpf/die.cc     logging::LogMessage(file, line, logging::LOG_INFO).stream() << msg;
line               69 sandbox/linux/seccomp-bpf/die.cc void Die::LogToStderr(const char* msg, const char* file, int line) {
line               72 sandbox/linux/seccomp-bpf/die.cc     snprintf(buf, sizeof(buf), "%d", line);
line               35 sandbox/linux/seccomp-bpf/die.h   static void SandboxDie(const char* msg, const char* file, int line)
line               42 sandbox/linux/seccomp-bpf/die.h   static void SandboxInfo(const char* msg, const char* file, int line);
line               46 sandbox/linux/seccomp-bpf/die.h   static void LogToStderr(const char* msg, const char* file, int line);
line              250 sandbox/linux/tests/unit_tests.cc void UnitTests::AssertionFailure(const char* expr, const char* file, int line) {
line              251 sandbox/linux/tests/unit_tests.cc   fprintf(stderr, "%s:%d:%s", file, line, expr);
line               97 sandbox/linux/tests/unit_tests.h   static void AssertionFailure(const char* expr, const char* file, int line);
line              171 skia/config/SkUserConfig.h SK_API void SkDebugf_FileLine(const char* file, int line, bool fatal,
line               13 skia/ext/google_logging.cc void SkDebugf_FileLine(const char* file, int line, bool fatal,
line               22 skia/ext/google_logging.cc   logging::LogMessage(file, line,
line               53 sql/connection.h   StatementID(const char* file, int line)
line               54 sql/connection.h       : number_(line),
line               30 sync/notifier/sync_system_resources.cc void SyncLogger::Log(LogLevel level, const char* file, int line,
line               57 sync/notifier/sync_system_resources.cc     logging::LogMessage(file, line, log_severity).stream() << result;
line               39 sync/notifier/sync_system_resources.h   virtual void Log(LogLevel level, const char* file, int line,
line              269 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateRWLockCreate(const char *file, int line,
line              271 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateRWLockDestroy(const char *file, int line,
line              273 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateRWLockAcquired(const char *file, int line,
line              275 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateRWLockReleased(const char *file, int line,
line              277 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateCondVarWait(const char *file, int line,
line              280 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateCondVarSignal(const char *file, int line,
line              282 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateCondVarSignalAll(const char *file, int line,
line              284 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotatePublishMemoryRange(const char *file, int line,
line              287 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotatePCQCreate(const char *file, int line,
line              289 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotatePCQDestroy(const char *file, int line,
line              291 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotatePCQPut(const char *file, int line,
line              293 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotatePCQGet(const char *file, int line,
line              295 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateNewMemory(const char *file, int line,
line              298 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateExpectRace(const char *file, int line,
line              301 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateBenignRace(const char *file, int line,
line              304 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateMutexIsUsedAsCondVar(const char *file, int line,
line              306 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateTraceMemory(const char *file, int line,
line              308 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateThreadName(const char *file, int line,
line              310 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateIgnoreReadsBegin(const char *file, int line);
line              311 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateIgnoreReadsEnd(const char *file, int line);
line              312 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateIgnoreWritesBegin(const char *file, int line);
line              313 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateIgnoreWritesEnd(const char *file, int line);
line              314 third_party/cld/base/dynamic_annotations.h extern "C" void AnnotateNoOp(const char *file, int line,
line              671 third_party/cld/base/logging.h #define LOG_EVERY_N_VARNAME(base, line) LOG_EVERY_N_VARNAME_CONCAT(base, line)
line              672 third_party/cld/base/logging.h #define LOG_EVERY_N_VARNAME_CONCAT(base, line) base ## line
line              895 third_party/cld/base/logging.h   LogMessage(const char* file, int line, LogSeverity severity, int ctr,
line              906 third_party/cld/base/logging.h   LogMessage(const char* file, int line);
line              913 third_party/cld/base/logging.h   LogMessage(const char* file, int line, LogSeverity severity);
line              918 third_party/cld/base/logging.h   LogMessage(const char* file, int line, LogSeverity severity, LogSink* sink,
line              924 third_party/cld/base/logging.h   LogMessage(const char* file, int line, LogSeverity severity,
line              930 third_party/cld/base/logging.h   LogMessage(const char* file, int line, LogSeverity severity,
line              934 third_party/cld/base/logging.h   LogMessage(const char* file, int line, const CheckOpString& result);
line              982 third_party/cld/base/logging.h   void Init(const char* file, int line, LogSeverity severity,
line             1045 third_party/cld/base/logging.h   LogMessageFatal(const char* file, int line);
line             1046 third_party/cld/base/logging.h   LogMessageFatal(const char* file, int line, const CheckOpString& result);
line             1052 third_party/cld/base/logging.h   LogMessageQuietlyFatal(const char* file, int line);
line             1053 third_party/cld/base/logging.h   LogMessageQuietlyFatal(const char* file, int line,
line             1073 third_party/cld/base/logging.h T* CheckNotNull(const char *file, int line, const char *names, T* t) {
line             1074 third_party/cld/base/logging.h   return CheckNotNullCommon(file, line, names, t);
line             1078 third_party/cld/base/logging.h T& CheckNotNull(const char *file, int line, const char *names, T& t) {
line             1079 third_party/cld/base/logging.h   return CheckNotNullCommon(file, line, names, t);
line             1083 third_party/cld/base/logging.h T& CheckNotNullCommon(const char *file, int line, const char *names, T& t) {
line             1085 third_party/cld/base/logging.h     LogMessageFatal(file, line, new string(names));
line             1114 third_party/cld/base/logging.h   ErrnoLogMessage(const char* file, int line, LogSeverity severity, int ctr,
line             1176 third_party/cld/base/logging.h                     const char* base_filename, int line,
line             1197 third_party/cld/base/logging.h   static string ToString(LogSeverity severity, const char* file, int line,
line             1398 third_party/cld/base/logging.h   NullStreamFatal(const char* file, int line, const CheckOpString& result) :
line             1399 third_party/cld/base/logging.h       NullStream(file, line, result) { }
line              680 third_party/harfbuzz-ng/src/hb-coretext.cc   CTLineRef line = CTLineCreateWithAttributedString (attr_string);
line              683 third_party/harfbuzz-ng/src/hb-coretext.cc   CFArrayRef glyph_runs = CTLineGetGlyphRuns (line);
line              848 third_party/harfbuzz-ng/src/hb-coretext.cc   CFRelease (line);
line              756 third_party/harfbuzz-ng/src/hb-private.hh   inline ret_t ret (ret_t v, unsigned int line = 0)
line              765 third_party/harfbuzz-ng/src/hb-private.hh 			      hb_printer_t<ret_t>().print (v), line);
line              787 third_party/harfbuzz-ng/src/hb-private.hh   inline ret_t ret (ret_t v, unsigned int line HB_UNUSED = 0) { return v; }
line              103 third_party/harfbuzz-ng/src/test-buffer-serialize.cc   char line[BUFSIZ], out[BUFSIZ];
line              104 third_party/harfbuzz-ng/src/test-buffer-serialize.cc   while (fgets (line, sizeof(line), stdin) != 0)
line              108 third_party/harfbuzz-ng/src/test-buffer-serialize.cc     const char *p = line;
line              847 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp                                   int &line,
line              852 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    line = 0;
line              861 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp          ++line;
line              866 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp          ++line;
line              871 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    ++line;
line              878 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    int line, column;
line              879 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    getLocationLineAndColumn( location, line, column );
line              881 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    sprintf( buffer, "Line %d, Column %d", line, column );
line               80 third_party/libaddressinput/chromium/cpp/src/address_data.cc     std::string line;
line               87 third_party/libaddressinput/chromium/cpp/src/address_data.cc             line += address_lines[k];
line               89 third_party/libaddressinput/chromium/cpp/src/address_data.cc               lines->push_back(line);
line               90 third_party/libaddressinput/chromium/cpp/src/address_data.cc               line.clear();
line               94 third_party/libaddressinput/chromium/cpp/src/address_data.cc           line += GetFieldValue(element.field);
line               97 third_party/libaddressinput/chromium/cpp/src/address_data.cc         line += element.literal;
line              101 third_party/libaddressinput/chromium/cpp/src/address_data.cc     if (!line.empty()) {
line              102 third_party/libaddressinput/chromium/cpp/src/address_data.cc       lines->push_back(line);
line               65 third_party/libaddressinput/chromium/cpp/test/fake_downloader.cc   std::string line;
line               67 third_party/libaddressinput/chromium/cpp/test/fake_downloader.cc     std::getline(file, line);
line               69 third_party/libaddressinput/chromium/cpp/test/fake_downloader.cc     std::string::size_type divider = line.find('=');
line               74 third_party/libaddressinput/chromium/cpp/test/fake_downloader.cc     std::string key = line.substr(0, divider);
line               76 third_party/libaddressinput/chromium/cpp/test/fake_downloader.cc     std::string value = line.substr(divider + 1);
line              215 third_party/libevent/buffer.c 	char *line;
line              226 third_party/libevent/buffer.c 	if ((line = malloc(i + 1)) == NULL) {
line              231 third_party/libevent/buffer.c 	memcpy(line, data, i);
line              232 third_party/libevent/buffer.c 	line[i] = '\0';
line              248 third_party/libevent/buffer.c 	return (line);
line             1212 third_party/libevent/http.c evhttp_parse_response_line(struct evhttp_request *req, char *line)
line             1218 third_party/libevent/http.c 	protocol = strsep(&line, " ");
line             1219 third_party/libevent/http.c 	if (line == NULL)
line             1221 third_party/libevent/http.c 	number = strsep(&line, " ");
line             1222 third_party/libevent/http.c 	if (line == NULL)
line             1224 third_party/libevent/http.c 	readable = line;
line             1254 third_party/libevent/http.c evhttp_parse_request_line(struct evhttp_request *req, char *line)
line             1261 third_party/libevent/http.c 	method = strsep(&line, " ");
line             1262 third_party/libevent/http.c 	if (line == NULL)
line             1264 third_party/libevent/http.c 	uri = strsep(&line, " ");
line             1265 third_party/libevent/http.c 	if (line == NULL)
line             1267 third_party/libevent/http.c 	version = strsep(&line, " ");
line             1268 third_party/libevent/http.c 	if (line != NULL)
line             1437 third_party/libevent/http.c 	char *line;
line             1440 third_party/libevent/http.c 	line = evbuffer_readline(buffer);
line             1441 third_party/libevent/http.c 	if (line == NULL)
line             1446 third_party/libevent/http.c 		if (evhttp_parse_request_line(req, line) == -1)
line             1450 third_party/libevent/http.c 		if (evhttp_parse_response_line(req, line) == -1)
line             1457 third_party/libevent/http.c 	free(line);
line             1462 third_party/libevent/http.c evhttp_append_to_last_header(struct evkeyvalq *headers, const char *line)
line             1472 third_party/libevent/http.c 	line_len = strlen(line);
line             1478 third_party/libevent/http.c 	memcpy(newval + old_len, line, line_len + 1);
line             1487 third_party/libevent/http.c 	char *line;
line             1491 third_party/libevent/http.c 	while ((line = evbuffer_readline(buffer))
line             1495 third_party/libevent/http.c 		if (*line == '\0') { /* Last header - Done */
line             1497 third_party/libevent/http.c 			free(line);
line             1502 third_party/libevent/http.c 		if (*line == ' ' || *line == '\t') {
line             1503 third_party/libevent/http.c 			if (evhttp_append_to_last_header(headers, line) == -1)
line             1505 third_party/libevent/http.c 			free(line);
line             1510 third_party/libevent/http.c 		svalue = line;
line             1520 third_party/libevent/http.c 		free(line);
line             1526 third_party/libevent/http.c 	free(line);
line             2117 third_party/libevent/http.c 	char *line;
line             2127 third_party/libevent/http.c 	if ((line = strdup(uri)) == NULL)
line             2131 third_party/libevent/http.c 	argument = line;
line             2157 third_party/libevent/http.c 	free(line);
line              125 third_party/libjingle/overrides/talk/base/logging.cc                                            int line,
line              131 third_party/libjingle/overrides/talk/base/logging.cc       line_(line),
line              138 third_party/libjingle/overrides/talk/base/logging.cc                                            int line,
line              145 third_party/libjingle/overrides/talk/base/logging.cc       line_(line),
line              211 third_party/libjingle/overrides/talk/base/logging.cc     const unsigned char* line = udata;
line              226 third_party/libjingle/overrides/talk/base/logging.cc     if (consecutive_unprintable && ((end_of_line - line) < kMinPrintableLine)) {
line              232 third_party/libjingle/overrides/talk/base/logging.cc       for (const unsigned char* pos = line; pos < end_of_line; ++pos) {
line              247 third_party/libjingle/overrides/talk/base/logging.cc       consecutive_unprintable += (udata - line);
line              258 third_party/libjingle/overrides/talk/base/logging.cc     while ((end_of_line > line) && isspace(*(end_of_line-1))) {
line              262 third_party/libjingle/overrides/talk/base/logging.cc     std::string substr(reinterpret_cast<const char*>(line), end_of_line - line);
line              102 third_party/libjingle/overrides/talk/base/logging.h   DiagnosticLogMessage(const char* file, int line, LoggingSeverity severity,
line              104 third_party/libjingle/overrides/talk/base/logging.h   DiagnosticLogMessage(const char* file, int line, LoggingSeverity severity,
line              404 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   widechar line[MAXSTRING];
line              644 third_party/liblouis/overrides/liblouis/compileTranslationTable.c       nested->line[nested->linelen++] = (widechar) ch;
line              647 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   nested->line[nested->linelen] = 0;
line              661 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   while (nested->line[nested->linepos] && nested->line[nested->linepos] <= 32)
line              664 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   while (nested->line[nested->linepos] && nested->line[nested->linepos] > 32)
line              665 third_party/liblouis/overrides/liblouis/compileTranslationTable.c     result->chars[result->length++] = nested->line[nested->linepos++];
line              674 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   while (nested->line[nested->linepos] && nested->line[nested->linepos] <= 32)
line              676 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   if (nested->line[nested->linepos] == 0)
line             2582 third_party/liblouis/overrides/liblouis/compileTranslationTable.c     passHoldString.chars[passHoldString.length++] = nested->line[k];
line             4627 third_party/liblouis/overrides/liblouis/compileTranslationTable.c     nested.line[k] = inString[k];
line             4628 third_party/liblouis/overrides/liblouis/compileTranslationTable.c   nested.line[k] = 0;
line              327 third_party/libxml/src/HTMLparser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
line              580 third_party/libxml/src/HTMLparser.c 		ctxt->input->line++; ctxt->input->col = 1;
line             2160 third_party/libxml/src/HTMLparser.c     input->line = 1;
line             4161 third_party/libxml/src/HTMLparser.c 	node_info.begin_line = ctxt->input->line;
line             4212 third_party/libxml/src/HTMLparser.c 	   node_info.end_line = ctxt->input->line;
line             4247 third_party/libxml/src/HTMLparser.c        node_info.end_line = ctxt->input->line;
line             4267 third_party/libxml/src/HTMLparser.c        ctxt->nodeInfo->end_line = ctxt->input->line;
line             4308 third_party/libxml/src/HTMLparser.c 	node_info.begin_line = ctxt->input->line;
line              259 third_party/libxml/src/SAX2.c     return(ctxt->input->line);
line              445 third_party/libxml/src/SAX2.c 	input->line = 1;
line             1612 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
line             1613 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
line             1615 third_party/libxml/src/SAX2.c 	        ret->line = 65535;
line             1774 third_party/libxml/src/SAX2.c       node_info.end_line = ctxt->input->line;
line             1870 third_party/libxml/src/SAX2.c         ret->line = ctxt->input->line;
line             2218 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
line             2219 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
line             2221 third_party/libxml/src/SAX2.c 	        ret->line = 65535;
line             2362 third_party/libxml/src/SAX2.c         node_info.end_line = ctxt->input->line;
line             2581 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
line             2582 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
line             2584 third_party/libxml/src/SAX2.c 	        ret->line = 65535;
line             2641 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
line             2642 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
line             2644 third_party/libxml/src/SAX2.c 	        ret->line = 65535;
line              158 third_party/libxml/src/error.c 		    input->line);
line              161 third_party/libxml/src/error.c 		    "Entity: line %d: ", input->line);
line              247 third_party/libxml/src/error.c     int line = 0;
line              264 third_party/libxml/src/error.c     line = err->line;
line              288 third_party/libxml/src/error.c                 channel(data, "%s:%d: ", input->filename, input->line);
line              289 third_party/libxml/src/error.c             else if ((line != 0) && (domain == XML_FROM_PARSER))
line              290 third_party/libxml/src/error.c                 channel(data, "Entity: line %d: ", input->line);
line              294 third_party/libxml/src/error.c             channel(data, "%s:%d: ", file, line);
line              295 third_party/libxml/src/error.c         else if ((line != 0) && (domain == XML_FROM_PARSER))
line              296 third_party/libxml/src/error.c             channel(data, "Entity: line %d: ", line);
line              395 third_party/libxml/src/error.c                 channel(data, "%s:%d: \n", cur->filename, cur->line);
line              396 third_party/libxml/src/error.c             else if ((line != 0) && (domain == XML_FROM_PARSER))
line              397 third_party/libxml/src/error.c                 channel(data, "Entity: line %d: \n", cur->line);
line              444 third_party/libxml/src/error.c               const char *file, int line, const char *str1,
line              507 third_party/libxml/src/error.c                 line = input->line;
line              528 third_party/libxml/src/error.c 	    line = node->line;
line              577 third_party/libxml/src/error.c     to->line = line;
line              973 third_party/libxml/src/error.c     to->line = from->line;
line               64 third_party/libxml/src/include/libxml/parser.h     int line;                         /* Current line */
line              468 third_party/libxml/src/include/libxml/tree.h     unsigned short   line;	/* line number */
line               82 third_party/libxml/src/include/libxml/xmlerror.h     int		line;	/* the line number if available */
line              927 third_party/libxml/src/include/libxml/xmlerror.h 				 int line,
line              161 third_party/libxml/src/include/libxml/xmlmemory.h 	xmlMallocLoc	(size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
line              163 third_party/libxml/src/include/libxml/xmlmemory.h 	xmlReallocLoc	(void *ptr, size_t size, const char *file, int line);
line              165 third_party/libxml/src/include/libxml/xmlmemory.h 	xmlMallocAtomicLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
line              167 third_party/libxml/src/include/libxml/xmlmemory.h 	xmlMemStrdupLoc	(const char *str, const char *file, int line);
line              352 third_party/libxml/src/include/libxml/xpathInternals.h 				 int line,
line              694 third_party/libxml/src/nanohttp.c xmlNanoHTTPScanAnswer(xmlNanoHTTPCtxtPtr ctxt, const char *line) {
line              695 third_party/libxml/src/nanohttp.c     const char *cur = line;
line              697 third_party/libxml/src/nanohttp.c     if (line == NULL) return;
line              699 third_party/libxml/src/nanohttp.c     if (!strncmp(line, "HTTP/", 5)) {
line              731 third_party/libxml/src/nanohttp.c     } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Content-Type:", 13)) {
line              757 third_party/libxml/src/nanohttp.c     } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"ContentType:", 12)) {
line              782 third_party/libxml/src/nanohttp.c     } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Location:", 9)) {
line              796 third_party/libxml/src/nanohttp.c     } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"WWW-Authenticate:", 17)) {
line              802 third_party/libxml/src/nanohttp.c     } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Proxy-Authenticate:", 19)) {
line              809 third_party/libxml/src/nanohttp.c     } else if ( !xmlStrncasecmp( BAD_CAST line, BAD_CAST"Content-Encoding:", 17) ) {
line              828 third_party/libxml/src/nanohttp.c     } else if ( !xmlStrncasecmp( BAD_CAST line, BAD_CAST"Content-Length:", 15) ) {
line             1844 third_party/libxml/src/parser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
line             1892 third_party/libxml/src/parser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
line             1931 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
line             2011 third_party/libxml/src/parser.c 		    ctxt->input->line);
line             4131 third_party/libxml/src/parser.c     int line = ctxt->input->line;
line             4148 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
line             4191 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
line             4226 third_party/libxml/src/parser.c                     line = ctxt->input->line;
line             4232 third_party/libxml/src/parser.c                     line = ctxt->input->line;
line             4245 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
line             4264 third_party/libxml/src/parser.c     ctxt->input->line = line;
line             4610 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
line             4625 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
line             4670 third_party/libxml/src/parser.c 	    ctxt->input->line++; ctxt->input->col = 1;
line             4677 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
line             6407 third_party/libxml/src/parser.c 			ctxt->input->line);
line             6441 third_party/libxml/src/parser.c 			ctxt->input->line);
line             6467 third_party/libxml/src/parser.c 			ctxt->input->line);
line             6503 third_party/libxml/src/parser.c 			ctxt->input->line);
line             8282 third_party/libxml/src/parser.c xmlParseEndTag1(xmlParserCtxtPtr ctxt, int line) {
line             8315 third_party/libxml/src/parser.c 		                ctxt->name, line, name);
line             8855 third_party/libxml/src/parser.c     oldline = ctxt->input->line;
line             9241 third_party/libxml/src/parser.c     ctxt->input->line = oldline;
line             9266 third_party/libxml/src/parser.c                 const xmlChar *URI, int line, int nsNr, int tlen) {
line             9310 third_party/libxml/src/parser.c         if ((line == 0) && (ctxt->node != NULL))
line             9311 third_party/libxml/src/parser.c             line = ctxt->node->line;
line             9314 third_party/libxml/src/parser.c 		                ctxt->name, line, name);
line             9538 third_party/libxml/src/parser.c     int line, tlen;
line             9555 third_party/libxml/src/parser.c 	node_info.begin_line = ctxt->input->line;
line             9565 third_party/libxml/src/parser.c     line = ctxt->input->line;
line             9617 third_party/libxml/src/parser.c 	   node_info.end_line = ctxt->input->line;
line             9628 third_party/libxml/src/parser.c 		                name, line, NULL);
line             9645 third_party/libxml/src/parser.c 	   node_info.end_line = ctxt->input->line;
line             9661 third_party/libxml/src/parser.c 		                name, line, NULL);
line             9678 third_party/libxml/src/parser.c 	xmlParseEndTag2(ctxt, prefix, URI, line, ctxt->nsNr - nsNr, tlen);
line             9683 third_party/libxml/src/parser.c 	xmlParseEndTag1(ctxt, line);
line             9692 third_party/libxml/src/parser.c        node_info.end_line = ctxt->input->line;
line             12107 third_party/libxml/src/parser.c     pinput->line = 1;
line             12251 third_party/libxml/src/parser.c     input->line = 1;
line              476 third_party/libxml/src/parserInternals.c                 ctxt->input->line++; ctxt->input->col = 1;
line              559 third_party/libxml/src/parserInternals.c             ctxt->input->line++; ctxt->input->col = 1;
line             1389 third_party/libxml/src/parserInternals.c     input->line = 1;
line              351 third_party/libxml/src/runtest.c     int line = 0;
line              367 third_party/libxml/src/runtest.c     line = err->line;
line              397 third_party/libxml/src/runtest.c                 channel(data, "%s:%d: ", input->filename, input->line);
line              398 third_party/libxml/src/runtest.c             else if ((line != 0) && (domain == XML_FROM_PARSER))
line              399 third_party/libxml/src/runtest.c                 channel(data, "Entity: line %d: ", input->line);
line              403 third_party/libxml/src/runtest.c             channel(data, "%s:%d: ", file, line);
line              404 third_party/libxml/src/runtest.c         else if ((line != 0) && (domain == XML_FROM_PARSER))
line              405 third_party/libxml/src/runtest.c             channel(data, "Entity: line %d: ", line);
line              509 third_party/libxml/src/runtest.c                 channel(data, "%s:%d: \n", cur->filename, cur->line);
line              510 third_party/libxml/src/runtest.c             else if ((line != 0) && (domain == XML_FROM_PARSER))
line              511 third_party/libxml/src/runtest.c                 channel(data, "Entity: line %d: \n", cur->line);
line             1382 third_party/libxml/src/schematron.c 	long line;
line             1388 third_party/libxml/src/schematron.c 	line = xmlGetLineNo(cur);
line             1406 third_party/libxml/src/schematron.c 		     line, (const char *) report);
line             1424 third_party/libxml/src/schematron.c                         XML_ERR_ERROR, NULL, line,
line             50748 third_party/libxml/src/testapi.c     int line; /* the line number */
line             50760 third_party/libxml/src/testapi.c         line = gen_int(n_line, 2);
line             50763 third_party/libxml/src/testapi.c         xmlXPatherror(ctxt, file, line, no);
line             50767 third_party/libxml/src/testapi.c         des_int(n_line, line, 2);
line             4150 third_party/libxml/src/tree.c         ret->line = node->line;
line             4506 third_party/libxml/src/tree.c         result = (long) node->line;
line             8980 third_party/libxml/src/tree.c 		    cur->line = 0;
line              565 third_party/libxml/src/xmllint.c 		    input->line);
line              567 third_party/libxml/src/xmllint.c 	    snprintf(&buffer[len], sizeof(buffer) - len, "Entity: line %d: ", input->line);
line              161 third_party/libxml/src/xmlmemory.c xmlMallocLoc(size_t size, const char * file, int line)
line              186 third_party/libxml/src/xmlmemory.c     p->mh_line = line;
line              229 third_party/libxml/src/xmlmemory.c xmlMallocAtomicLoc(size_t size, const char * file, int line)
line              254 third_party/libxml/src/xmlmemory.c     p->mh_line = line;
line              312 third_party/libxml/src/xmlmemory.c xmlReallocLoc(void *ptr,size_t size, const char * file, int line)
line              321 third_party/libxml/src/xmlmemory.c         return(xmlMallocLoc(size, file, line));
line              360 third_party/libxml/src/xmlmemory.c     p->mh_line = line;
line              480 third_party/libxml/src/xmlmemory.c xmlMemStrdupLoc(const char *str, const char *file, int line)
line              497 third_party/libxml/src/xmlmemory.c     p->mh_line = line;
line             3841 third_party/libxml/src/xmlreader.c     return (reader->ctxt->input->line);
line             4596 third_party/libxml/src/xmlreader.c 	    ret = input->line;
line             2025 third_party/libxml/src/xmlschemas.c 		  int error, xmlNodePtr node, int line, const char *msg,
line             2051 third_party/libxml/src/xmlschemas.c 	    if (line == 0) {
line             2064 third_party/libxml/src/xmlschemas.c 		    line = vctxt->parserCtxt->input->line;
line             2083 third_party/libxml/src/xmlschemas.c 		error, errorLevel, file, line,
line             27810 third_party/libxml/src/xmlschemas.c 	    ielem->nodeLine = node->line;
line              388 third_party/libxml/src/xpath.c               int line ATTRIBUTE_UNUSED, int no) {
line              128 third_party/libxslt/libexslt/crypto.c 				 int line) {
line              138 third_party/libxslt/libexslt/crypto.c 			"exslt:crypto error (line %d). %s", line,
line              605 third_party/libxslt/libxslt/xsltutils.c     int line = 0;
line              629 third_party/libxslt/libxslt/xsltutils.c 	    line = xmlGetLineNo(node);
line              650 third_party/libxslt/libxslt/xsltutils.c     if ((file != NULL) && (line != 0) && (name != NULL))
line              652 third_party/libxslt/libxslt/xsltutils.c 	      type, file, line, name);
line              655 third_party/libxslt/libxslt/xsltutils.c     else if ((file != NULL) && (line != 0))
line              656 third_party/libxslt/libxslt/xsltutils.c 	error(errctx, "%s: file %s line %d\n", type, file, line);
line               14 third_party/ocmock/gtest_support.h bool VerifyOCMock(OCMockObject* mock, const char* file, int line);
line              582 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     private int line = 0;
line              626 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       previousLine = line;
line              632 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java           ++line;
line              913 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java         line + 1, column + 1, description);
line              949 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     private final int line;
line              965 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     public ParseException(final int line, final int column,
line              967 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       super(Integer.toString(line) + ":" + column + ": " + message);
line              968 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       this.line = line;
line              978 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       return line;
line              192 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc   void AddError(const string& filename, int line, int column,
line              207 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc     if (line != -1) {
line              211 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc           cerr << ":" << (line + 1) << ":" << (column + 1);
line              214 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc           cerr << "(" << (line + 1) << ") : error in column=" << (column + 1);
line              223 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc   void AddError(int line, int column, const string& message) {
line              224 third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc     AddError("input", line, column, message);
line               75 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc   void AddError(const string& filename, int line, int column,
line               78 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc                                  filename, line, column, message);
line               90 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc   void AddError(const string& filename, int line, int column,
line               93 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc                                  filename, line, column, message);
line               98 third_party/protobuf/src/google/protobuf/compiler/importer.cc   void AddError(int line, int column, const string& message) {
line              100 third_party/protobuf/src/google/protobuf/compiler/importer.cc       multi_file_error_collector_->AddError(filename_, line, column, message);
line              178 third_party/protobuf/src/google/protobuf/compiler/importer.cc   int line, column;
line              179 third_party/protobuf/src/google/protobuf/compiler/importer.cc   owner_->source_locations_.Find(descriptor, location, &line, &column);
line              180 third_party/protobuf/src/google/protobuf/compiler/importer.cc   owner_->error_collector_->AddError(filename, line, column, message);
line              185 third_party/protobuf/src/google/protobuf/compiler/importer.h   virtual void AddError(const string& filename, int line, int column,
line               66 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc   void AddError(const string& filename, int line, int column,
line               69 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc                                  filename, line, column, message);
line              285 third_party/protobuf/src/google/protobuf/compiler/parser.cc void Parser::AddError(int line, int column, const string& error) {
line              287 third_party/protobuf/src/google/protobuf/compiler/parser.cc     error_collector_->AddError(line, column, error);
line              293 third_party/protobuf/src/google/protobuf/compiler/parser.cc   AddError(input_->current().line, input_->current().column, error);
line              301 third_party/protobuf/src/google/protobuf/compiler/parser.cc   location_->add_span(parser_->input_->current().line);
line              327 third_party/protobuf/src/google/protobuf/compiler/parser.cc   location_->add_span(parser_->input_->current().line);
line              342 third_party/protobuf/src/google/protobuf/compiler/parser.cc   location_->set_span(0, token.line);
line              347 third_party/protobuf/src/google/protobuf/compiler/parser.cc   if (token.line != location_->span(0)) {
line              348 third_party/protobuf/src/google/protobuf/compiler/parser.cc     location_->add_span(token.line);
line              475 third_party/protobuf/src/google/protobuf/compiler/parser.cc     AddError(syntax_token.line, syntax_token.column,
line              732 third_party/protobuf/src/google/protobuf/compiler/parser.cc       AddError(name_token.line, name_token.column,
line             1584 third_party/protobuf/src/google/protobuf/compiler/parser.cc     int* line, int* column) const {
line             1588 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *line   = -1;
line             1592 third_party/protobuf/src/google/protobuf/compiler/parser.cc     *line   = result->first;
line             1601 third_party/protobuf/src/google/protobuf/compiler/parser.cc     int line, int column) {
line             1602 third_party/protobuf/src/google/protobuf/compiler/parser.cc   location_map_[make_pair(descriptor, location)] = make_pair(line, column);
line              198 third_party/protobuf/src/google/protobuf/compiler/parser.h   void AddError(int line, int column, const string& error);
line              456 third_party/protobuf/src/google/protobuf/compiler/parser.h             int* line, int* column) const;
line              461 third_party/protobuf/src/google/protobuf/compiler/parser.h            int line, int column);
line               69 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   void AddError(int line, int column, const string& message) {
line               71 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc                                  line, column, message);
line               89 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     int line, column;
line               90 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     source_locations_.Find(descriptor, location, &line, &column);
line               91 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     wrapped_collector_->AddError(line, column, message);
line             1667 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     int line = 0;
line             1677 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc           markers_[*text] = make_pair(line, column);
line             1682 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc         ++line;
line             4808 third_party/protobuf/src/google/protobuf/descriptor.cc   virtual void AddError(int line, int column, const string& message) {
line             4815 third_party/protobuf/src/google/protobuf/descriptor.cc   virtual void AddWarning(int line, int column, const string& message) {
line              200 third_party/protobuf/src/google/protobuf/io/tokenizer.cc   current_.line = 0;
line              290 third_party/protobuf/src/google/protobuf/io/tokenizer.cc   current_.line = line_;
line              537 third_party/protobuf/src/google/protobuf/io/tokenizer.cc       current_.line = line_;
line              602 third_party/protobuf/src/google/protobuf/io/tokenizer.cc               current_.line == previous_.line &&
line              633 third_party/protobuf/src/google/protobuf/io/tokenizer.cc   current_.line = line_;
line               65 third_party/protobuf/src/google/protobuf/io/tokenizer.h   virtual void AddError(int line, int column, const string& message) = 0;
line               70 third_party/protobuf/src/google/protobuf/io/tokenizer.h   virtual void AddWarning(int line, int column, const string& message) { }
line              124 third_party/protobuf/src/google/protobuf/io/tokenizer.h     int line;
line              164 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   void AddError(int line, int column, const string& message) {
line              166 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                                  line, column, message);
line              259 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(0, tokenizer.current().line);
line              271 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(0, tokenizer.current().line);
line              282 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(0, tokenizer.current().line);
line              439 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(0, tokenizer.current().line);
line              463 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc     EXPECT_EQ(previous.line, tokenizer.previous().line);
line              470 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc     EXPECT_EQ(token.line, tokenizer.current().line);
line              760 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc                         unsigned int line,
line              107 third_party/protobuf/src/google/protobuf/stubs/common.cc void DefaultLogHandler(LogLevel level, const char* filename, int line,
line              114 third_party/protobuf/src/google/protobuf/stubs/common.cc           level_names[level], filename, line, message.c_str());
line              118 third_party/protobuf/src/google/protobuf/stubs/common.cc void NullLogHandler(LogLevel level, const char* filename, int line,
line              176 third_party/protobuf/src/google/protobuf/stubs/common.cc LogMessage::LogMessage(LogLevel level, const char* filename, int line)
line              177 third_party/protobuf/src/google/protobuf/stubs/common.cc   : level_(level), filename_(filename), line_(line) {}
line              664 third_party/protobuf/src/google/protobuf/stubs/common.h   LogMessage(LogLevel level, const char* filename, int line);
line              738 third_party/protobuf/src/google/protobuf/stubs/common.h T* CheckNotNull(const char *file, int line, const char *name, T* val) {
line              774 third_party/protobuf/src/google/protobuf/stubs/common.h typedef void LogHandler(LogLevel level, const char* filename, int line,
line             1214 third_party/protobuf/src/google/protobuf/stubs/common.h   FatalException(const char* filename, int line, const std::string& message)
line             1215 third_party/protobuf/src/google/protobuf/stubs/common.h       : filename_(filename), line_(line), message_(message) {}
line             1221 third_party/protobuf/src/google/protobuf/stubs/common.h   int line() const { return line_; }
line               81 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc void CaptureLog(LogLevel level, const char* filename, int line,
line               85 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc       implicit_cast<int>(level), filename, line, message));
line               90 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc   int line = __LINE__;
line               97 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc     "[libprotobuf INFO "__FILE__":" + SimpleItoa(line + 1) + "] A message.\n"
line               98 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc     "[libprotobuf WARNING "__FILE__":" + SimpleItoa(line + 2) + "] A warning.\n"
line               99 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc     "[libprotobuf ERROR "__FILE__":" + SimpleItoa(line + 3) + "] An error.\n",
line              233 third_party/protobuf/src/google/protobuf/testing/googletest.cc                                 int line, const string& message) {
line               91 third_party/protobuf/src/google/protobuf/testing/googletest.h   static void HandleLog(LogLevel level, const char* filename, int line,
line              241 third_party/protobuf/src/google/protobuf/text_format.cc   void ReportError(int line, int col, const string& message) {
line              244 third_party/protobuf/src/google/protobuf/text_format.cc       if (line >= 0) {
line              247 third_party/protobuf/src/google/protobuf/text_format.cc                    << ": " << (line + 1) << ":"
line              255 third_party/protobuf/src/google/protobuf/text_format.cc       error_collector_->AddError(line, col, message);
line              259 third_party/protobuf/src/google/protobuf/text_format.cc   void ReportWarning(int line, int col, const string& message) {
line              261 third_party/protobuf/src/google/protobuf/text_format.cc       if (line >= 0) {
line              264 third_party/protobuf/src/google/protobuf/text_format.cc                      << ": " << (line + 1) << ":"
line              272 third_party/protobuf/src/google/protobuf/text_format.cc       error_collector_->AddWarning(line, col, message);
line              282 third_party/protobuf/src/google/protobuf/text_format.cc     ReportError(tokenizer_.current().line, tokenizer_.current().column,
line              289 third_party/protobuf/src/google/protobuf/text_format.cc     ReportWarning(tokenizer_.current().line, tokenizer_.current().column,
line              316 third_party/protobuf/src/google/protobuf/text_format.cc     int start_line = tokenizer_.current().line;
line              884 third_party/protobuf/src/google/protobuf/text_format.cc     virtual void AddError(int line, int column, const string& message) {
line              885 third_party/protobuf/src/google/protobuf/text_format.cc       parser_->ReportError(line, column, message);
line              888 third_party/protobuf/src/google/protobuf/text_format.cc     virtual void AddWarning(int line, int column, const string& message) {
line              889 third_party/protobuf/src/google/protobuf/text_format.cc       parser_->ReportWarning(line, column, message);
line              228 third_party/protobuf/src/google/protobuf/text_format.h     int line;
line              231 third_party/protobuf/src/google/protobuf/text_format.h     ParseLocation() : line(-1), column(-1) {}
line              233 third_party/protobuf/src/google/protobuf/text_format.h         : line(line_param), column(column_param) {}
line              725 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectFailure(const string& input, const string& message, int line,
line              728 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     ExpectFailure(input, message, line, col, proto.get());
line              731 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectFailure(const string& input, const string& message, int line,
line              733 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     ExpectMessage(input, message, line, col, proto, false);
line              736 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectMessage(const string& input, const string& message, int line,
line              742 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     EXPECT_EQ(SimpleItoa(line) + ":" + SimpleItoa(col) + ": " + message + "\n",
line              758 third_party/protobuf/src/google/protobuf/text_format_unittest.cc                       int index, int line, int column) {
line              761 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     EXPECT_EQ(line, location.line);
line              775 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     void AddError(int line, int column, const string& message) {
line              777 third_party/protobuf/src/google/protobuf/text_format_unittest.cc                                    line + 1, column + 1, message);
line              780 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     void AddWarning(int line, int column, const string& message) {
line              781 third_party/protobuf/src/google/protobuf/text_format_unittest.cc       AddError(line, column, "WARNING:" + message);
line               56 third_party/re2/util/logging.h   LogMessage(const char* file, int line) : flushed_(false) {
line               57 third_party/re2/util/logging.h     stream() << file << ":" << line << ": ";
line               81 third_party/re2/util/logging.h   LogMessageFatal(const char* file, int line)
line               82 third_party/re2/util/logging.h     : LogMessage(file, line) { }
line              197 third_party/sqlite/src/tool/lemon.c   int line;                /* Line number at which code begins */
line             1267 third_party/sqlite/src/tool/lemon.c         ErrorMsg(lemp->filename,rp->line,"Nonterminal \"%s\" has no rules.",
line             2027 third_party/sqlite/src/tool/lemon.c           psp->prevrule->line = psp->tokenlineno;
line             3078 third_party/sqlite/src/tool/lemon.c   char line[LINESIZE];
line             3079 third_party/sqlite/src/tool/lemon.c   while( fgets(line,LINESIZE,in) && (line[0]!='%' || line[1]!='%') ){
line             3083 third_party/sqlite/src/tool/lemon.c       for(i=0; line[i]; i++){
line             3084 third_party/sqlite/src/tool/lemon.c         if( line[i]=='P' && strncmp(&line[i],"Parse",5)==0
line             3085 third_party/sqlite/src/tool/lemon.c           && (i==0 || !isalpha(line[i-1]))
line             3087 third_party/sqlite/src/tool/lemon.c           if( i>iStart ) fprintf(out,"%.*s",i-iStart,&line[iStart]);
line             3094 third_party/sqlite/src/tool/lemon.c     fprintf(out,"%s",&line[iStart]);
line             3311 third_party/sqlite/src/tool/lemon.c     rp->line = rp->ruleline;
line             3400 third_party/sqlite/src/tool/lemon.c    if (!lemp->nolinenosflag) { (*lineno)++; tplt_linedir(out,rp->line,lemp->filename); }
line             3606 third_party/sqlite/src/tool/lemon.c   char line[LINESIZE];
line             3892 third_party/sqlite/src/tool/lemon.c     sprintf(line,"\"%s\",",lemp->symbols[i]->name);
line             3893 third_party/sqlite/src/tool/lemon.c     fprintf(out,"  %-15s",line);
line             4049 third_party/sqlite/src/tool/lemon.c   char line[LINESIZE];
line             4057 third_party/sqlite/src/tool/lemon.c     for(i=1; i<lemp->nterminal && fgets(line,LINESIZE,in); i++){
line             4059 third_party/sqlite/src/tool/lemon.c       if( strcmp(line,pattern) ) break;
line               67 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateRWLockCreate(const char *file, int line,
line               69 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateRWLockDestroy(const char *file, int line,
line               71 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateRWLockAcquired(const char *file, int line,
line               73 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateRWLockReleased(const char *file, int line,
line               75 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBarrierInit(const char *file, int line,
line               78 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBarrierWaitBefore(const char *file, int line,
line               80 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBarrierWaitAfter(const char *file, int line,
line               82 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBarrierDestroy(const char *file, int line,
line               85 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateCondVarWait(const char *file, int line,
line               88 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateCondVarSignal(const char *file, int line,
line               90 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateCondVarSignalAll(const char *file, int line,
line               92 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotatePublishMemoryRange(const char *file, int line,
line               95 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateUnpublishMemoryRange(const char *file, int line,
line               98 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotatePCQCreate(const char *file, int line,
line              100 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotatePCQDestroy(const char *file, int line,
line              102 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotatePCQPut(const char *file, int line,
line              104 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotatePCQGet(const char *file, int line,
line              106 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateNewMemory(const char *file, int line,
line              109 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateExpectRace(const char *file, int line,
line              112 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBenignRace(const char *file, int line,
line              115 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateBenignRaceSized(const char *file, int line,
line              119 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateMutexIsUsedAsCondVar(const char *file, int line,
line              121 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateTraceMemory(const char *file, int line,
line              123 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateThreadName(const char *file, int line,
line              125 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateIgnoreReadsBegin(const char *file, int line){}
line              126 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateIgnoreReadsEnd(const char *file, int line){}
line              127 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateIgnoreWritesBegin(const char *file, int line){}
line              128 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateIgnoreWritesEnd(const char *file, int line){}
line              129 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateEnableRaceDetection(const char *file, int line, int enable){}
line              130 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateNoOp(const char *file, int line,
line              132 third_party/tcmalloc/chromium/src/base/dynamic_annotations.c void AnnotateFlushState(const char *file, int line){}
line              395 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h #define ANNOTALYSIS_SEMICOLON_OR_EMPTY_BODY { (void)file; (void)line; }
line              418 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateRWLockCreate(const char *file, int line,
line              420 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateRWLockDestroy(const char *file, int line,
line              422 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateRWLockAcquired(const char *file, int line,
line              424 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateRWLockReleased(const char *file, int line,
line              426 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBarrierInit(const char *file, int line,
line              429 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBarrierWaitBefore(const char *file, int line,
line              431 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBarrierWaitAfter(const char *file, int line,
line              433 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBarrierDestroy(const char *file, int line,
line              435 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateCondVarWait(const char *file, int line,
line              438 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateCondVarSignal(const char *file, int line,
line              440 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateCondVarSignalAll(const char *file, int line,
line              442 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotatePublishMemoryRange(const char *file, int line,
line              445 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateUnpublishMemoryRange(const char *file, int line,
line              448 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotatePCQCreate(const char *file, int line,
line              450 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotatePCQDestroy(const char *file, int line,
line              452 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotatePCQPut(const char *file, int line,
line              454 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotatePCQGet(const char *file, int line,
line              456 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateNewMemory(const char *file, int line,
line              459 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateExpectRace(const char *file, int line,
line              462 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBenignRace(const char *file, int line,
line              465 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateBenignRaceSized(const char *file, int line,
line              469 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateMutexIsUsedAsCondVar(const char *file, int line,
line              471 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateTraceMemory(const char *file, int line,
line              473 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateThreadName(const char *file, int line,
line              476 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateIgnoreReadsBegin(const char *file, int line)
line              479 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateIgnoreReadsEnd(const char *file, int line)
line              482 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateIgnoreWritesBegin(const char *file, int line)
line              485 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateIgnoreWritesEnd(const char *file, int line)
line              487 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateEnableRaceDetection(const char *file, int line, int enable);
line              488 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateNoOp(const char *file, int line,
line              490 third_party/tcmalloc/chromium/src/base/dynamic_annotations.h void AnnotateFlushState(const char *file, int line);
line              265 third_party/tcmalloc/chromium/src/base/sysinfo.cc     char line[1024];
line              267 third_party/tcmalloc/chromium/src/base/sysinfo.cc     memset(line, '\0', sizeof(line));
line              268 third_party/tcmalloc/chromium/src/base/sysinfo.cc     read(fd, line, sizeof(line) - 1);
line              269 third_party/tcmalloc/chromium/src/base/sysinfo.cc     const int temp_value = strtol(line, &err, 10);
line              270 third_party/tcmalloc/chromium/src/base/sysinfo.cc     if (line[0] != '\0' && (*err == '\n' || *err == '\0')) {
line              303 third_party/tcmalloc/chromium/src/base/sysinfo.cc   char line[1024];
line              346 third_party/tcmalloc/chromium/src/base/sysinfo.cc   line[0] = line[1] = '\0';
line              350 third_party/tcmalloc/chromium/src/base/sysinfo.cc     const int oldlinelen = strlen(line);
line              351 third_party/tcmalloc/chromium/src/base/sysinfo.cc     if (sizeof(line) == oldlinelen + 1)    // oldlinelen took up entire line
line              352 third_party/tcmalloc/chromium/src/base/sysinfo.cc       line[0] = '\0';
line              354 third_party/tcmalloc/chromium/src/base/sysinfo.cc       memmove(line, line + oldlinelen+1, sizeof(line) - (oldlinelen+1));
line              356 third_party/tcmalloc/chromium/src/base/sysinfo.cc     char* newline = strchr(line, '\n');
line              358 third_party/tcmalloc/chromium/src/base/sysinfo.cc       const int linelen = strlen(line);
line              359 third_party/tcmalloc/chromium/src/base/sysinfo.cc       const int bytes_to_read = sizeof(line)-1 - linelen;
line              361 third_party/tcmalloc/chromium/src/base/sysinfo.cc       chars_read = read(fd, line + linelen, bytes_to_read);
line              362 third_party/tcmalloc/chromium/src/base/sysinfo.cc       line[linelen + chars_read] = '\0';
line              363 third_party/tcmalloc/chromium/src/base/sysinfo.cc       newline = strchr(line, '\n');
line              371 third_party/tcmalloc/chromium/src/base/sysinfo.cc     if (!saw_mhz && strncasecmp(line, "cpu MHz", sizeof("cpu MHz")-1) == 0) {
line              372 third_party/tcmalloc/chromium/src/base/sysinfo.cc       const char* freqstr = strchr(line, ':');
line              378 third_party/tcmalloc/chromium/src/base/sysinfo.cc     } else if (strncasecmp(line, "bogomips", sizeof("bogomips")-1) == 0) {
line              379 third_party/tcmalloc/chromium/src/base/sysinfo.cc       const char* freqstr = strchr(line, ':');
line              385 third_party/tcmalloc/chromium/src/base/sysinfo.cc     } else if (strncasecmp(line, "processor", sizeof("processor")-1) == 0) {
line               64 third_party/tcmalloc/chromium/src/free_list.h                                                    int line) {
line               65 third_party/tcmalloc/chromium/src/free_list.h   if (v0 != v1) Log(kCrash, file, line, "Memory corruption detected.");
line               78 third_party/tcmalloc/chromium/src/internal_logging.cc void Log(LogMode mode, const char* filename, int line,
line               85 third_party/tcmalloc/chromium/src/internal_logging.cc       && state.AddNum(line, 10)
line               98 third_party/tcmalloc/chromium/src/internal_logging.h extern PERFTOOLS_DLL_DECL void Log(LogMode mode, const char* filename, int line,
line              135 third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c     IMAGEHLP_LINE64 line;
line              146 third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c     line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
line              147 third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c     if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) {
line              148 third_party/tcmalloc/chromium/src/windows/addr2line-pdb.c       printf("%s:%d\n", line.FileName, (int)line.LineNumber);
line               67 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateRWLockCreate(const char *file, int line,
line               69 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateRWLockDestroy(const char *file, int line,
line               71 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateRWLockAcquired(const char *file, int line,
line               73 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateRWLockReleased(const char *file, int line,
line               75 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBarrierInit(const char *file, int line,
line               78 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBarrierWaitBefore(const char *file, int line,
line               80 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBarrierWaitAfter(const char *file, int line,
line               82 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBarrierDestroy(const char *file, int line,
line               85 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateCondVarWait(const char *file, int line,
line               88 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateCondVarSignal(const char *file, int line,
line               90 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateCondVarSignalAll(const char *file, int line,
line               92 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotatePublishMemoryRange(const char *file, int line,
line               95 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateUnpublishMemoryRange(const char *file, int line,
line               98 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotatePCQCreate(const char *file, int line,
line              100 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotatePCQDestroy(const char *file, int line,
line              102 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotatePCQPut(const char *file, int line,
line              104 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotatePCQGet(const char *file, int line,
line              106 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateNewMemory(const char *file, int line,
line              109 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateExpectRace(const char *file, int line,
line              112 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBenignRace(const char *file, int line,
line              115 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateBenignRaceSized(const char *file, int line,
line              119 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateMutexIsUsedAsCondVar(const char *file, int line,
line              121 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateTraceMemory(const char *file, int line,
line              123 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateThreadName(const char *file, int line,
line              125 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateIgnoreReadsBegin(const char *file, int line){}
line              126 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateIgnoreReadsEnd(const char *file, int line){}
line              127 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateIgnoreWritesBegin(const char *file, int line){}
line              128 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateIgnoreWritesEnd(const char *file, int line){}
line              129 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateEnableRaceDetection(const char *file, int line, int enable){}
line              130 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateNoOp(const char *file, int line,
line              132 third_party/tcmalloc/vendor/src/base/dynamic_annotations.c void AnnotateFlushState(const char *file, int line){}
line              395 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h #define ANNOTALYSIS_SEMICOLON_OR_EMPTY_BODY { (void)file; (void)line; }
line              418 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateRWLockCreate(const char *file, int line,
line              420 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateRWLockDestroy(const char *file, int line,
line              422 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateRWLockAcquired(const char *file, int line,
line              424 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateRWLockReleased(const char *file, int line,
line              426 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBarrierInit(const char *file, int line,
line              429 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBarrierWaitBefore(const char *file, int line,
line              431 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBarrierWaitAfter(const char *file, int line,
line              433 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBarrierDestroy(const char *file, int line,
line              435 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateCondVarWait(const char *file, int line,
line              438 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateCondVarSignal(const char *file, int line,
line              440 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateCondVarSignalAll(const char *file, int line,
line              442 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotatePublishMemoryRange(const char *file, int line,
line              445 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateUnpublishMemoryRange(const char *file, int line,
line              448 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotatePCQCreate(const char *file, int line,
line              450 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotatePCQDestroy(const char *file, int line,
line              452 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotatePCQPut(const char *file, int line,
line              454 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotatePCQGet(const char *file, int line,
line              456 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateNewMemory(const char *file, int line,
line              459 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateExpectRace(const char *file, int line,
line              462 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBenignRace(const char *file, int line,
line              465 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateBenignRaceSized(const char *file, int line,
line              469 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateMutexIsUsedAsCondVar(const char *file, int line,
line              471 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateTraceMemory(const char *file, int line,
line              473 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateThreadName(const char *file, int line,
line              476 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateIgnoreReadsBegin(const char *file, int line)
line              479 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateIgnoreReadsEnd(const char *file, int line)
line              482 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateIgnoreWritesBegin(const char *file, int line)
line              485 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateIgnoreWritesEnd(const char *file, int line)
line              487 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateEnableRaceDetection(const char *file, int line, int enable);
line              488 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateNoOp(const char *file, int line,
line              490 third_party/tcmalloc/vendor/src/base/dynamic_annotations.h void AnnotateFlushState(const char *file, int line);
line              250 third_party/tcmalloc/vendor/src/base/sysinfo.cc     char line[1024];
line              252 third_party/tcmalloc/vendor/src/base/sysinfo.cc     memset(line, '\0', sizeof(line));
line              253 third_party/tcmalloc/vendor/src/base/sysinfo.cc     read(fd, line, sizeof(line) - 1);
line              254 third_party/tcmalloc/vendor/src/base/sysinfo.cc     const int temp_value = strtol(line, &err, 10);
line              255 third_party/tcmalloc/vendor/src/base/sysinfo.cc     if (line[0] != '\0' && (*err == '\n' || *err == '\0')) {
line              288 third_party/tcmalloc/vendor/src/base/sysinfo.cc   char line[1024];
line              331 third_party/tcmalloc/vendor/src/base/sysinfo.cc   line[0] = line[1] = '\0';
line              335 third_party/tcmalloc/vendor/src/base/sysinfo.cc     const int oldlinelen = strlen(line);
line              336 third_party/tcmalloc/vendor/src/base/sysinfo.cc     if (sizeof(line) == oldlinelen + 1)    // oldlinelen took up entire line
line              337 third_party/tcmalloc/vendor/src/base/sysinfo.cc       line[0] = '\0';
line              339 third_party/tcmalloc/vendor/src/base/sysinfo.cc       memmove(line, line + oldlinelen+1, sizeof(line) - (oldlinelen+1));
line              341 third_party/tcmalloc/vendor/src/base/sysinfo.cc     char* newline = strchr(line, '\n');
line              343 third_party/tcmalloc/vendor/src/base/sysinfo.cc       const int linelen = strlen(line);
line              344 third_party/tcmalloc/vendor/src/base/sysinfo.cc       const int bytes_to_read = sizeof(line)-1 - linelen;
line              346 third_party/tcmalloc/vendor/src/base/sysinfo.cc       chars_read = read(fd, line + linelen, bytes_to_read);
line              347 third_party/tcmalloc/vendor/src/base/sysinfo.cc       line[linelen + chars_read] = '\0';
line              348 third_party/tcmalloc/vendor/src/base/sysinfo.cc       newline = strchr(line, '\n');
line              356 third_party/tcmalloc/vendor/src/base/sysinfo.cc     if (!saw_mhz && strncasecmp(line, "cpu MHz", sizeof("cpu MHz")-1) == 0) {
line              357 third_party/tcmalloc/vendor/src/base/sysinfo.cc       const char* freqstr = strchr(line, ':');
line              363 third_party/tcmalloc/vendor/src/base/sysinfo.cc     } else if (strncasecmp(line, "bogomips", sizeof("bogomips")-1) == 0) {
line              364 third_party/tcmalloc/vendor/src/base/sysinfo.cc       const char* freqstr = strchr(line, ':');
line              370 third_party/tcmalloc/vendor/src/base/sysinfo.cc     } else if (strncasecmp(line, "processor", sizeof("processor")-1) == 0) {
line               77 third_party/tcmalloc/vendor/src/internal_logging.cc void Log(LogMode mode, const char* filename, int line,
line               84 third_party/tcmalloc/vendor/src/internal_logging.cc       && state.AddNum(line, 10)
line               98 third_party/tcmalloc/vendor/src/internal_logging.h extern PERFTOOLS_DLL_DECL void Log(LogMode mode, const char* filename, int line,
line              142 third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c     IMAGEHLP_LINE64 line;
line              153 third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c     line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
line              154 third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c     if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) {
line              155 third_party/tcmalloc/vendor/src/windows/addr2line-pdb.c       printf("%s:%d\n", line.FileName, (int)line.LineNumber);
line              302 third_party/wtl/include/atlwince.h 		POINT line[4] = {{0, nTitleHeight}, {nWidth, nTitleHeight}, {0, nTitleHeight - 1}, {nWidth, nTitleHeight - 1}};
line              310 third_party/wtl/include/atlwince.h 		dc.Polyline(line, nSeg <= 2 ? nSeg * 2 : 4);
line              120 tools/android/memdump/memdump.cc bool ParseMemoryMapLine(const std::string& line,
line              124 tools/android/memdump/memdump.cc   base::SplitString(line, ' ', tokens);
line              185 tools/android/memdump/memdump.cc   std::string line;
line              187 tools/android/memdump/memdump.cc   while (std::getline(maps_file, line) && !line.empty()) {
line              189 tools/android/memdump/memdump.cc     if (!ParseMemoryMapLine(line, &tokens, &memory_map)) {
line              190 tools/android/memdump/memdump.cc       LOG(ERROR) << "Could not parse line: " << line;
line               44 tools/android/ps_ext/ps_ext.c     char line[256];
line               50 tools/android/ps_ext/ps_ext.c     fgets(line, sizeof(line), f);
line               53 tools/android/ps_ext/ps_ext.c     if (strncmp(line, "cpu", 3) != 0 || line[3] == ' ')
line               55 tools/android/ps_ext/ps_ext.c     if (sscanf(line, "%s %lu %lu %lu %lu",
line               78 tools/android/ps_ext/ps_ext.c     char line[256];
line               82 tools/android/ps_ext/ps_ext.c     fgets(line, sizeof(line), f);
line               83 tools/android/ps_ext/ps_ext.c     if (sscanf(line, "%s %lu %*s", key, &value) < 2)
line              313 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                 final String line;
line              316 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                     line = location.substring(indexOfColon + 1);
line              319 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                     line = null;
line              325 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                     if (line != null) location = location + ":" + line;
line               47 tools/binary_size/java/src/org/chromium/tools/binary_size/NmDumper.java     void skipped(String line) {
line               48 tools/binary_size/java/src/org/chromium/tools/binary_size/NmDumper.java         mOutput.printSkip(line);
line              303 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java     private Record getIcuRecord(String line) throws IOException {
line              306 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         String[] parts = line.split("\\s");
line              186 tools/cygprofile/cygprofile.cc   char line[kMaxLineSize];
line              189 tools/cygprofile/cygprofile.cc   while (mapsfile.getline(line, kMaxLineSize)) {
line              190 tools/cygprofile/cygprofile.cc     const std::string str_line = line;
line               20 tools/gn/command_args.cc bool DoesLineBeginWithComment(const base::StringPiece& line) {
line               23 tools/gn/command_args.cc   while (i < line.size() && IsAsciiWhitespace(line[i]))
line               26 tools/gn/command_args.cc   return i < line.size() && line[i] == '#';
line               47 tools/gn/command_args.cc std::string StripHashFromLine(const base::StringPiece& line) {
line               52 tools/gn/command_args.cc   return "   " + line.substr(line.find('#') + 1).as_string();
line               75 tools/gn/command_args.cc     base::StringPiece line(&data[previous_line_offset],
line               77 tools/gn/command_args.cc     if (!DoesLineBeginWithComment(line))
line               80 tools/gn/command_args.cc     comment->insert(0, StripHashFromLine(line) + "\n");
line               27 tools/gn/err.cc                      std::string* line) {
line               44 tools/gn/err.cc     end_char = static_cast<int>(line->size());  // Ending is non-inclusive.
line               49 tools/gn/err.cc   CHECK(begin_char >= 0 && begin_char <= static_cast<int>(line->size()));
line               50 tools/gn/err.cc   CHECK(end_char >= 0 && end_char <= static_cast<int>(line->size()));
line               52 tools/gn/err.cc     line->at(i) = '-';
line              176 tools/gn/err.cc     std::string line = GetNthLine(input_file->contents(),
line              178 tools/gn/err.cc     if (!base::ContainsOnlyChars(line, base::kWhitespaceASCII)) {
line              179 tools/gn/err.cc       OutputString(line + "\n", DECORATION_DIM);
line              180 tools/gn/err.cc       OutputHighlighedPosition(location_, ranges_, line.size());
line              124 tools/gn/standard_out.cc void PrintShortHelp(const std::string& line) {
line              125 tools/gn/standard_out.cc   size_t colon_offset = line.find(':');
line              128 tools/gn/standard_out.cc     OutputString("  " + line.substr(0, colon_offset), DECORATION_YELLOW);
line              134 tools/gn/standard_out.cc       line.size() > first_normal + 2 &&
line              135 tools/gn/standard_out.cc       line[first_normal + 1] == ' ' && line[first_normal + 2] == '[') {
line              138 tools/gn/standard_out.cc     first_normal = line.find(']', begin_bracket);
line              140 tools/gn/standard_out.cc       first_normal = line.size();
line              143 tools/gn/standard_out.cc     OutputString(line.substr(begin_bracket, first_normal - begin_bracket),
line              147 tools/gn/standard_out.cc   OutputString(line.substr(first_normal) + "\n");
line              155 tools/gn/standard_out.cc     const std::string& line = lines[i];
line              158 tools/gn/standard_out.cc     if (!line.empty() && line[0] != ' ') {
line              160 tools/gn/standard_out.cc       size_t chars_to_highlight = line.find(':');
line              162 tools/gn/standard_out.cc         chars_to_highlight = line.size();
line              163 tools/gn/standard_out.cc       OutputString(line.substr(0, chars_to_highlight), DECORATION_YELLOW);
line              164 tools/gn/standard_out.cc       OutputString(line.substr(chars_to_highlight) + "\n");
line              170 tools/gn/standard_out.cc     for (size_t char_i = 0; char_i < line.size(); char_i++) {
line              171 tools/gn/standard_out.cc       if (line[char_i] == '#') {
line              175 tools/gn/standard_out.cc       } else if (line[char_i] != ' ') {
line              180 tools/gn/standard_out.cc     OutputString(line + "\n", dec);
line               27 tools/gn/standard_out.h void PrintShortHelp(const std::string& line);
line              296 tools/memory_watcher/call_stack.cc     PrivateAllocatorString line;
line              303 tools/memory_watcher/call_stack.cc       line = it->second;
line              339 tools/memory_watcher/call_stack.cc           line += "    ";
line              340 tools/memory_watcher/call_stack.cc           line += static_cast<char*>(Line.FileName);
line              341 tools/memory_watcher/call_stack.cc           line += " (";
line              345 tools/memory_watcher/call_stack.cc           line += base::IntToString(Line.LineNumber).c_str();
line              346 tools/memory_watcher/call_stack.cc           line += "): ";
line              347 tools/memory_watcher/call_stack.cc           line += symbol->Name;
line              348 tools/memory_watcher/call_stack.cc           line += "\n";
line              350 tools/memory_watcher/call_stack.cc           line += "    unknown (0):";
line              351 tools/memory_watcher/call_stack.cc           line += symbol->Name;
line              352 tools/memory_watcher/call_stack.cc           line += "\n";
line              360 tools/memory_watcher/call_stack.cc           line += "    (";
line              361 tools/memory_watcher/call_stack.cc           line += static_cast<char*>(module_info.ModuleName);
line              362 tools/memory_watcher/call_stack.cc           line += ")\n";
line              364 tools/memory_watcher/call_stack.cc           line += "    ???\n";
line              369 tools/memory_watcher/call_stack.cc     (*symbol_cache_)[intruction_pointer] = line;
line              370 tools/memory_watcher/call_stack.cc     *output += line;
line              141 tools/traceline/traceline/sym_resolver.h     IMAGEHLP_LINE64 line;
line              143 tools/traceline/traceline/sym_resolver.h             proc_, static_cast<DWORD64>(ptr), &disp, &line)) {
line              145 tools/traceline/traceline/sym_resolver.h       name.append(line.FileName);
line              147 tools/traceline/traceline/sym_resolver.h       _itoa_s(line.LineNumber, buf, sizeof(buf), 10);
line               41 ui/events/ozone/evdev/device_manager_udev.cc              int line,
line              979 ui/gfx/render_text.cc   size_t line = 0;
line              980 ui/gfx/render_text.cc   for (; line < lines_.size() && x > lines_[line].size.width(); ++line)
line              981 ui/gfx/render_text.cc     x -= lines_[line].size.width();
line              982 ui/gfx/render_text.cc   return Point(x, point.y()) + GetLineOffset(line);
line              999 ui/gfx/render_text.cc   for (size_t line = 0; line < lines_.size(); ++line) {
line             1001 ui/gfx/render_text.cc     const Vector2d offset = GetLineOffset(line);
line             1002 ui/gfx/render_text.cc     for (size_t i = 0; i < lines_[line].segments.size(); ++i) {
line             1003 ui/gfx/render_text.cc       const internal::LineSegment* segment = &lines_[line].segments[i];
line             1007 ui/gfx/render_text.cc                   0, intersection.length(), lines_[line].size.height());
line              417 ui/gfx/render_text_win.cc       Line* line = &lines_.back();
line              428 ui/gfx/render_text_win.cc       line->baseline = line_ascent_;
line              429 ui/gfx/render_text_win.cc       line->size.set_height(line_ascent_ + line_descent_);
line              430 ui/gfx/render_text_win.cc       line->preceding_heights = total_size_.height();
line              431 ui/gfx/render_text_win.cc       total_size_.set_height(total_size_.height() + line->size.height());
line              432 ui/gfx/render_text_win.cc       total_size_.set_width(std::max(total_size_.width(), line->size.width()));
line              456 ui/gfx/render_text_win.cc     Line* line = &lines_.back();
line              457 ui/gfx/render_text_win.cc     line->segments.push_back(segment);
line              458 ui/gfx/render_text_win.cc     line->size.set_width(line->size.width() + segment.x_range.length());
line              461 ui/gfx/render_text_win.cc                                             line->segments.size() - 1));
line              809 ui/gfx/render_text_win.cc     const internal::Line& line = lines()[i];
line              814 ui/gfx/render_text_win.cc                                         line.size)))
line              817 ui/gfx/render_text_win.cc     const Vector2d text_offset = line_offset + Vector2d(0, line.baseline);
line              820 ui/gfx/render_text_win.cc     for (size_t j = 0; j < line.segments.size(); ++j) {
line              821 ui/gfx/render_text_win.cc       const internal::LineSegment* segment = &line.segments[j];
line              832 ui/gfx/render_text_win.cc                                   Size(segment_width, line.size.height()));
line              329 ui/gfx/text_elider.cc   void AddLine(const base::string16& line);
line              393 ui/gfx/text_elider.cc void RectangleString::AddLine(const base::string16& line) {
line              394 ui/gfx/text_elider.cc   if (line.length() < max_cols_) {
line              395 ui/gfx/text_elider.cc     Append(line);
line              397 ui/gfx/text_elider.cc     base::i18n::BreakIterator words(line,
line              498 ui/gfx/text_elider.cc   void AddLine(const base::string16& line);
line              565 ui/gfx/text_elider.cc       base::string16 line = lines.GetString();
line              569 ui/gfx/text_elider.cc       last_line_ended_in_lf_ = !line.empty() && line[line.length() - 1] == '\n';
line              571 ui/gfx/text_elider.cc         line.resize(line.length() - 1);
line              572 ui/gfx/text_elider.cc       AddLine(line);
line              593 ui/gfx/text_elider.cc void RectangleText::AddLine(const base::string16& line) {
line              594 ui/gfx/text_elider.cc   const float line_width = GetStringWidthF(line, font_list_);
line              596 ui/gfx/text_elider.cc     AddToCurrentLineWithWidth(line, line_width);
line              600 ui/gfx/text_elider.cc     base::i18n::BreakIterator words(line,
line              610 ui/gfx/text_elider.cc             const int line = lines_->size() - lines_added;
line              611 ui/gfx/text_elider.cc             base::TrimWhitespace(lines_->at(line), base::TRIM_TRAILING,
line              612 ui/gfx/text_elider.cc                                  &lines_->at(line));
line              192 ui/views/controls/styled_label.cc   int line = 0;
line              205 ui/views/controls/styled_label.cc     if (x == 0 && line > 0) {
line              241 ui/views/controls/styled_label.cc         if (line == 0) {
line              250 ui/views/controls/styled_label.cc       line++;
line              263 ui/views/controls/styled_label.cc         line++;
line              296 ui/views/controls/styled_label.cc                      GetInsets().top() + line * line_height -
line              306 ui/views/controls/styled_label.cc   return gfx::Size(width, (line + 1) * line_height + GetInsets().height());
line               98 ui/views/corewm/tooltip_aura.cc     base::string16 line;
line              107 ui/views/corewm/tooltip_aura.cc         if (!line.empty())
line              108 ui/views/corewm/tooltip_aura.cc           result_lines.push_back(line);
line              110 ui/views/corewm/tooltip_aura.cc         line.clear();
line              113 ui/views/corewm/tooltip_aura.cc       line.append(word);
line              115 ui/views/corewm/tooltip_aura.cc     result_lines.push_back(line);
line              164 webkit/browser/appcache/manifest_parser.cc     std::wstring line(line_start, tmp - line_start + 1);
line              166 webkit/browser/appcache/manifest_parser.cc     if (line == L"CACHE:") {
line              168 webkit/browser/appcache/manifest_parser.cc     } else if (line == L"FALLBACK:") {
line              170 webkit/browser/appcache/manifest_parser.cc     } else if (line == L"NETWORK:") {
line              172 webkit/browser/appcache/manifest_parser.cc     } else if (line == L"CHROMIUM-INTERCEPT:") {
line              174 webkit/browser/appcache/manifest_parser.cc     } else if (*(line.end() - 1) == ':') {
line              178 webkit/browser/appcache/manifest_parser.cc     } else if (line == L"*" && mode == ONLINE_WHITELIST) {
line              182 webkit/browser/appcache/manifest_parser.cc       const wchar_t *line_p = line.c_str();
line              183 webkit/browser/appcache/manifest_parser.cc       const wchar_t *line_end = line_p + line.length();
line              190 webkit/browser/appcache/manifest_parser.cc       base::WideToUTF16(line.c_str(), line_p - line.c_str(), &url16);
line              223 webkit/browser/appcache/manifest_parser.cc       const wchar_t* line_p = line.c_str();
line              224 webkit/browser/appcache/manifest_parser.cc       const wchar_t* line_end = line_p + line.length();
line              235 webkit/browser/appcache/manifest_parser.cc       base::WideToUTF16(line.c_str(), line_p - line.c_str(), &namespace_url16);
line              301 webkit/browser/appcache/manifest_parser.cc       const wchar_t* line_p = line.c_str();
line              302 webkit/browser/appcache/manifest_parser.cc       const wchar_t* line_end = line_p + line.length();
line              314 webkit/browser/appcache/manifest_parser.cc       base::WideToUTF16(line.c_str(), line_p - line.c_str(), &namespace_url16);