/external/clang/test/Format/ |
multiple-inputs-error.cpp | 4 // RUN: not clang-format 2>&1 >/dev/null -lines=1:1 %t-1.cpp %t-2.cpp |FileCheck %s -check-prefix=CHECK-LINE 5 // CHECK: error: -offset, -length and -lines can only be used for single file. 6 // CHECK-LINE: error: -offset, -length and -lines can only be used for single file.
|
line-ranges.cpp | 2 // RUN: clang-format -style=LLVM -lines=1:1 -lines=5:5 -i %t.cpp
|
/external/llvm/test/CodeGen/X86/ |
2007-11-04-LiveVariablesBug.ll | 7 %lines = alloca i32 ; <i32*> [#uses=2] 11 store i32 %tmp12, i32* %lines, align 4 14 i32* %lines, i64 256, i64* %p1, i64* %p2, i32 %tmp12 ) ; <i64*> [#uses=0]
|
/external/mdnsresponder/mDNSPosix/ |
Services.txt | 4 # Lines beginning with '#' are comments/ignored. 5 # Blank lines indicate the end of a service record specification. 18 # <One or more blank lines between records>
|
/external/toybox/toys/other/ |
tac.c | 1 /* tac.c - output lines in reverse order 13 Output lines in reverse order. 23 // Read in lines
|
/external/elfutils/src/libdwfl/ |
dwfl_module_getsrc.c | 45 Dwarf_Lines *lines = cu->die.cu->lines; local 46 size_t nlines = lines->nlines; 50 assert(lines->info[nlines - 1].end_sequence); 55 /* The lines are sorted by address, so we can use binary search. */ 60 Dwarf_Line *line = &lines->info[idx]; 69 Dwarf_Line *line = &lines->info[l]; 72 return &cu->lines->idx[l];
|
dwfl_onesrcline.c | 1 /* Return one of the sources lines of a CU. 39 if (cu->lines == NULL) 49 if (idx >= cu->die.cu->lines->nlines) 55 return &cu->lines->idx[idx];
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
asciiTable.py | 21 lines = strjoin(content).replace("\r", "\n").split("\n") 22 self.data = tobytes("\r".join(lines[1:-1]))
|
/external/harfbuzz_ng/util/ |
view-cairo.hh | 40 lines (0), scale_bits (0) {} 48 lines = g_array_new (false, false, sizeof (helper_cairo_line_t)); 75 g_array_append_val (lines, l); 81 for (unsigned int i = 0; i < lines->len; i++) { 82 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); 86 g_array_unref (lines); 88 g_array_free (lines, TRUE); 102 GArray *lines; member in struct:view_cairo_t
|
/external/llvm/utils/lint/ |
cpp_lint.py | 13 def VerifyIncludes(filename, lines): 19 lines: contents of the file as string array 34 for line in lines: 76 def RunOnFile(self, filename, lines): 78 lint.extend(VerifyIncludes(filename, lines)) 79 lint.extend(common_lint.VerifyLineLength(filename, lines, 81 lint.extend(common_lint.VerifyTabs(filename, lines)) 82 lint.extend(common_lint.VerifyTrailingWhitespace(filename, lines))
|
/external/llvm/utils/ |
sort_includes.py | 3 """Script to sort the top-most block of #include lines. 15 """Sort the #include lines of a specific file.""" 25 lines = f.readlines() 34 for (i, l) in enumerate(lines): 72 lines = lines[:headers_begin] + header_lines + lines[headers_end + 1:] 76 f.writelines(lines)
|
/external/valgrind/drd/tests/ |
filter_annotate_barrier_xml | 3 # Remove the three lines after "<fn>start_thread</fn>" if these start with 4 # "<dir>...</dir>" since these last three lines are not generated on all
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 31 # result 3: just strip blank lines 37 # result 4: default, strip comments, blank lines, 42 # result 5: strip comments and blanks, plus join lines (but don't 43 # "collapse" joined lines 46 # result 6: strip comments and blanks, plus join lines (and 47 # "collapse" joined lines 92 test_input(5, "join lines without collapsing", in_file, result5) 99 test_input(6, "join lines with collapsing", in_file, result6)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 31 # result 3: just strip blank lines 37 # result 4: default, strip comments, blank lines, 42 # result 5: strip comments and blanks, plus join lines (but don't 43 # "collapse" joined lines 46 # result 6: strip comments and blanks, plus join lines (and 47 # "collapse" joined lines 92 test_input(5, "join lines without collapsing", in_file, result5) 99 test_input(6, "join lines with collapsing", in_file, result6)
|
/external/boringssl/src/util/ |
doc.go | 80 func extractComment(lines []string, lineNo int) (comment []string, rest []string, restLineNo int, err error) { 81 if len(lines) == 0 { 82 return nil, lines, lineNo, nil 86 rest = lines 118 /* Identing the lines of a paragraph marks them as 142 func extractDecl(lines []string, lineNo int) (decl string, rest []string, restLineNo int, err error) { 143 if len(lines) == 0 { 144 return "", lines, lineNo, nil 147 rest = lines 256 var lines, oldLines []strin [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/ |
write.py | 153 lines = [] 160 lines.append('') 161 lines.append('') 164 lines.append(line) 165 lines.append('~' * len(line)) 168 lines.append('') 169 lines.append('.. rst-class:: benchmark') 170 lines.append('') 175 lines.append(separator()) 176 lines.append('|'.join([''] + [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/ |
write.py | 156 lines = [] 163 lines.append('') 164 lines.append('') 167 lines.append(line) 168 lines.append('~' * len(line)) 171 lines.append('') 172 lines.append('.. rst-class:: benchmark') 173 lines.append('') 178 lines.append(separator()) 179 lines.append('|'.join([''] + [all...] |
/external/clang/lib/Format/ |
BreakableToken.cpp | 258 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n"); 261 LeadingWhitespace.resize(Lines.size()); 262 StartOfLineColumn.resize(Lines.size()); 264 for (size_t i = 1; i < Lines.size(); ++i) 268 if (Lines.size() == 1 && !FirstInLine) { 271 // lines with the first one. 276 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) { 278 if (i + 1 == e && Lines[i].empty()) 280 while (!Lines[i].startswith(Decoration)) 286 for (size_t i = 1; i < Lines.size(); ++i) [all...] |
/external/chromium-trace/trace-viewer/third_party/Paste/tests/ |
test_grantip.py | 7 lines = [ 13 lines = [line.encode('utf8') for line in lines] 14 return lines
|
/external/markdown/MarkdownTest/Tests_2007/ |
Code Blocks.html | 11 <pre><code>the lines in this block
|
/external/markdown/tests/misc/ |
lists5.html | 3 With just two lines</p>
|
/external/mesa3d/src/glsl/glcpp/tests/ |
063-comments.c | 10 multiple lines and
|
/external/pcre/dist/testdata/ |
greplist | 2 lines because they will match everything! This is no longer true, so have one.
|
/external/svox/pico/tests/data/ |
xsampa_pico_man_README.txt | 18 - the lines used in the test are between the lines marked "BEGIN_TEST" and "END_TEST", 19 - lines that start with "#" are not spoken. 21 run the test, i.e. play all valid test lines in the test file. Copy the test files to the
|
/external/valgrind/cachegrind/tests/ |
filter_stderr | 10 # Remove numbers from I/D/LL "refs:" lines 13 # Remove numbers from I1/D1/LL/LLi/LLd "misses:" and "miss rates:" lines 16 # Remove CPUID warnings lines for P4s and other machines 18 sed "/Simulating a 16 KB I-cache with 32 B lines/d" |
|