HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 426 - 450 of 5407) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug_memory.c 58 unsigned line; member in struct:debug_memory_header
110 debug_malloc(const char *file, unsigned line, const char *function,
119 file, line, function,
126 hdr->line = line;
146 debug_free(const char *file, unsigned line, const char *function,
158 file, line, function,
167 hdr->file, hdr->line, hdr->function,
182 debug_calloc(const char *file, unsigned line, const char *function,
185 void *ptr = debug_malloc( file, line, function, count * size )
    [all...]
  /external/chromium_org/v8/src/
checks.h 35 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);
66 inline void CheckEqualsHelper(const char* file, int line,
70 V8_Fatal(file, line,
79 inline void CheckEqualsHelper(const char* file, int line,
87 V8_Fatal(file, line,
102 int line,
108 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i",
117 int line,
125 V8_Fatal(file, line,
133 int line,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_memory.c 58 unsigned line; member in struct:debug_memory_header
110 debug_malloc(const char *file, unsigned line, const char *function,
119 file, line, function,
126 hdr->line = line;
146 debug_free(const char *file, unsigned line, const char *function,
158 file, line, function,
167 hdr->file, hdr->line, hdr->function,
182 debug_calloc(const char *file, unsigned line, const char *function,
185 void *ptr = debug_malloc( file, line, function, count * size )
    [all...]
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.h 433 const char *file, int line,
436 const char *file, int line,
439 const char *file, int line,
442 const char *file, int line,
445 const char *file, int line, const volatile void *barrier, long count,
448 const char *file, int line,
451 const char *file, int line,
454 const char *file, int line,
457 const char *file, int line, const volatile void *cv,
460 const char *file, int line,
    [all...]
  /external/chromium_org/chrome/utility/importer/
bookmark_html_reader.cc 112 std::string line; local
113 base::TrimString(lines[i], " ", &line);
115 // Remove "<HR>" if |line| starts with it. "<HR>" is the bookmark entries
117 // multiple "<HR>" tags at the beginning of a single line.
120 while (StartsWithASCII(line, kHrTag, false)) {
121 line.erase(0, arraysize(kHrTag) - 1);
122 base::TrimString(line, " ", &line);
126 if (internal::ParseCharsetFromLine(line, &charset))
130 if (internal::ParseFolderNameFromLine(line,
    [all...]
  /external/opencv/cvaux/src/
cvfindhandregion.cpp 56 float *line, CvSize2D32f size, int flag,
89 assert( points != NULL && line != NULL );
90 if( points == NULL || line == NULL )
107 /* alloc memory for the point's projections on the line */
133 /* find min and max point's projection on the line */
140 icvSubVector_32f ((IppmVect32f )&points[i], (IppmVect32f )&line[3], sub, 3);
142 icvCrossProduct2L_32f ((IppmVect32f )&line[0], sub, cros);
145 sub[0] = points[i].x - line[3];
146 sub[1] = points[i].y - line[4];
147 sub[2] = points[i].z - line[5]
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 63 * specified text with one line per paragraph.
72 * specified text slice with one line per paragraph.
108 * default line spacing
109 * @param spacingAdd amount to add to the default line spacing
128 * default line spacing
129 * @param spacingAdd amount to add to the default line spacing
226 // The baseline is the top of the following line minus the current line's descent.
248 // Reset tabStops, we'll rebuild if we encounter a line with
273 // to the paragraph direction of the line
687 int line = getLineForOffset(offset); local
717 int line = getLineForOffset(offset); local
741 int line = getLineForOffset(offset); local
828 int line = getLineForOffset(offset); local
1197 int line = getLineForOffset(caret); local
1307 int line = getLineForOffset(point); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86_64-xlate.pl 22 # - can't use multiple ops per line;
107 local *line = shift;
110 if ($line =~ /^([a-z][a-z0-9]*)/i) {
113 $line = substr($line,@+[0]); $line =~ s/^\s+//;
125 } elsif ($self->{op} =~ /movq/ && $line =~ /%xmm/) {
186 local *line = shift;
189 if ($line =~ /^\$([^,]+)/) {
192 $line = substr($line,@+[0]); $line =~ s/^\s+//
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 22 # - can't use multiple ops per line;
107 local *line = shift;
110 if ($line =~ /^([a-z][a-z0-9]*)/i) {
113 $line = substr($line,@+[0]); $line =~ s/^\s+//;
125 } elsif ($self->{op} =~ /movq/ && $line =~ /%xmm/) {
186 local *line = shift;
189 if ($line =~ /^\$([^,]+)/) {
192 $line = substr($line,@+[0]); $line =~ s/^\s+//
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
mem.c 78 static void *default_malloc_ex(size_t num, const char *file, int line)
80 static void *(*malloc_ex_func)(size_t, const char *file, int line)
85 const char *file, int line)
87 static void *(*realloc_ex_func)(void *, size_t, const char *file, int line)
93 static void *default_malloc_locked_ex(size_t num, const char *file, int line)
95 static void *(*malloc_locked_ex_func)(size_t, const char *file, int line)
252 void *CRYPTO_malloc_locked(int num, const char *file, int line)
262 malloc_debug_func(NULL, num, file, line, 0);
264 ret = malloc_locked_ex_func(num,file,line);
269 malloc_debug_func(ret, num, file, line, 1)
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
MacroDebug.h 39 static inline opus_int16 silk_ADD16_(opus_int16 a, opus_int16 b, char *file, int line){
45 fprintf (stderr, "silk_ADD16(%d, %d) in %s: line %d\n", a, b, file, line);
55 static inline opus_int32 silk_ADD32_(opus_int32 a, opus_int32 b, char *file, int line){
61 fprintf (stderr, "silk_ADD32(%d, %d) in %s: line %d\n", a, b, file, line);
71 static inline opus_int64 silk_ADD64_(opus_int64 a, opus_int64 b, char *file, int line){
77 fprintf (stderr, "silk_ADD64(%lld, %lld) in %s: line %d\n", (long long)a, (long long)b, file, line);
87 static inline opus_int16 silk_SUB16_(opus_int16 a, opus_int16 b, char *file, int line){
    [all...]
  /external/openssl/crypto/
mem.c 78 static void *default_malloc_ex(size_t num, const char *file, int line)
80 static void *(*malloc_ex_func)(size_t, const char *file, int line)
85 const char *file, int line)
87 static void *(*realloc_ex_func)(void *, size_t, const char *file, int line)
93 static void *default_malloc_locked_ex(size_t num, const char *file, int line)
95 static void *(*malloc_locked_ex_func)(size_t, const char *file, int line)
252 void *CRYPTO_malloc_locked(int num, const char *file, int line)
262 malloc_debug_func(NULL, num, file, line, 0);
264 ret = malloc_locked_ex_func(num,file,line);
269 malloc_debug_func(ret, num, file, line, 1)
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
easy_template.py 21 for line in template.splitlines(1): # 1 => keep line ends
22 m = statement_re.match(line)
31 while line and line[-1] in '\\"\n\r':
32 line_ending = line[-1] + line_ending
33 line = line[:-1]
35 m = expr_re.search(line)
37 line = line.replace('%', '%%'
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
valparam.h 82 * \param line virtual line (from yasm_linemap)
85 yasm_valparamhead *objext_valparams, unsigned long line);
102 * \param line virtual line (from yasm_linemap)
108 unsigned long line);
141 * \param line virtual line
147 (const yasm_valparam *vp, yasm_symtab *symtab, unsigned long line);
254 * \param line line passed into yasm_dir_helper(
    [all...]
  /external/chromium_org/tools/android/memdump/
memsymbols.py 52 for line in memdump_contents:
53 line = line.rstrip('\r\n')
54 if line.startswith('[ PID'):
57 r = MAP_RX.match(line)
59 sys.stderr.write('Skipping %s from %s\n' % (line, memdump_file))
133 for line in nm_fh:
134 line = line.rstrip('\r\n')
136 if line.startswith(' ')
    [all...]
  /external/chromium_org/tools/python/google/
process_utils.py 46 line-buffered, converting line endings to CRLF (see note below). If
86 line = read_from.readline()
87 while line:
88 line = line.rstrip()
91 output.append(line)
101 print line + '\n',
106 line = read_from.readline()
120 line-buffered, converting line endings to CRLF. Waits for the command t
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_location.py 10 def assert_location(loc, line, column, offset):
11 assert loc.line == line
23 assert_location(one.location,line=1,column=5,offset=4)
24 assert_location(two.location,line=2,column=5,offset=13)
34 assert_location(one.location,line=2,column=5,offset=5)
35 assert_location(two.location,line=3,column=5,offset=14)
37 # adding a space should affect column on first line only
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column=5,offset=14
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 52 * Needed since "next line" may be null due to end of line.
71 final String line = super.readLine(); local
74 return line;
78 * Read one line, but make this object store it in its queue.
83 final String line = super.readLine(); local
87 mNextLine = line;
127 * Developers should not directly read a line from this object. Use
192 * @throws VCardException when the stream reached end of line
195 String line; local
240 String line; local
306 final String line = getNonEmptyLine(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 59 /** <summary>line number 1..n within the input</summary> */
60 protected int line = 1; field in class:Antlr.Runtime.SlimStringStream
62 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
71 * values line, charPositionInLine, and p that can change as you
128 public int Line
132 return line;
136 line = value;
151 public int Line
183 line = 1;
199 System.out.println("newline char found on line: "+line
    [all...]
  /external/chromium_org/testing/gtest/scripts/
pump.py 88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
91 self.line = line
95 return self.line == rhs.line and self.column == rhs.column
101 return self.line < rhs.line or (
102 self.line == rhs.line and self.column < rhs.column
    [all...]
  /external/libvorbis/vq/
make_residue_books.pl 21 while($line=<F>){
23 print "#### $line";
24 if($line=~m/^GO/){
30 if($line=~m/\S+/ && !($line=~m/^\#/) ){
31 my $command=$line;
40 if($line=~m/^>(\S+)\s+(\S*)/){
48 if($line=~m/^h(.*)/){
79 if($line=~m/^:(.*)/){
  /libcore/luni/src/test/java/libcore/java/io/
OldLineNumberReaderTest.java 33 String line; local
36 line = lnr.readLine();
39 line.equals(lnr.readLine()));
62 assertEquals("Test 2: Read failed to increase the line number;",
123 assertEquals("Returned incorrect line number", 0, lnr.getLineNumber());
124 String line = null; local
126 line = lnr.readLine();
127 assertEquals("Test 1: Returned incorrect string;", "1", line);
128 assertTrue("Test 2: Returned incorrect line number:" + lnr.getLineNumber(),
142 assertEquals("Test 1: Returned incorrect line number;"
144 String line = null; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_MozillaCookieJar.py 59 line = f.readline()
60 if line == "": break
63 if line.endswith("\n"): line = line[:-1]
66 if (line.strip().startswith(("#", "$")) or
67 line.strip() == ""):
71 line.split("\t")
111 (filename, line))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_MozillaCookieJar.py 59 line = f.readline()
60 if line == "": break
63 if line.endswith("\n"): line = line[:-1]
66 if (line.strip().startswith(("#", "$")) or
67 line.strip() == ""):
71 line.split("\t")
111 (filename, line))
  /external/chromium_org/tools/valgrind/
test_suppressions.py 27 for line in input_file:
28 line = line.strip()
29 line = line.replace("</span><span class=\"stdout\">", "")
30 line = line.replace("</span><span class=\"stderr\">", "")
31 line = line.replace("&lt;", "<")
32 line = line.replace("&gt;", ">"
    [all...]

Completed in 787 milliseconds

<<11121314151617181920>>