Searched defs:line (Results 526 - 550 of 1454) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/components/autofill/core/browser/
H A Dautofill_merge_unittest.cc192 // Parse the input line by line.
196 std::string line = lines[i]; local
198 if (line != kProfileSeparator) {
200 size_t separator_pos = line.find(kFieldSeparator);
203 base::UTF8ToUTF16(line.substr(0, separator_pos));
205 base::UTF8ToUTF16(line.substr(separator_pos + kFieldOffset));
215 // The first line is always a profile separator, and the last profile is not
217 if ((i > 0 && line == kProfileSeparator) || i == lines.size() - 1) {
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_language_list.cc252 void TranslateLanguageList::NotifyEvent(int line, const std::string& message) { argument
253 TranslateEventDetails details(__FILE__, line, message);
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter.cc78 base::string16 line = local
80 if (line.find(base::ASCIIToUTF16(kSkipString)) != base::string16::npos)
83 *contents += line;
172 bool include_by_default, const std::string& attr, base::string16* line) {
173 WriteAttribute(include_by_default, base::UTF8ToUTF16(attr), line);
177 bool include_by_default, const base::string16& attr, base::string16* line) {
182 if (!line->empty())
183 *line += base::ASCIIToUTF16(" ");
184 *line += attr;
171 WriteAttribute( bool include_by_default, const std::string& attr, base::string16* line) argument
176 WriteAttribute( bool include_by_default, const base::string16& attr, base::string16* line) argument
H A Daccessibility_tree_formatter_win.cc204 base::string16 line; local
208 WriteAttribute(true, base::UTF16ToUTF8(role_value), &line);
213 &line);
229 &line);
240 &line);
251 &line);
264 WriteAttribute(false, string_value, &line);
277 &line);
281 &line);
291 return indent + line
[all...]
H A Ddump_accessibility_tree_browsertest.cc123 const std::string& line = *iter; local
131 if (StartsWithASCII(line, allow_empty_str, true)) {
133 Filter(base::UTF8ToUTF16(line.substr(allow_empty_str.size())),
135 } else if (StartsWithASCII(line, allow_str, true)) {
137 line.substr(allow_str.size())),
139 } else if (StartsWithASCII(line, deny_str, true)) {
141 line.substr(deny_str.size())),
143 } else if (StartsWithASCII(line, wait_str, true)) {
144 *wait_for = line.substr(wait_str.size());
186 // Tolerate Windows-style line ending
[all...]
/external/chromium_org/content/gpu/
H A Dgpu_main.cc92 const char* file, int line,
183 // In addition to disabling the watchdog if the command line switch is
91 GpuProcessLogMessageHandler(int severity, const char* file, int line, size_t message_start, const std::string& str) argument
/external/chromium_org/dbus/
H A Ddbus_statistics.cc211 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
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dstress_cache.cc238 bool MessageHandler(int severity, const char* file, int line, argument
/external/chromium_org/net/tools/disk_cache_memory_test/
H A Ddisk_cache_memory_test.cc138 bool ParseRangeLine(const std::string& line, argument
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, argument
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) || lin
[all...]
/external/chromium_org/pdf/
H A Dpdf.cc36 unsigned int line,
33 HandleInvalidParameter(const wchar_t* expression, const wchar_t* function, const wchar_t* file, unsigned int line, uintptr_t reserved) argument
/external/chromium_org/ppapi/tests/
H A Dtest_case.cc101 int line,
104 output << "Failure in " << file << "(" << line << "): " << cmd;
100 MakeFailureMessage(const char* file, int line, const char* cmd) argument
/external/chromium_org/sql/
H A Dconnection.h36 // - In the most common mode, you will use the source file and line number to
51 // Creates a uniquely named statement with the given file ane line number.
53 StatementID(const char* file, int line) argument
54 : number_(line),
153 // Run "PRAGMA integrity_check" and post each line of
340 // ID associated with the current line of code. This gives uniqueness without
396 // running the following statement at a sqlite3 command-line:
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h80 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/bindings/core/v8/
H A DV8ScriptRunner.cpp106 // NOTE: For compatibility with WebCore, ScriptSourceCode's line starts at
109 v8::Handle<v8::Integer> line = v8::Integer::New(isolate, scriptStartPosition.m_line.zeroBasedInt()); local
112 v8::ScriptOrigin origin(name, line, column, isSharedCrossOrigin);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.h79 int line() const { return m_linePosition; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptBase.cpp57 int line = 0; local
58 if (object->getNumber("line", &line))
59 exceptionDetails->setLine(line);
H A DJavaScriptCallFrame.cpp92 int JavaScriptCallFrame::line() const function in class:blink::JavaScriptCallFrame
94 return callV8FunctionReturnInt("line");
201 exceptionDetails->Set(v8::String::NewFromUtf8(isolate, "line"), v8::Integer::New(isolate, message->GetLineNumber()));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLineBoxList.cpp67 InlineFlowBox* line = m_firstLineBox; local
69 while (line) {
70 nextLine = line->nextLineBox();
71 line->deleteLine();
72 line = nextLine;
177 // if some line in the middle has a huge overflow, it might actually extend below the last line.
216 // based off positions of our first line box or our last line box.
239 // If we have no first line bo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineLayoutState.h86 void setEndLine(RootInlineBox* line) { m_endLine = line; } argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEDisplacementMap.cpp145 int line = y * stride; local
147 int dstIndex = line + x * 4;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolverTest.cpp129 const std::string& line, size_t lineNumber);
165 const std::string& line, size_t lineNumber)
198 errorContext << ", line " << lineNumber << " \"" << line << "\""; local
163 runTest(const std::basic_string<UChar>& input, const std::vector<int>& expectedOrder, const std::vector<int>& expectedLevels, bidi_test::ParagraphDirection paragraphDirection, const std::string& line, size_t lineNumber) argument
H A DBidiTestHarness.h147 static std::vector<int> parseLevels(const std::string& line) argument
150 std::vector<std::string> strings = parseStringList(line);
164 static std::basic_string<UChar> parseTestString(const std::string& line) argument
195 std::vector<std::string> charClasses = parseStringList(line);
203 static bool parseParagraphDirectionMask(const std::string& line, int& modeMask) argument
205 modeMask = atoi(line.c_str());
209 static void parseError(const std::string& line, size_t lineNumber) argument
212 printf("Parse error, line %zu : %s\n", lineNumber, line.c_str());
228 std::string line; local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebPageNewSerializerTest.cpp60 bool getNextLine(std::string* line) argument
62 line->clear();
68 *line = m_text.substr(m_index);
71 *line = m_text.substr(m_index, endOfLineIndex - m_index);
327 // Read the MHTML data line per line and do some pseudo-parsing to make sure the right encoding is used for the different sections.
331 std::string line; local
332 while (lineReader.getNextLine(&line)) {
333 if (!line.find("Content-Type:")) {
335 if (line
389 std::string line; local
467 std::string line; local
490 std::string line; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp190 static void printCallSite(const char* file, int line, const char* function) argument
193 _CrtDbgReport(_CRT_WARN, file, line, NULL, "%s\n", function);
196 // using Visual Studio can double-click the file/line number in the Output Window to have the
197 // editor navigate to that line of code. It seems fine for other developers, too.
198 printf_stderr_common("%s(%d) : %s\n", file, line, function);
202 void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) argument
208 printCallSite(file, line, function);
211 void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) argument
218 printCallSite(file, line, function);
221 void WTFReportArgumentAssertionFailure(const char* file, int line, cons argument
347 WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) argument
357 WTFReportError(const char* file, int line, const char* function, const char* format, ...) argument
378 WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) argument
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_proc_maps.cpp21 // components. |line| should be the address of a zero-terminated line
24 // IMPORTANT: On success, |entry->path| will point into the input line,
27 bool ParseProcMapsLine(const char* line, argument
51 const char* p = line;
78 // element on the line. This corresponds to anonymous memory
146 reader.line(), reader.line() + reader.length(), &entry)) {

Completed in 1801 milliseconds

<<21222324252627282930>>