HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 201 - 225 of 486) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 108 bool up(unsigned lines = 1);
109 bool down(unsigned lines = 1);
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 147 lines = [self._wrap_line(line) for line in message.splitlines()]
148 return "\n".join(lines)
  /external/webkit/Tools/Scripts/webkitpy/style/
filereader_unittest.py 56 def process(self, lines, file_path, test_kwarg=None):
57 self.processed.append((lines, file_path, test_kwarg))
checker.py 634 """The base class for processors of lists of lines."""
640 the lines of a file. Use this method, for example, to prevent
646 def process(self, lines, file_path, **kwargs):
647 """Process lines of text read from a file.
650 lines: A list of lines of text to process.
651 file_path: The path from which the lines were read.
657 the line numbers of the lines for which style errors
729 def process(self, lines, file_path, line_numbers=None):
730 """Check the given lines for style
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ApkInstallManager.java 88 public void processNewLines(String[] lines) {
91 for (String line : lines) {
  /external/clang/test/Analysis/
misc-ps.c 70 unsigned actual_base, lines; local
  /external/elfutils/libdw/
libdw_findcu.c 139 newp->lines = NULL;
  /external/emma/
test.sh 127 echo Tests failed: Additional or missing lines: See $TESTDIR/diff-sorted
131 echo Tests failed: same lines, different order: See $TESTDIR/diff-ordered
  /external/icu4c/tools/ctestfw/unicode/
uperf.h 156 ULine* lines; member in class:UPerfTest
  /external/v8/tools/
presubmit.py 329 lines = []
335 lines.append(str(line))
336 linenumbers = ', '.join(lines)
337 if len(lines) > 1:
338 print "%s has trailing whitespaces in lines %s." % (name, linenumbers)
ll_prof.py 137 # Get a list of disassembled lines and their addresses.
138 lines = self._GetDisasmLines(arch, options)
139 if len(lines) == 0:
141 # Print annotated lines.
142 address = lines[0][0]
144 for i in xrange(len(lines)):
145 start_offset = lines[i][0] - address
146 if i == len(lines) - 1:
149 end_offset = lines[i + 1][0] - address
162 print "%15.2f %x: %s" % (count, lines[i][0], lines[i][1]
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLViewSourceDocument.cpp 243 Vector<String> lines;
244 text.split('\n', true, lines);
245 unsigned size = lines.size();
247 String substring = lines[i];
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorModel.js 142 _replaceTabsIfNeeded: function(lines)
147 for (var i = 0; i < lines.length; ++i) {
148 var line = lines[i];
154 lines[i] = line;
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
ModelInterpreter.java 550 List<String> lines; local
552 lines = simulatedCallState.getClccLines();
554 for (int i = 0, s = lines.size() ; i < s ; i++) {
555 println (lines.get(i));
  /frameworks/base/tests/DumpRenderTree/assets/
run_layout_tests.py 40 """Compute the number of lines in a given file.
47 lines = 0
49 lines = lines + 1
51 return lines
75 # Read lines from each file
83 # Strip reason from result lines
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 254 * @param lines The output to parse.
258 private boolean parseAidlOutput(ArrayList<String> lines, IFile file) {
260 if (lines.size() == 0) {
266 for (int i = 0; i < lines.size(); i++) {
267 String p = lines.get(i);
  /external/bison/data/
location.cc 65 /// (line related) Advance to the COUNT next lines.
66 inline void lines (int count = 1)
190 /// Extend the current location to the COUNT next lines.
191 inline void lines (unsigned int count = 1)
193 end.lines (count);
  /external/elfutils/libdwfl/
libdwflP.h 201 struct Dwfl_Lines *lines; member in struct:dwfl_cu
213 match those in libdw's Dwarf_CU.lines->info table. */
216 unsigned int idx; /* My index in the dwfl_cu.lines table. */
223 const struct Dwfl_Lines *lines = ((const void *) line local
226 return lines->cu;
283 /* Ensure that CU->lines (and CU->cu->lines) is set up. */
  /external/mdnsresponder/mDNSPosix/
parselog.py 75 lines = f.readlines(100000)
76 if not lines:
78 for line in lines:
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
addinterface.cpp 85 QStringList lines = ifaces.split(QRegExp("\\n")); local
86 for (QStringList::Iterator it = lines.begin();
87 it != lines.end(); it++) {
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
addinterface.cpp 79 QStringList lines = ifaces.split(QRegExp("\\n")); local
80 for (QStringList::Iterator it = lines.begin();
81 it != lines.end(); it++) {
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py 244 def process_file_data(self, filename, file_extension, lines, error, unit_test_config={}):
246 return cpp_style.process_file_data(filename, file_extension, lines,
251 lines = code.split('\n')
253 self.process_file_data(filename, extension, lines, error_collector, unit_test_config)
265 # Perform lint over multiple lines and return the error message.
331 def assert_blank_lines_check(self, lines, start_errors, end_errors):
333 self.process_file_data('foo.cpp', 'cpp', lines, error_collector)
355 def perform_function_detection(self, lines, function_information, detection_line=0):
356 clean_lines = cpp_style.CleansedLines(lines)
626 lines = ['a', 'b', '/* c'
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 1030 const CvMat* fmatrix, CvMat* lines )
    [all...]
  /external/chromium/net/http/
http_response_headers_unittest.cc 922 std::string name, value, lines; local
926 lines.append(name);
927 lines.append(": ");
928 lines.append(value);
929 lines.append("\n");
932 EXPECT_EQ(std::string(tests[i].expected_lines), lines); local
    [all...]
  /external/libvpx/examples/includes/geshi/
geshi.php 76 /** Use a pre to wrap lines when line numbers are enabled or to wrap the whole code. */
407 * Lines that should be highlighted extra
413 * Styles of lines that should be highlighted extra
419 * Styles of extra-highlighted lines
469 * Line number styles for fancy lines
870 * For fancy line numbers, the second parameter is used to signal which lines
875 * @param int Defines which lines are fancy
889 * span over multiple lines or not. Defaults to true to reduce overhead.
1697 $lines = intval($lines); variable
2977 $lines = explode("\\n", $result); variable
    [all...]

Completed in 434 milliseconds

1 2 3 4 5 6 7 891011>>