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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-template-quals.cpp 18 // CHECK: [[P:.*]] = {{.*}}, metadata [[CON:![0-9]*]]} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from ]
19 // CHECK: [[CON]] = {{.*}}, metadata [[CH:![0-9]*]]} ; [ DW_TAG_const_type ] [line 0, size 0, align 0, offset 0] [from char]
20 // CHECK: [[CH]] = {{.*}} ; [ DW_TAG_base_type ] [char] [line 0, size 8, align 8, offset 0, enc DW_ATE_signed_char]
22 // CHECK: {{.*}} metadata [[TYPE:![0-9]*]], {{.*}}, metadata !{{[0-9]*}}, metadata !{{[0-9]*}}, i32 8} ; [ DW_TAG_subprogram ] [line 7] [def] [scope 8] [assign]
25 // CHECK: [[BS:.*]] = {{.*}} ; [ DW_TAG_structure_type ] [basic_string<char>] [line 4, size 8, align 8, offset 0] [def] [from ]
26 // CHECK: [[R]] = {{.*}}, metadata [[CON2:![0-9]*]]} ; [ DW_TAG_reference_type ] [line 0, size 0, align 0, offset 0] [from ]
27 // CHECK: [[CON2]] = {{.*}}, metadata [[BS]]} ; [ DW_TAG_const_type ] [line 0, size 0, align 0, offset 0] [from basic_string<char>]
linetable-cleanup.cpp 3 // Check the line numbers for cleanup code with EH in combination with
27 // CHECK: ![[CLEANUP]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
29 // CHECK: ![[RET]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
35 // CHECK: {{.*}} = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
42 // Clang creates only a single ret instruction. Make sure it is at a useful line.
43 // CHECK: ![[RETBAR]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
49 // CHECK: {{.*}} = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
54 // CHECK: {{.*}} = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
57 // CHECK: ![[RETBAZ]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
  /external/clang/test/Rewriter/
line-generation-test.m 3 // RUN: FileCheck -check-prefix LINE --input-file=%t-rw.cpp %s
36 // CHECK-LINE: #line 22
37 // CHECK-LINE: #line 28
38 // CHECK-NOLINE-NOT: #line 22
39 // CHECK-NOLINE-NOT: #line 28
  /external/icu4c/layoutex/
