HomeSort by relevance Sort by last modified time
    Searched full:line (Results 776 - 800 of 19614) sorted by null

<<31323334353637383940>>

  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_platform_backend.py 82 for line in self._adb.RunShellCommand('dumpsys meminfo', log_result=False):
83 if line.startswith('Total PSS: '):
84 return int(line.split()[2]) * 1024
98 for line in ps:
99 data = line.split()
104 for line in ps:
105 data = line.split()
115 for line in ps:
116 data = line.split()
121 raise Exception("Could not get command line for %d" % pid
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
utils.py 47 for line in f:
48 if line.startswith('#'): continue
49 if '#' in line:
50 line = line[:line.find('#')]
51 line = line.strip()
52 if not line: continue
53 lines.append(line)
    [all...]
  /external/clang/include/clang/Tooling/
CommonOptionsParser.h 11 // command-line options for clang tools, so that they can be run as separate
12 // command-line applications with a consistent common interface for handling
15 // It provides a common subset of command-line options, common algorithm
17 // for the basic command-line interface.
19 // It creates a CompilationDatabase and reads common command-line options.
34 /// \brief A parser for options common to all command-line Clang tools.
36 /// Parses a common subset of command-line arguments, locates and loads a
38 /// also contains a help message for the common command-line options.
63 /// \brief Parses command-line, initializes a compilation database.
65 /// command-line options used for creating FixedCompilationDatabase
    [all...]
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
unaligned_loads_and_stores.cc 26 // CHECK-A: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-2]]
29 // CHECK-B: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
31 // CHECK-C: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
33 // CHECK-D: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
35 // CHECK-E: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
39 // CHECK-K: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-2]]
42 // CHECK-L: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
44 // CHECK-M: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
46 // CHECK-N: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]]
48 // CHECK-O: main{{.*}}unaligned_loads_and_stores.cc:[[@LINE-1]
    [all...]
  /external/icu4c/layoutex/layout/
playout.h 38 * The opaque type for a line in a paragraph layout.
45 * The opaque type for a visual run in a line.
209 * Reset line breaking to start from the beginning of the paragraph.
219 * Return a <code>pl_line</code> object which represents next line
220 * in the paragraph. The width of the line is specified each time so that it can
224 * @param width is the width of the line. If <code>width</code> is less than or equal
225 * to zero, a <code>ParagraphLayout::Line</code> object representing the
228 * @return a <code>ParagraphLayout::Line</code> object which represents the line. The caller
240 * Close the given line object. Line objects are create
    [all...]
  /external/icu4c/test/intltest/
textfile.cpp 76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) {
102 // Remove BOM in first line, if present
107 line = str.unescape();
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
114 if (!readLine(line, ec)) return FALSE;
117 ICU_Utility::skipWhitespace(line, pos, TRUE);
119 if (pos == line.length() || line.charAt(pos) == 0x23/*'#'*/) {
122 // Process line
123 if (trim) line.remove(0, pos)
    [all...]
tokiter.h 32 * line, beginning with the first unquoted '#', are recognized.
46 * Return the one-based line number of the line of the last token
53 * Return a string description of the position of the last line
64 UnicodeString line; member in class:TokenIterator
  /external/libvorbis/vq/
make_floor_books.pl 16 while($line=<F>){
18 print "#### $line";
19 if($line=~m/^GO/){
25 if($line=~m/\S+/ && !($line=~m/^\#/) ){
26 my $command=$line;
36 if($line=~m/^>(\S+)\s+(\S*)/){
48 #set the search path for input files; each build line will look
51 if($line=~m/^=(.*)/){
58 if($line=~m/^build (.*)/)
    [all...]
  /external/markdown/docs/extensions/
CodeHilite.txt 43 If the first line of the codeblock contains a shebang, the language is derived
44 from that and line numbers are used.
57 If the first line contains a shebang, but the shebang line does not contain a
58 path (a single `/` or even a space), then that line is removed from the code
59 block before processing. Line numbers are used.
70 If the first line begins with three or more colons, the text following the
71 colons identifies the language. The first line is removed from the code block
72 before processing and line numbers are not used.
107 If you want every code block to have line numbers, even when using colons
    [all...]
  /external/ppp/pppd/plugins/radius/
radrealms.c 48 int line = 0; local
75 line++;
87 option_error("%s: invalid line %d: %s", radrealms_config,
88 line, buffer);
101 option_error("%s: realm name missing on line %d: %s",
102 radrealms_config, line, buffer);
111 option_error("%s: server address missing on line %d: %s",
112 radrealms_config, line, buffer);
119 option_error("%s: server port missing on line %d: %s",
120 radrealms_config, line, buffer)
    [all...]
  /external/qemu/android/
async-console.c 46 /* A helper function to prepare the line reader and switch to a new state */
102 case STATE_READ_BANNER_1: /* reading the first banner line */
108 /* Check that first line starts with "Android Console:",
110 const char* line = asyncLineReader_getLine(acc->lreader); local
111 if (line == NULL || memcmp(line, "Android Console:", 16)) {
114 /* ok, fine, prepare for the next banner line then */
120 case STATE_READ_BANNER_2: /* reading the second banner line */
126 const char* line = asyncLineReader_getLine(acc->lreader); local
127 if (line == NULL)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
codemirror.js 113 // Blinky cursor, and element used to ensure cursor fits at the end of a line
153 // Used to only resize the line number gutter when necessary (when
176 // Tracks the maximum line length so that the horizontal scrollbar
194 cm.doc.iter(function(line) {
195 if (line.stateAfter) line.stateAfter = null;
196 if (line.styles) line.styles = null;
221 return function(line) {
222 if (lineIsHidden(cm.doc, line))
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) {
39 this.line = line;
  /external/chromium_org/base/
sys_info_linux.cc 74 std::string line; local
75 while (std::getline(iss, line)) {
76 if (line.compare(0, strlen(kCpuModelPrefix), kCpuModelPrefix) == 0) {
77 size_t pos = line.find(": ");
78 return line.substr(pos + 2);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-complex-sea-machine.hh 2 #line 1 "hb-ot-shape-complex-sea-machine.rl"
35 #line 36 "hb-ot-shape-complex-sea-machine.hh.tmp"
92 #line 36 "hb-ot-shape-complex-sea-machine.rl"
96 #line 67 "hb-ot-shape-complex-sea-machine.rl"
116 #line 117 "hb-ot-shape-complex-sea-machine.hh.tmp"
124 #line 88 "hb-ot-shape-complex-sea-machine.rl"
133 #line 134 "hb-ot-shape-complex-sea-machine.hh.tmp"
144 #line 1 "NONE"
147 #line 148 "hb-ot-shape-complex-sea-machine.hh.tmp"
166 #line 1 "NONE
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.h 32 * line, beginning with the first unquoted '#', are recognized.
46 * Return the one-based line number of the line of the last token
53 * Return a string description of the position of the last line
64 UnicodeString line; member in class:TokenIterator
  /external/chromium_org/webkit/tools/layout_tests/
PRESUBMIT.py 38 is_error = lambda line: (input_api.re.match('^Line:', line) or
39 input_api.re.search('ERROR Line:', line))
  /external/clang/test/SemaCXX/
warn-empty-body.cpp 9 if (x); // expected-warning {{if statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
13 for (i = 0; i < x; i++); { // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
18 for (i = 0; i < x; i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
25 i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
31 for (int j : arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
35 arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
38 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
41 while (b() == 0); { // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
45 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
51 c() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh 2 #line 1 "hb-ot-shape-complex-sea-machine.rl"
35 #line 36 "hb-ot-shape-complex-sea-machine.hh.tmp"
92 #line 36 "hb-ot-shape-complex-sea-machine.rl"
96 #line 67 "hb-ot-shape-complex-sea-machine.rl"
116 #line 117 "hb-ot-shape-complex-sea-machine.hh.tmp"
124 #line 88 "hb-ot-shape-complex-sea-machine.rl"
133 #line 134 "hb-ot-shape-complex-sea-machine.hh.tmp"
144 #line 1 "NONE"
147 #line 148 "hb-ot-shape-complex-sea-machine.hh.tmp"
166 #line 1 "NONE
    [all...]
  /external/jpeg/
ansi2knr.1 15 character on the line, and with a left brace as the first token on the
16 following line (ignoring possible intervening comments). It will recognize a
17 multi-line header provided that no intervening line ends with a left or right
19 that the function name must be the first thing on the line.
  /external/llvm/test/DebugInfo/
dwarf-public-names.ll 92 !3 = metadata !{i32 786478, metadata !4, null, metadata !"member_function", metadata !"member_function", metadata !"_ZN1C15member_functionEv", i32 9, metadata !5, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, void (%struct.C*)* @_ZN1C15member_functionEv, null, metadata !12, metadata !1, i32 9} ; [ DW_TAG_subprogram ] [line 9] [def] [member_function]
94 !5 = metadata !{i32 786453, i32 0, metadata !"", i32 0, i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !6, i32 0, i32 0} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
96 !7 = metadata !{i32 786447, i32 0, metadata !"", i32 0, i32 0, i64 64, i64 64, i64 0, i32 1088, metadata !8} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from C]
97 !8 = metadata !{i32 786451, metadata !37, null, metadata !"C", i32 1, i64 8, i64 8, i32 0, i32 0, null, metadata !9, i32 0, null, null} ; [ DW_TAG_structure_type ] [C] [line 1, size 8, align 8, offset 0] [from ]
99 !10 = metadata !{i32 786445, metadata !37, metadata !8, metadata !"static_member_variable", i32 4, i64 0, i64 0, i64 0, i32 4096, metadata !11, null} ; [ DW_TAG_member ] [static_member_variable] [line 4, size 0, align 0, offset 0] [static] [from int]
100 !11 = metadata !{i32 786468, null, null, metadata !"int", i32 0, i64 32, i64 32, i64 0, i32 0, i32 5} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
101 !12 = metadata !{i32 786478, metadata !4, metadata !8, metadata !"member_function", metadata !"member_function", metadata !"_ZN1C15member_functionEv", i32 2, metadata !5, i1 false, i1 false, i32 0, i32 0, null, i32 256, i1 false, null, null, i32 0, metadata !13, i32 2} ; [ DW_TAG_subprogram ] [line 2] [member_function]
102 !13 = metadata !{i32 786468} ; [ DW_TAG_base_type ] [line 0, size 0, align 0, offset 0]
103 !14 = metadata !{i32 786478, metadata !4, metadata !8, metadata !"static_member_function", metadata !"static_member_function", metadata !"_ZN1C22static_member_functionEv", i32 3, metadata !15, i1 false, i1 false, i32 0, i32 0, null, i32 256, i1 false, null, null, i32 0, metadata !17, i32 3} ; [ DW_TAG_subprogram ] [line 3] [static_member_function]
104 !15 = metadata !{i32 786453, i32 0, metadata !"", i32 0, i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !16, i32 0, i32 0} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from
    [all...]
  /external/openfst/src/lib/
symbol-table.cc 33 // Maximum line length in textual symbols file.
48 char line[kLineLen]; local
49 while (strm.getline(line, kLineLen)) {
53 SplitToVector(line, separator.c_str(), &col, true);
54 if (col.size() == 0) // empty line
59 << "file = " << filename << ", line = " << nline
60 << ":<" << line << ">"; local
72 << "file = " << filename << ", line = " << nline;
103 ostringstream line; local
104 line << symbols_[key] << '\t' << key
112 ostringstream line; local
257 ostringstream line; local
    [all...]
  /external/proguard/src/proguard/classfile/editor/
LineNumberInfoAdder.java 28 * This LineNumberInfoVisitor adds all line numbers that it visits to the given
29 * target line number attribute.
38 * Creates a new LineNumberInfoAdder that will copy line numbers into the
39 * given target line number table.
51 // Create a new line number.
LocalVariableInfoAdder.java 28 * This LocalVariableInfoVisitor adds all line numbers that it visits to the given
29 * target line number attribute.
39 * Creates a new LocalVariableInfoAdder that will copy line numbers into the
40 * given target line number table.
54 // Create a new line number.
LocalVariableTypeInfoAdder.java 28 * This LocalVariableTypeInfoVisitor adds all line numbers that it visits to the given
29 * target line number attribute.
39 * Creates a new LocalVariableTypeInfoAdder that will copy line numbers into the
40 * given target line number table.
54 // Create a new line number.

Completed in 606 milliseconds

<<31323334353637383940>>