/external/chromium/googleurl/base/ |
logging.cc | 187 // command line. We look for "Debug Message.exe" in the same directory as 202 // stupid CreateProcess requires a non-const command line and may modify it. 227 LogMessage::LogMessage(const char* file, int line, LogSeverity severity, 230 Init(file, line); 233 LogMessage::LogMessage(const char* file, int line, const CheckOpString& result) 235 Init(file, line); 239 LogMessage::LogMessage(const char* file, int line) 241 Init(file, line); 244 LogMessage::LogMessage(const char* file, int line, LogSeverity severity) 246 Init(file, line); 276 stream_ << log_severity_names[severity_] << ":" << file << "(" << line << ")] "; local [all...] |
/external/chromium/net/url_request/ |
url_request_throttler_unittest.cc | 197 line = line_num; 201 int line; member in struct:net::__anon2950::TimeAndBool 210 line = line_num; 214 int line; member in struct:net::__anon2950::GurlAndString 305 "Test case #" << i << " line " << test_values[i].line << " failed"; 396 "Test case #" << i << " line " << test_values[i].line << " failed";
|
/external/chromium/third_party/libevent/ |
buffer.c | 206 * Reads a line terminated by either '\r\n', '\n\r' or '\r' or '\n'. 215 char *line; local 226 if ((line = malloc(i + 1)) == NULL) { 231 memcpy(line, data, i); 232 line[i] = '\0'; 235 * Some protocols terminate a line with '\r\n', so check for 248 return (line);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
linux.cc | 151 // Parses the next line in the filestream and places the found key-value 153 std::string line; local 154 if ((instream_->ReadLine(&line)) == EOF) { 158 if (2 != split(line, ':', &tokens)) { 221 std::string line; local 224 if (!ExpectLineFromStream(&lsb_release_output, &line)) { 227 sstr << "DISTRIB_ID=" << line; local 229 if (!ExpectLineFromStream(&lsb_release_output, &line)) { 232 sstr << " DISTRIB_DESCRIPTION=\"" << line << '"'; local 234 if (!ExpectLineFromStream(&lsb_release_output, &line)) { 237 sstr << " DISTRIB_RELEASE=" << line; local 242 sstr << " DISTRIB_CODENAME=" << line; local [all...] |
network.cc | 220 std::string line; local 221 while (fs.ReadLine(&line) == SR_SUCCESS && gateway_ip == 0) { 224 if (sscanf(line.c_str(), "%7s %8X %8X", iface, &ip, &gw) == 3 &&
|
/external/chromium_org/base/debug/ |
trace_event_memory.cc | 302 // Heap profile output has a header total line, then a list of stacks with 331 // Handle the initial summary line. 337 const std::string& line = lines[i]; local 338 AppendHeapProfileLineAsTraceFormat(line, output); 343 void AppendHeapProfileTotalsAsTraceFormat(const std::string& line, 345 // This is what a line looks like: 355 Tokenize(line, " :[]@", &tokens); 357 DLOG(WARNING) << "Invalid totals line " << line; 369 bool AppendHeapProfileLineAsTraceFormat(const std::string& line, [all...] |
/external/chromium_org/chrome/browser/extensions/ |
user_script_master.cc | 41 static bool GetDeclarationValue(const base::StringPiece& line, 44 base::StringPiece::size_type index = line.find(prefix); 48 std::string temp(line.data() + index + prefix.length(), 49 line.length() - index - prefix.length()); 67 base::StringPiece line; local 94 line.set(script_text.data() + line_start, line_end - line_start); 97 if (line.starts_with(kUserScriptBegin)) 100 if (line.starts_with(kUserScriptEng)) 104 if (GetDeclarationValue(line, kIncludeDeclaration, &value)) { 109 } else if (GetDeclarationValue(line, kExcludeDeclaration, &value)) [all...] |
/external/chromium_org/chrome/browser/history/ |
url_database.cc | 248 int line; local 254 line = __LINE__; 260 line = __LINE__; 263 GetDB().GetCachedStatement(sql::StatementID(__FILE__, line), sql));
|
/external/chromium_org/chrome/browser/net/ |
firefox_proxy_settings.cc | 80 const std::string& line = *iter; local 81 size_t start_key = line.find(kUserPrefString); 83 continue; // Could be a comment or a blank line. 85 size_t stop_key = line.find('"', start_key); 88 pref_file.value() << "' line is '" << line << "'."; 91 std::string key = line.substr(start_key, stop_key - start_key); 92 size_t start_value = line.find(',', stop_key + 1); 95 pref_file.value() << "' line is '" << line << "'." [all...] |
/external/chromium_org/chrome/browser/resources/google_now/ |
utility.js | 102 var line; 115 // Find the the parentheses at the end of the line, if any. 131 line = topFrameElements[topFrameElements.length - 2]; 142 line: line,
|
/external/chromium_org/chrome/utility/importer/ |
bookmark_html_reader.cc | 112 std::string line; local 113 base::TrimString(lines[i], " ", &line); 115 // Remove "<HR>" if |line| starts with it. "<HR>" is the bookmark entries 117 // multiple "<HR>" tags at the beginning of a single line. 120 while (StartsWithASCII(line, kHrTag, false)) { 121 line.erase(0, arraysize(kHrTag) - 1); 122 base::TrimString(line, " ", &line); 126 if (internal::ParseCharsetFromLine(line, &charset)) 130 if (internal::ParseFolderNameFromLine(line, [all...] |
/external/chromium_org/chromeos/network/ |
network_event_log.cc | 78 std::string line; local 80 line += "[" + UTF16ToUTF8(base::TimeFormatTimeOfDay(time)) + "] "; 83 line += base::StringPrintf("%s:%d ", file.c_str(), file_line); 85 line += format_html ? GetHtmlText(show_desc) : GetNormalText(show_desc); 87 line += base::StringPrintf(" (%d)", count); 88 return line;
|
/external/chromium_org/content/browser/accessibility/ |
accessibility_tree_formatter_win.cc | 205 base::string16 line; local 209 WriteAttribute(true, UTF16ToUTF8(role_value), &line); 214 &line); 230 &line); 240 &line); 250 &line); 263 WriteAttribute(false, string_value, &line); 276 &line); 280 &line); 290 return indent + line + ASCIIToUTF16("\n") [all...] |
dump_accessibility_tree_browsertest.cc | 103 const std::string& line = *iter; local 110 if (StartsWithASCII(line, allow_empty_str, true)) { 112 Filter(UTF8ToUTF16(line.substr(allow_empty_str.size())), 114 } else if (StartsWithASCII(line, allow_str, true)) { 115 filters->push_back(Filter(UTF8ToUTF16(line.substr(allow_str.size())), 117 } else if (StartsWithASCII(line, deny_str, true)) { 118 filters->push_back(Filter(UTF8ToUTF16(line.substr(deny_str.size())), 161 // Tolerate Windows-style line endings (\r\n) in the expected file: 200 // Marking the end of the file with a line of text ensures that 210 printf("* Line Expected\n") [all...] |
/external/chromium_org/dbus/ |
dbus_statistics.cc | 211 continue; // No stats collected for this line, skip it and continue. 213 // Add a line to the result and clear the counts. 214 std::string line; local 216 line += stat->service; 219 line += stat->interface; 221 line += "." + stat->method; 223 line += base::StringPrintf(":"); 225 line += base::StringPrintf(" Sent (BLOCKING):"); 227 line += base::StringPrintf(" %d", sent_blocking); 229 line += base::StringPrintf(" %d/min", sent_blocking / dminutes) [all...] |
/external/chromium_org/net/cookies/ |
cookie_store_unittest.h | 205 // Check the cookie line by polling until equality or a timeout is reached. 208 const std::string& line) { 210 bool matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies)); 218 matched = (TokenizeCookieLine(line) == TokenizeCookieLine(cookies)); 222 << "\" does not match \"" << line << "\""; local 235 std::set<std::string> TokenizeCookieLine(const std::string& line) { 237 base::StringTokenizer tokenizer(line, " ;"); [all...] |
/external/chromium_org/net/tools/disk_cache_memory_test/ |
disk_cache_memory_test.cc | 138 bool ParseRangeLine(const std::string& line, 142 base::SplitStringAlongWhitespace(line, tokens); 161 // Returns |false| iff it recognizes a new range line. Outputs non-zero |size| 163 bool ParseRangeProperty(const std::string& line, 168 base::SplitStringAlongWhitespace(line, tokens); 170 // If the line is long, attempt to parse new range outside of this scope. 174 // Skip the line on other parsing error occasions. 182 LOG(WARNING) << "Discarding value not in kB: " << line; 201 std::string line; local 204 if (!std::getline(maps_file, line) || line.empty() [all...] |
/external/chromium_org/printing/backend/ |
cups_helper.cc | 51 std::string line = lines[i]; local 52 if (line.empty()) 55 if (base::strncasecmp (line.c_str(), kDefault, kDefaultLen) == 0 && 56 isspace(line[kDefaultLen])) { 57 line = line.substr(kDefaultLen); 58 } else if (base::strncasecmp (line.c_str(), kDest, kDestLen) == 0 && 59 isspace(line[kDestLen])) { 60 line = line.substr(kDestLen) [all...] |
/external/chromium_org/testing/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 249 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTCue.h | 75 int line() const { return m_linePosition; } function in class:WebCore::FINAL 159 Line,
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLineBoxList.cpp | 68 InlineFlowBox* line = m_firstLineBox; local 70 while (line) { 71 nextLine = line->nextLineBox(); 72 line->deleteLine(); 73 line = nextLine; 178 // if some line in the middle has a huge overflow, it might actually extend below the last line. 222 // based off positions of our first line box or our last line box. 261 // based off positions of our first line box or our last line box [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ScriptFormatterWorker.js | 104 var line = lines[i]; 105 tokenizer(line, processToken); 121 currentFunction = { line: i, column: column, name: tokenValue }; 130 currentFunction = { line: i, column: column, name: previousIdentifier }; 227 this.line = content;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEDisplacementMap.cpp | 137 int line = y * stride; local 139 int dstIndex = line + x * 4;
|
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/ |
MHTMLParser.cpp | 93 String line; local 96 while (!(line = buffer->nextChunkAsUTF8StringWithLatin1Fallback()).isNull()) { 97 if (line.isEmpty()) 98 break; // Empty line means end of key/value section. 99 if (line[0] == '\t') { 101 value.append(line.substring(1)); 112 size_t semiColonIndex = line.find(':'); 117 key = line.substring(0, semiColonIndex).lower().stripWhiteSpace(); 118 value.append(line.substring(semiColonIndex + 1)); 184 String line; local 312 String line = m_lineReader.nextChunkAsUTF8StringWithLatin1Fallback(); local 319 String line; local [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
WebTestThemeControlWin.cpp | 135 void WebTestThemeControlWin::line(int x0, int y0, int x1, int y1, SkColor color) function in class:WebTestRunner::WebTestThemeControlWin 233 line(m_left + 1, i, m_right - 1, i, readOnlyColor); 377 line(m_left + gripLongIndent, m_top + halfHeight, m_right - gripLongIndent, m_top + halfHeight, m_fgColor); 378 line(m_left + longOffset, m_top + gripShortIndent, m_left + longOffset, m_bottom - gripShortIndent, m_fgColor); 379 line(m_right - longOffset, m_top + gripShortIndent, m_right - longOffset, m_bottom - gripShortIndent, m_fgColor); 386 line(m_left + halfWidth, m_top + gripLongIndent, m_left + halfWidth, m_bottom - gripLongIndent, m_fgColor); 387 line(m_left + gripShortIndent, m_top + longOffset, m_right - gripShortIndent, m_top + longOffset, m_fgColor); 388 line(m_left + gripShortIndent, m_bottom - longOffset, m_right - gripShortIndent, m_bottom - longOffset, m_fgColor); 422 line(m_left, m_top, m_left, m_bottom, m_edgeColor); 423 line(m_right, m_top, m_right, m_bottom, m_edgeColor) [all...] |