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

<<21222324252627282930>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TWith.java 15 public TWith(int line, int pos)
18 setLine(line);
TWord.java 15 public TWord(String text, int line, int pos)
18 setLine(line);
  /external/mesa3d/src/glx/apple/
apple_glx_log.h 40 int line, const char *fmt, ...);
47 int line, const char *fmt, va_list v);
  /external/qemu/
offset_layout.py 60 line = sys.stdin.readline()
61 if not line:
63 m_line = _RE_LINE.match(line)
72 if mode == "button" and "{" in line:
77 elif "}" in line:
83 m_xy = _RE_XY.match(line)
104 line = "%(start)s%(xy)s%(num)s%(end)s" % d
105 sys.stdout.write(line)
  /external/skia/src/utils/
SkPathUtils.cpp 40 static void Line2path_pixel(SkPath* path, const char* line,
44 if (GetBit(line,i)) {
51 static void Line2path_pixelCircle(SkPath* path, const char* line,
55 if (GetBit(line,i)) {
64 static void Line2path_span(SkPath* path, const char* line,
70 int curPixel = GetBit(line,i);
87 if ( GetBit(line,width-1) ) ++end;
91 } else if ( GetBit(line, width - 1) ) { // if last pixel on add
101 // loop for every line in bitmap
103 // fn ptr handles each line separatel
119 const char* line = &bitmap[y * stride]; local
    [all...]
  /external/v8/src/
v8checks.h 46 int line,
53 int line,
  /external/valgrind/main/VEX/switchback/
binary_switchback.pl 203 my $line = pop @lines; # ...but the second line.
205 chomp $line;
207 if (($n) = ($line =~ /^(\d*) bbs simulated$/)) {
225 foreach my $line(@lines) {
226 chomp $line;
227 if ($line =~ /^---STOP---$/) { last; } # we're done
230 if ($line =~ /^.*---begin SWITCHBACK/) {
231 ($halfline) = ($line =~ /^(.*)---begin SWITCHBACK/);
232 $ok = 0; # stop on prev line
    [all...]
  /external/valgrind/main/drd/tests/
unified_annotations.h 31 AnnotateCondVarSignal(const char *file, int line, const volatile void *cv)
37 AnnotateCondVarWait(const char *file, int line, const volatile void *cv,
  /external/valgrind/main/gdbserver_tests/
mssnapshot.stdoutB.exp 1 Breakpoint 1 at 0x........: file t.c, line 105.
  /external/valgrind/main/none/tests/
vgprintf.stderr.exp 4 Backtrace line one
5 Line two:
  /frameworks/base/core/java/com/android/internal/util/
HexDump.java 32 byte[] line = new byte[16];
46 if (line[j] > ' ' && line[j] < '~')
48 result.append(new String(line, j, 1));
66 line[lineIndex++] = b;
80 if (line[i] > ' ' && line[i] < '~')
82 result.append(new String(line, i, 1));
  /frameworks/webview/chromium/tools/
webview_command_line 17 CMD_LINE_FILE=/data/local/tmp/webview-command-line
20 # If nothing specified, print the command line (stripping off "webview").
23 # If given an empty string, delete the command line.
  /system/extras/tests/lib/testUtil/
testUtil.c 147 char line[MAXSTR]; local
151 vsnprintf(line, sizeof(line), fmt, args);
153 ALOG(LOG_ERROR, logCatTag, "%s", line);
155 ALOG(LOG_INFO, logCatTag, "%s", line);
311 * Each line of output is indented by a number of spaces that
323 char line[MAXSTR]; local
326 char *linep = line;
330 if (linep != line) {
331 testPrintE("%s", line);
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 114 char line[4096], d; local
129 memset(line, 0, 100);
133 line[0] = 0;
136 sprintf(&line[i], "%c", d);
139 if(line[0] == 'N'){
141 while(line[i] != '"'){
149 if(!memcmp(&line[i], chip_name[j], strlen(chip_name[j]))){
156 if(!memcmp(&line[i], name, strlen(name))){
163 if(line[0] == 'S'){
166 while(line[i] != '=') i++
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.c 76 /* Line 268 of yacc.c */
77 #line 1 "src/src/mesa/program/program_parse.y"
197 /* Line 268 of yacc.c */
198 #line 199 "src/chromium_gensrc/mesa/program/program_parse.tab.c"
446 /* Line 293 of yacc.c */
447 #line 126 "src/src/mesa/program/program_parse.y"
475 /* Line 293 of yacc.c */
476 #line 477 "src/chromium_gensrc/mesa/program/program_parse.tab.c"
499 /* Line 343 of yacc.c */
500 #line 271 "src/src/mesa/program/program_parse.y
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 90 System.err.println("error(line "+$ACTION.getLine()+"): invalid header");
128 int line = -1;
131 in = new gUnitTestInput(testInput, inputIsFile, line);
137 line = $STRING.line;
142 line = $ML_STRING.line;
148 line = $file.line;
171 file returns [int line]
    [all...]
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.cc 46 void OmniboxPopupModel::SetHoveredLine(size_t line) {
47 const bool is_disabling = (line == kNoMatch);
48 DCHECK(is_disabling || (line < result().size()));
50 if (line == hovered_line_)
53 // Make sure the old hovered line is redrawn. No need to redraw the selected
54 // line since selection overrides hover so the appearance won't change.
58 // Change the hover to the new line.
59 hovered_line_ = line;
64 void OmniboxPopupModel::SetSelectedLine(size_t line,
74 line = std::min(line, result.size() - 1)
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCurve.h 15 SkDLine line; local
16 line.set(a);
17 return line.ptAtT(t);
59 SkDLine line; local
60 line.set(a);
61 return line[1] - line[0];
124 SkDLine line; local
125 line.set(a);
126 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) }
    [all...]
  /external/e2fsprogs/lib/ss/
listen.c 58 char *line; local
77 line = (*info->readline)(current_info->prompt);
81 line = input;
83 line = NULL;
87 if (line == NULL) {
93 cp = strchr(line, '\n');
96 if (cp == line)
101 (*info->add_history)(line);
103 code = ss_execute_line (sci_idx, line);
105 register char *c = line;
    [all...]
  /external/skia/src/pathops/
SkPathOpsCurve.h 15 SkDLine line; local
16 line.set(a);
17 return line.ptAtT(t);
59 SkDLine line; local
60 line.set(a);
61 return line[1] - line[0];
124 SkDLine line; local
125 line.set(a);
126 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) }
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tokens.py 75 """@brief Get the line number on which this token was matched
79 Using setter/getter methods is deprecated. Use o.line instead."""
83 def setLine(self, line):
84 """@brief Set the line number on which this token was matched
86 Using setter/getter methods is deprecated. Use o.line instead."""
183 self.line = oldToken.line
197 self.line = 0
253 return self.line
255 def setLine(self, line)
    [all...]
  /external/chromium_org/v8/tools/
gen-postmortem-metadata.py 199 # Iterate objects.h line-by-line to collect type and class information.
204 for line in objfile:
205 if (line.startswith('enum InstanceType {')):
209 if (in_insttype and line.startswith('};')):
213 line = re.sub('//.*', '', line.rstrip().lstrip());
216 typestr += line;
220 line);
390 for line in inlfile
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 151 char * line; local
170 line = op_get_line(fp);
172 if (!line)
175 if (!strcmp("", line)) {
176 free(line);
180 if (strlen(line) < 9) {
181 printf("oprofiled: corrupt /proc/ksyms line \"%s\"\n", line);
185 if (strncmp("__insmod_", line + 9, 9)) {
186 free(line);
    [all...]
  /external/oprofile/libregex/
op_regex.cpp 274 string line; local
275 while (getline(in, line)) {
276 line = trim(line);
277 if (line.empty() || line[0] == '#')
280 string temp = line;
282 if (temp == line) {
283 string left = line;
285 if (left == line) {
    [all...]
  /external/v8/tools/
gen-postmortem-metadata.py 189 # Iterate objects.h line-by-line to collect type and class information.
194 for line in objfile:
195 if (line.startswith('enum InstanceType {')):
199 if (in_insttype and line.startswith('};')):
203 line = re.sub('//.*', '', line.rstrip().lstrip());
206 typestr += line;
210 line);
380 for line in inlfile
    [all...]

Completed in 1059 milliseconds

<<21222324252627282930>>