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

1 2 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 9 private String line; field in class:Statement
12 Statement(int lineNumber, String line) {
14 this.line = line;
29 return line;
43 sb.append(line);
  /external/llvm/utils/lint/
common_lint.py 14 max_length: maximum acceptable line length as number
17 A list of tuples with format [(filename, line number, msg), ...] with any
22 for line in lines:
23 length = len(line.rstrip('\n'))
26 'Line exceeds %d chars (%d)' % (max_length, length)))
44 for line in lines:
45 if tab_re.match(line.rstrip('\n')):
59 A list of tuples with format [(filename, line number, msg), ...] with any
65 for line in lines:
66 if trailing_whitespace_re.match(line.rstrip('\n'))
    [all...]
  /external/llvm/utils/
test_debuginfo.pl 27 # at the beginnign of a comment line.
31 my($line) = $_;
32 $i = index($line, "DEBUGGER:");
35 $s = substr($line, $i + $l);
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stdoutB.exp 1 Breakpoint 1 at 0x........: file clean_after_fork.c, line 9.
2 Breakpoint 2 at 0x........: file clean_after_fork.c, line 20.
3 Breakpoint 3 at 0x........: file clean_after_fork.c, line 22.
  /external/webkit/LayoutTests/fast/js/resources/
script-line-number.js 2 "This test checks that line numbers are correctly reported for both inline scripts and inline event handlers."
8 if (e.line)
9 return e.line;
  /frameworks/av/media/libstagefright/rtsp/