playout.cpp 143 pl_closeLine(pl_line *line)
145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
151 pl_countLineRuns(const pl_line *line)
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
163 pl_getLineAscent(const pl_line *line)
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 43 String line; local
44 while ((line = lineReader.readLine()) != null) {
45 parseLine(line, output, context, lineReader, dataFileName, errorHandler);
49 private void parseLine(String line, Data output, List<String> context,
52 line = stripComment(line);
55 if ((split = split(line, "=")) != null) {
58 } else if ((split = split(line, "<<")) != null) {
64 } else if ((split = split(line, "{")) != null) {
68 } else if (split(line, "}") != null)
78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax"); local
98 String line; local
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 59 String line = reader.readLine(); local
61 if (line == null)
66 line = line.trim();
70 if (line.endsWith(":"))
74 className = processClassMapping(line, mappingProcessor);
80 processClassMemberMapping(className, line, mappingProcessor);
103 * Parses the given line with a class mapping and processes the
107 private String processClassMapping(String line,
113 int arrowIndex = line.indexOf("->")
    [all...]
  /external/qemu/android/utils/
lineinput.c 18 char* line; member in struct:LineInput
31 /* Error codes returned by the internal line reading function(s) */
44 input->line = input->line0;
60 /* Grow the line buffer a bit */
64 char* line; local
67 line = input->line;
68 if (line == input->line0)
69 line = NULL;
71 AARRAY_RENEW(line, input->line_size)
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_sock_util.c 69 #define asrt(s) if(!(s)) BTIF_TRACE_ERROR3("## %s assert %s failed at line:%d ##",__FUNCTION__, #s, __LINE__)
188 char *line; local
195 line = line_buff;
196 *line++ = ' ';
197 *line++ = ' ';
198 *line++ = ' ';
199 *line++ = ' ';
200 *line++ = ' ';
201 *line++ = ' ';
204 byte2hex((const char*)&j, &line);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroroutput.py 26 """Get a output line for an error in UNIX format."""
28 line = ''
31 line = '%d' % error.token.line_number
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
40 """Get a output line for an error in regular format."""
42 line = ''
44 line = 'Line %d, ' % error.token.line_number
52 return '%s%s: %s' % (line, code, error.message)
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
erroroutput.py 26 """Get a output line for an error in UNIX format."""
28 line = ''
31 line = '%d' % error.token.line_number
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
40 """Get a output line for an error in regular format."""
42 line = ''
44 line = 'Line %d, ' % error.token.line_number
52 return '%s%s: %s' % (line, code, error.message)
  /external/chromium_org/third_party/icu/source/test/intltest/
textfile.h 33 * Read a line terminated by ^J or ^M or ^M^J, and convert it from
35 * included in 'line'.
36 * @return TRUE if a line was read, or FALSE if the EOF
39 UBool readLine(UnicodeString& line, UErrorCode& ec);
42 * Read a line, ignoring blank lines and lines that start with
45 * @return TRUE if a line was read, or FALSE if the EOF
48 UBool readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
52 * Return the line number of the last line returned by readLine().
  /external/icu4c/test/intltest/
textfile.h 33 * Read a line terminated by ^J or ^M or ^M^J, and convert it from
35 * included in 'line'.
36 * @return TRUE if a line was read, or FALSE if the EOF
39 UBool readLine(UnicodeString& line, UErrorCode& ec);
42 * Read a line, ignoring blank lines and lines that start with
45 * @return TRUE if a line was read, or FALSE if the EOF
48 UBool readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
52 * Return the line number of the last line returned by readLine().
  /external/qemu/
gen-skin.py 45 line = " "
50 line = line + ","
54 print line
55 line = " "
58 line = line + "%3d" % d
65 if len(line) > 0:
66 print line
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 77 String line = reader.readLine(); local
78 while (line != null) {
79 checkBuildLine(line);
80 line = reader.readLine();
149 private static class Line {
150 private final String line; field in class:NdkDiscoveryUpdater.Line
153 public Line(String line) {
154 this.line = line;
209 Line line = new Line(text); local
264 String line = reader.readLine(); local
294 String line = reader.readLine(); local
    [all...]
  /development/tools/findunused/
removeunusedresources 26 read LINE NUM
27 while [ "$LINE" != "" ]
29 if [ "Z$LINE" = "Z-----------------------------------------------------------" ]
33 elif [ "$LINE" = "$app" ]
39 find res | grep -w $LINE | {
48 echo WARNING unexpected result for $LINE
53 grep -Rwl $LINE res | {
60 echo REMOVING STRING $LINE from $RESLINE
61 xmlstarlet ed -P -S -d "/resources/string[@name='$LINE']" $RESLINE > tf$$
65 echo REMOVING $LINE from $RESLIN
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CharStreamState.pm 12 # What line number is the scanner at before processing buffer[p]?
13 has 'line' => (
19 # What char position 0..n-1 in line is scanner before processing buffer[p]?
  /external/chromium_org/chrome/browser/chromeos/login/
chrome_restart_request.h 15 // Returns the command line string to be used for the OTR process. Also modifies
16 // the given command line.
22 // Request session manager to restart chrome with a new command line.
  /external/chromium_org/tools/gyp/test/win/
gyptest-long-command-line.py 19 CHDIR = 'long-command-line'
20 test.run_gyp('long-command-line.gyp', chdir=CHDIR)
21 test.build('long-command-line.gyp', test.ALL, chdir=CHDIR)
  /external/chromium_org/tools/valgrind/
gdb_helper.py 12 GDB_LINE_RE = re.compile(r'Line ([0-9]*) of "([^"]*)".*')
15 ''' Parse the gdb output line, return a pair (file, line num) '''
23 ''' For each address, return a pair (file, line num) '''
27 commands.write('info line *%s\n' % addr)
36 for line in result:
37 if line.startswith('Line'):
38 ret[address_list[address_count]] = _GdbOutputToFileLine(line)
40 if line.startswith('No line')
    [all...]
  /external/chromium_org/ui/base/models/
menu_separator_types.h 12 // Normal - top to bottom: Spacing, line, spacing
15 // Upper - top to bottom: Line, spacing
18 // Lower - top to bottom: Spacing, line
  /external/clang/include/clang/Tooling/
ArgumentsAdjusters.h 1 //===--- ArgumentsAdjusters.h - Command line arguments adjuster -*- C++ -*-===//
11 // These classes are intended to modify command line arguments obtained from
26 /// \brief A sequence of command line arguments.
29 /// \brief Abstract interface for a command line adjusters.
31 /// This abstract interface describes a command line argument adjuster,
32 /// which is responsible for command line arguments modification before
37 /// \brief Returns adjusted command line arguments.
39 /// \param Args Input sequence of command line arguments.
41 /// \returns Modified sequence of command line arguments.
47 /// \brief Syntax check only command line adjuster
    [all...]
  /external/clang/test/CodeGen/
debug-info-block-decl.c 2 // Assignment and block entry should point to the same line.
12 // CHECK: [[ASSIGNMENT]] = metadata !{i32 [[@LINE+2]],
13 // CHECK: [[BLOCK_ENTRY]] = metadata !{i32 [[@LINE+1]],
  /external/clang/test/
make_test_dirs.pl 9 while ($line = <STDIN>) {
10 $line =~ /^\s*/;
12 if ($line =~ /\[([^\]]*)\]/) {
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 4 def cut_comment(line):
5 first_hash = line.find('#')
7 return line
8 return line[:first_hash]
12 def line_split(line):
13 '''Split a line based on a semicolon separator.'''
16 return [normalise(x) for x in line.split(';')]
36 for line in tokens:
37 if len(line) == 2:
38 codepoints = codepoints_parse(line[0]
    [all...]
  /external/valgrind/main/drd/tests/
annotate_trace_memory_xml.stderr.exp-32bit 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
40 <line>...</line>
    [all...]

Completed in 647 milliseconds

1 2 3 4 5 6 7 8 91011>>