Searched refs:line (Results 51 - 75 of 3283) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Ddebug-info-line.c1 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s
5 #line 100
11 // CHECK: [[DBG_F1]] = !DILocation(line: 100,
/external/clang/test/CodeGenCXX/
H A Ddebug-info-line-if.cpp6 #line 100
14 // should be attributed to the loop header line.
20 #line 200
30 #line 300
40 #line 400
51 // CHECK-DAG: [[DBG1]] = !DILocation(line: 100, scope: !{{.*}})
52 // CHECK-DAG: [[DBG2]] = !DILocation(line: 200, scope: !{{.*}})
53 // CHECK-DAG: [[DBG3]] = !DILocation(line: 300, scope: !{{.*}})
54 // CHECK-DAG: [[DBG4]] = !DILocation(line: 401, scope: !{{.*}})
57 // CHECK-DAG: [[LDBG1]] = !DILocation(line
[all...]
H A Ddebug-info-line.cpp1 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -std=c++11 -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - -triple %itanium_abi_triple | FileCheck %s
2 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -std=c++11 -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - -triple i686-linux-gnu | FileCheck %s
13 #line 100
28 #line 200
41 #line 300
50 #line 400
57 #line 500
64 #line 600
77 #line 700
86 #line 80
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_dwarf_line.c1 /* Get information from a source line record returned by libdwfl.
33 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias) argument
35 if (line == NULL)
38 struct dwfl_cu *cu = dwfl_linecu (line);
39 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
/external/iproute2/include/iptables/
H A Dinternal.h11 extern int line;
/external/iptables/include/iptables/
H A Dinternal.h11 extern int line;
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
H A Ddirective_line.s4 .line
5 .line 1
/external/mockito/src/main/java/org/mockito/internal/configuration/plugins/
H A DPluginFileReader.java14 for(String line: IOUtil.readLines(input)) {
15 String stripped = stripCommentAndWhitespace(line);
23 private static String stripCommentAndWhitespace(String line) { argument
24 int hash = line.indexOf('#');
26 line = line.substring(0, hash);
28 return line.trim();
/external/autotest/tko/parsers/
H A Dversion_1_unittest.py18 line = version_1.status_line(0, 'START', '----', 'test',
20 self.assertEquals(line.type, 'START')
21 self.assertEquals(line.status, None)
26 line = version_1.status_line(0, 'INFO', '----', '----',
28 self.assertEquals(line.type, 'INFO')
29 self.assertEquals(line.status, None)
35 line = version_1.status_line(0, stat, '----', 'test',
37 self.assertEquals(line.type, 'STATUS')
38 self.assertEquals(line.status, stat)
44 line
[all...]
H A Dversion_0_unittest.py140 line = version_0.status_line(0, "START", "----", "test",
142 self.assertEquals(line.type, "START")
143 self.assertEquals(line.status, None)
154 line = version_0.status_line(0, stat, "----", "test",
156 self.assertEquals(line.type, "STATUS")
157 self.assertEquals(line.status, stat)
162 line = version_0.status_line(0, "END " + stat, "----",
164 self.assertEquals(line.type, "END")
165 self.assertEquals(line.status, stat)
177 line
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dread_file.c38 * Read file, passing each line to parse_line() for
48 char *def, *err, *line = NULL; local
65 line = realloc(line, size += (MAX_LINE + 1));
66 if(line == NULL)
70 err = fgets(line + total, MAX_LINE + 1, fd);
74 len = strlen(line + total);
77 if(len == MAX_LINE && line[total - 1] != '\n') {
78 /* line too large */
86 * Remove '\n' terminator if it exists (the last line
[all...]
/external/toybox/toys/other/
H A Dpmap.c32 char *line, *oldline = 0, *name = 0, local
40 line = readfile(toybuf, 0, 0);
41 if (!line) error_msg("No %lu", (long)pid);
42 xprintf("%u: %s\n", (int)pid, line);
43 free(line);
62 line = 0;
63 if (0 >= getline(&line, &len, fp)) break;
64 count = sscanf(line, "%llx-%llx %s %*s %*s %*s %n",
68 name = line[off] ? line
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
H A DLineImplTest.java26 private LineImpl line; field in class:LineImplTest
30 line = LineImpl.EMPTY;
35 assertEquals(CounterImpl.COUNTER_0_0, line.getInstructionCounter());
36 assertEquals(CounterImpl.COUNTER_0_0, line.getBranchCounter());
37 assertEquals(ICounter.EMPTY, line.getStatus());
42 line = line.increment(CounterImpl.getInstance(1, 2),
45 line.getInstructionCounter());
46 assertEquals(CounterImpl.getInstance(3, 4), line.getBranchCounter());
51 line
[all...]
/external/boringssl/src/crypto/
H A Dthread.c63 const char *file, int line)) {}
66 const char *file, int line) {
71 const char *file, int line)) {}
88 *dyn_create_function)(const char *file, int line)) {}
91 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)) {}
94 struct CRYPTO_dynlock_value *l, const char *file, int line)) {}
97 const char *file, int line) {
103 const char *file, int line) {
108 struct CRYPTO_dynlock_value *l, const char *file, int line) {
62 CRYPTO_set_locking_callback(void (*func)(int mode, int lock_num, const char *file, int line)) argument
70 CRYPTO_set_add_lock_callback(int (*func)(int *num, int mount, int lock_num, const char *file, int line)) argument
87 CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *( *dyn_create_function)(const char *file, int line)) argument
90 CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)( int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)) argument
93 CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)( struct CRYPTO_dynlock_value *l, const char *file, int line)) argument
/external/proguard/src/proguard/obfuscate/
H A DMappingReader.java59 String line = reader.readLine();
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, argument
113 int arrowIndex = line
140 processClassMemberMapping(String className, String line, MappingProcessor mappingProcessor) argument
[all...]
/external/toybox/scripts/
H A Dmktags.c14 char *line = 0, *s; local
17 len = getline(&line, &len, stdin);
19 while (len && isspace(line[len-1])) line[--len]=0;
21 // Very simple parser: If we haven't got a TAG then first line is TAG.
22 // Then look for { followed by "str" (must be on same line, may have
23 // more than one per line), for each one emit #define. Current TAG ended
24 // by ) at start of line.
27 if (!isalpha(*line)) {
28 fprintf(stderr, "bad tag %s\n", line);
[all...]
/external/valgrind/memcheck/tests/
H A Dclient-msg-as-xml.stderr.exp9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
42 <line>...</line>
[all...]
H A Dlong_namespace_xml.stderr.exp9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
43 <line>...</line>
[all...]
/external/libcups/cups/
H A Dmd5passwd.c36 char line[256]; /* Line to sum */ local
43 snprintf(line, sizeof(line), "%s:%s:%s", username, realm, passwd);
45 _cupsMD5Append(&state, (unsigned char *)line, (int)strlen(line));
70 char line[1024]; /* Line of data */ local
78 snprintf(line, sizeof(line), "%s:%s", method, resource);
80 _cupsMD5Append(&state, (unsigned char *)line, (int)strlen(line));
[all...]
/external/libpng/scripts/
H A Ddfn.awk13 # the variable 'out', which should be set on the command line.
27 print "out=output.file must be given on the command line"
64 # A definition line, apparently correctly formatted; extract the
70 # if the quotes aren't closed and must read another line. In this
72 # are introduced #line directives.
74 line=$0
78 if (sub(/^[^"]*PNG_DFN *"/,"",line) != 1) {
79 print "line", lineno ": processing failed:"
110 if (line ~ /@"/) {
111 if (line ~ /
[all...]
/external/tpm2/
H A Dparsep420 # get rid of heading line numbers and spaces.
24 for line in big_line.splitlines():
25 m = sec_num_in_comments.match(line)
27 line = line.replace(m.groups()[0], '')
28 postproc_buffer.append(line)
33 for line in source_lines:
34 text.append(line)
35 if line == '' and text[-2].startswith(' ') and text[-5] == '':
44 for line i
73 line = '//' + line variable
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCharStream.as45 /** ANTLR tracks the line information automatically */
46 function get line():int;
48 /** Because this stream can rewind, we need to be able to reset the line */
49 function set line(line:int):void;
53 /** The index of the character relative to the beginning of the line 0..n-1 */
/external/autotest/client/site_tests/security_Minijail0/src/
H A Dtest-caps19 while read line; do
20 if echo "$line" | grep -q '^CapEff:'; then
21 caps=$(echo "$line" | awk '{print $NF}')
/external/clang/
H A Dclang-version-inc.py23 for line in f:
24 line = line.strip() variable
26 line = line.replace(replace, to) variable
27 print line
/external/compiler-rt/lib/builtins/
H A Dint_util.c30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
37 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument

Completed in 728 milliseconds

1234567891011>>