ASessionDescription.cpp 65 AString line; local
67 // We accept both '\n' and '\r\n' line endings, if it's
69 line.setTo(desc, i, eolPos - i - 1);
71 line.setTo(desc, i, eolPos - i);
74 if (line.empty()) {
79 if (line.size() < 2 || line.c_str()[1] != '=') {
83 ALOGI("%s", line.c_str());
85 switch (line.c_str()[0]) {
88 if (strcmp(line.c_str(), "v=0"))
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_DebugMem.h 16 const char* file, const char* func, int line);
18 const char* file, const char* func, int line);
20 const char* file, const char* func, int line);
22 const char* file, const char* func, int line);
24 const char* file, const char* func, int line);
26 void OMX_DebugMem_dump(const char *file, const char *func, int line);
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_DebugMem.h 40 const char* file, const char* func, int line);
42 const char* file, const char* func, int line);
44 const char* file, const char* func, int line);
46 const char* file, const char* func, int line);
48 const char* file, const char* func, int line);
50 void OMX_DebugMem_dump(const char *file, const char *func, int line);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c 109 Word32 line; local
122 for (line=0; line<noOfLines; line++) {
126 mdctSpeL = mdctSpectrum[line];
165 quaSpectrum[line] = qua ;
170 for (line=0; line<noOfLines; line++) {
174 mdctSpeL = mdctSpectrum[line];
235 Word32 line; local
331 Word32 line; local
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 119 * offset, or return false if the cursor is already on the top line.
137 int line = layout.getLineForOffset(end); local
139 if (line > 0) {
142 if (layout.getParagraphDirection(line) ==
143 layout.getParagraphDirection(line - 1)) {
145 move = layout.getOffsetForHorizontal(line - 1, h);
147 move = layout.getLineStart(line - 1);
160 * offset, or return false if the cursor is already on the bottom line.
178 int line = layout.getLineForOffset(end); local
180 if (line < layout.getLineCount() - 1)
254 int line = layout.getLineForOffset(end); local
283 int line = layout.getLineForOffset(end); local
400 int line = layout.getLineForOffset(pt); local
448 int line = layout.getLineForOffset(off1); local
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ManifestParser.cpp 66 // Skip to the end of the line.
80 // Find the end of the line
93 String line(lineStart, tmp - lineStart + 1);
95 if (line == "CACHE:")
97 else if (line == "FALLBACK:")
99 else if (line == "NETWORK:")
101 else if (line.endsWith(":"))
106 const UChar* p = line.characters();
107 const UChar* lineEnd = p + line.length();
113 if (mode == OnlineWhitelist && p - line.characters() == 1 && *line.characters() == '*')
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
AbstractPropertiesFieldsPart.java 163 String line = doc.get(info.getOffset(), info.getLength()); local
164 line = line.trim();
165 if (line.startsWith("#")) { //$NON-NLS-1$
169 int pos = line.indexOf('=');
170 if (pos > 0 && pos < line.length() - 1) {
171 String key = line.substring(0, pos).trim();
176 // This is the new line to inject
177 line = key + "=" + getFieldText(field);
180 // replace old line by new one. This doesn't change th
183 doc.replace(info.getOffset(), info.getLength(), line); local
201 String line = key + "=" + getFieldText(field); local
212 doc.replace(info.getOffset(), info.getLength(), line); local
278 String line = doc.get(info.getOffset(), info.getLength()); local
    [all...]
  /bootable/recovery/tools/ota/
check-lost+found.c 126 char *saveptr, *line; local
128 for (line = strtok_r(dmesg, "\n", &saveptr); line != NULL;
129 line = strtok_r(NULL, "\n", &saveptr)) {
130 if (strstr(line, "yaffs: dev is")) in_yaffs = 1;
133 strstr(line, "yaffs") ||
134 strstr(line, "mtd") ||
135 strstr(line, "msm_nand")) {
136 fprintf(out, "%s\n", line);
139 if (strstr(line, "yaffs_read_super: isCheckpointed")) in_yaffs = 0
    [all...]
  /external/dbus/dbus/
dbus-auth-script.c 248 DBusString line; local
266 if (!_dbus_string_init (&line))
275 _dbus_string_free (&line);
290 while (_dbus_string_pop_line (&file, &line))
294 /* _dbus_warn ("%s\n", _dbus_string_get_const_data (&line)); */
296 _dbus_string_delete_leading_blanks (&line);
315 if (_dbus_string_get_length (&line) == 0)
317 /* empty line */
320 else if (_dbus_string_starts_with_c_str (&line,
327 else if (_dbus_string_starts_with_c_str (&line,
    [all...]
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_csspropertynames.py 121 for line in inFile:
122 line = line.rstrip()
123 if line.startswith('#'):
124 line = ''
125 if line == '':
127 if line in lineDict:
128 raise KeyError, 'Duplicate value %s' % line
129 lineDict[line] = True
130 print >>merged, line
    [all...]
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 92 while(defined ($line=<$inFH>)){
93 next unless $line=~ /Start\sTable/;
94 if($line =~ /A.1/){
97 if($line =~ /B.1/ && defined $b1){
100 if($line =~ /B.2/ && defined $b2){
103 if($line =~ /B.3/ && defined $b3){
106 if($line =~ /C.1.1/ && defined $c11 ){
107 createProhibitedTable($inFH,$outfile,$line);
109 if($line =~ /C.1.2/ && defined $c12 ){
110 createProhibitedTable($inFH,$outfile,$line);
    [all...]
  /external/clang/tools/libclang/
CXSourceLocation.cpp 121 unsigned line,
130 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
134 << "\", " << line << ", " << column << ") = invalid\n";
140 << "\", " << line << ", " << column << ") = "
170 static void createNullLocation(CXFile *file, unsigned *line,
174 if (line)
175 *line = 0;
183 static void createNullLocation(CXString *filename, unsigned *line,
187 if (line)
188 *line = 0
    [all...]
  /development/testrunner/
am_instrument_parser.py 48 for line in result.splitlines():
49 result_block_string += line + '\n'
51 if "INSTRUMENTATION_STATUS_CODE:" in line:
60 if "INSTRUMENTATION_CODE:" in line:
90 for line in result.split('\n'):
91 line = line.strip(string.whitespace)
92 if re_result.match(line):
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace
    [all...]
  /external/bluetooth/glib/tests/
unicode-normalize.c 62 test_form (int line,
82 fprintf (stderr, "\nFailure: %d/%d: %s\n", line, i + 1, raw[5]);
100 fprintf (stderr, "\nFailure: %d/%d: %s\n", line, i, raw[5]);
113 process_one (int line, gchar **columns)
128 test_form (line, G_NORMALIZE_NFD, FALSE, 2, c, columns);
129 test_form (line, G_NORMALIZE_NFD, TRUE, 4, c, columns);
130 test_form (line, G_NORMALIZE_NFC, FALSE, 1, c, columns);
131 test_form (line, G_NORMALIZE_NFC, TRUE, 3, c, columns);
132 test_form (line, G_NORMALIZE_NFKD, TRUE, 4, c, columns);
133 test_form (line, G_NORMALIZE_NFKC, TRUE, 3, c, columns)
148 int line = 1; local
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 31 * @param line 0-terminated ASCII string
34 * Attempt to parse the string @line for map information
43 static int opd_add_ascii_map(struct opd_proc * proc, char const * line,
48 char const * cp = line;
59 if (sscanf(line, "%lx-%lx", &start, &end) != 2)
96 char * line; local
120 line = op_get_line(fp);
121 if (!line)
124 opd_add_ascii_map(proc, line, image_name);
125 free(line);
168 char * line; local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-fasta.js 61 var line = new Array(60);
64 if (n<line.length) line = new Array(n);
65 for (var i=0; i<line.length; i++) {
69 line[i] = c;
74 ret = line.join('');
75 n -= line.length;
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-fasta.js 61 var line = new Array(60);
64 if (n<line.length) line = new Array(n);
65 for (var i=0; i<line.length; i++) {
69 line[i] = c;
74 ret = line.join('');
75 n -= line.length;
  /bionic/libc/bionic/
malloc_debug_check_mapinfo.c 40 static mapinfo *parse_maps_line(char *line)
43 int len = strlen(line);
46 line[--len] = 0;
49 if(line[20] != 'x') return 0;
54 mi->start = strtoul(line, 0, 16);
55 mi->end = strtoul(line + 9, 0, 16);
60 strcpy(mi->name, line + 49);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
properties.rb 24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
38 line.should == 1
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
48 line.should == 1
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
59 line.should == 2
  /external/chromium/net/disk_cache/
trace.cc 119 char line[kEntrySize + 2]; local
126 memcpy(line, s_trace_buffer->buffer[current], kEntrySize);
127 line[kEntrySize] = '\0';
128 size_t length = strlen(line);
130 line[length] = '\n';
131 line[length + 1] = '\0';
132 DebugOutput(line);

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>