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

<<31323334353637383940>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_unfilled_gen.py 101 def line( intype, outtype, ptr, v0, v1 ): function
107 # and only emitting each line at most once.
110 line( intype, outtype, ptr, v0, v1 )
111 line( intype, outtype, ptr + '+2', v1, v2 )
112 line( intype, outtype, ptr + '+4', v2, v0 )
115 line( intype, outtype, ptr, v0, v1 )
116 line( intype, outtype, ptr + '+2', v1, v2 )
117 line( intype, outtype, ptr + '+4', v2, v3 )
118 line( intype, outtype, ptr + '+6', v3, v0 )
171 line( intype, outtype, 'out+j', 'i', '(i+1)%(nr/2)'
    [all...]
  /external/chromium_org/third_party/re2/re2/
unicode.py 128 Each non-comment line in the table is expected to have the given
134 prefixed with the file name and line number, and continues
140 nfields: the number of expected fields per line in that file.
159 expect_last = None # tag expected for "Last" line in multiline range
160 lineno = 0 # current line number
161 for line in fil:
165 sharp = line.find("#")
167 line = line[:sharp]
168 line = line.strip(
    [all...]
  /external/chromium_org/tools/perf/measurements/
blink_perf.py 43 for line in open(skipped_file, 'r').readlines():
44 line = line.strip()
45 if line and not line.startswith('#'):
46 skipped.append(line.replace('/', os.sep))
92 for line in log.splitlines():
93 if not line.startswith('values '):
95 parts = line.split()
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_gen.py 101 def line( intype, outtype, ptr, v0, v1 ): function
107 # and only emitting each line at most once.
110 line( intype, outtype, ptr, v0, v1 )
111 line( intype, outtype, ptr + '+2', v1, v2 )
112 line( intype, outtype, ptr + '+4', v2, v0 )
115 line( intype, outtype, ptr, v0, v1 )
116 line( intype, outtype, ptr + '+2', v1, v2 )
117 line( intype, outtype, ptr + '+4', v2, v3 )
118 line( intype, outtype, ptr + '+6', v3, v0 )
171 line( intype, outtype, 'out+j', 'i', '(i+1)%(nr/2)'
    [all...]
  /external/oprofile/daemon/
opd_kernel.c 133 * each line is in the format:
142 char * line; local
168 line = op_get_line(fp);
170 if (!line)
173 if (line[0] == '\0') {
174 free(line);
178 ret = sscanf(line, "%256s %u %32s %4096s %32s %llx",
182 printf("bad /proc/modules entry: %s\n", line);
183 free(line);
193 free(line);
    [all...]
  /external/regex-re2/re2/
unicode.py 128 Each non-comment line in the table is expected to have the given
134 prefixed with the file name and line number, and continues
140 nfields: the number of expected fields per line in that file.
159 expect_last = None # tag expected for "Last" line in multiline range
160 lineno = 0 # current line number
161 for line in fil:
165 sharp = line.find("#")
167 line = line[:sharp]
168 line = line.strip(
    [all...]
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 38 * Otherwise, each line contains the binary name of one implementation class.
225 String line; local
226 while ((line = reader.readLine()) != null) {
228 int commentStart = line.indexOf('#');
230 line = line.substring(0, commentStart);
232 line = line.trim();
234 if (line.isEmpty()) {
237 String className = line;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
gennorm2.cpp 81 /* preset then read command line options */
89 "error in command line argument \"%s\"\n",
189 char line[300]; local
191 while(NULL!=fgets(line, (int)sizeof(line), f)) {
192 char *comment=(char *)strchr(line, '#');
196 u_rtrim(line);
197 if(line[0]==0) {
200 if(line[0]=='*') {
205 u_parseCodePointRangeAnyTerminator(line, &startCP, &endCP, &delimiter, errorCode)
    [all...]
  /external/dhcpcd/
dhcpcd-run-hooks.in 59 local key="$1" value= x= line=
66 while read line; do
67 case "$line" in
68 "$key"*) echo "${line##$key}";;
79 local m1="$1" m2="$2" x= line= in_marker=0
86 while read line; do
87 case "$line" in
90 *) [ $in_marker = 0 ] && echo "$line";;
  /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/icu4c/samples/layout/
paragraph.cpp 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax);
162 for (le_int32 line = 0; line < fLineCount; line += 1) {
163 delete /*(LineInfo *)*/ fLines[line];
171 void Paragraph::addLine(const ParagraphLayout::Line *line)
174 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow);
178 fLines[fLineCount++] = line;
193 const ParagraphLayout::Line *line local
224 const ParagraphLayout::Line *line = fLines[li]; local
    [all...]
  /frameworks/wilhelm/src/
locks.c 34 void object_lock_exclusive_(IObject *thiz, const char *file, int line)
54 SL_LOGE("%s:%d: recursive lock detected", file, line);
57 SL_LOGE("%s:%d: pthread_mutex_lock_timeout_np returned %d", file, line, ok);
74 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
94 " %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
98 " state by pthread %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(),
105 thiz->mLine = line;
122 void object_unlock_exclusive_(IObject *thiz, const char *file, int line)
129 thiz->mLine = line;
150 const char *file, int line)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileSystemUtils.java 112 * the command line.
124 * The free space is calculated via the command line.
143 * the command line.
148 * The free space is calculated via the command line.
154 * some simple tests to compare the command line with the output from this class.
177 * The free space is calculated via the command line.
228 // non-empty line (the free space bytes should be in the last element
230 // not, still assuming it is on the last non-blank line)
232 String line = lines.get(i); local
233 if (line.length() > 0) {
409 String line = inr.readLine(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ReplaceDialog.py 90 line = res[0]
93 line = 1
100 res = self.engine.search_forward(text, prog, line, col, 0, ok)
103 line, m = res
104 chars = text.get("%d.0" % line, "%d.0" % (line+1))
110 first = "%d.%d" % (line, i)
111 last = "%d.%d" % (line, j)
135 line, m = res
137 first = "%d.%d" % (line, i
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailcap.py 64 line = fp.readline()
65 if not line: break
67 if line[0] == '#' or line.strip() == '':
69 nextline = line
74 line = line[:-2] + nextline
75 # Parse the line
76 key, fields = parseline(line)
91 def parseline(line)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_peepholer.py 16 def dis_single(line):
17 return disassemble(compile(line, '', 'single'))
32 for line, elem in (
38 asm = dis_single(line)
70 for line, elem in (
75 asm = dis_single(line)
81 for line, elem in (
88 asm = dis_single(line)
110 for line, elem in (
127 asm = dis_single(line)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ReplaceDialog.py 90 line = res[0]
93 line = 1
100 res = self.engine.search_forward(text, prog, line, col, 0, ok)
103 line, m = res
104 chars = text.get("%d.0" % line, "%d.0" % (line+1))
110 first = "%d.%d" % (line, i)
111 last = "%d.%d" % (line, j)
135 line, m = res
137 first = "%d.%d" % (line, i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailcap.py 64 line = fp.readline()
65 if not line: break
67 if line[0] == '#' or line.strip() == '':
69 nextline = line
74 line = line[:-2] + nextline
75 # Parse the line
76 key, fields = parseline(line)
91 def parseline(line)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_peepholer.py 16 def dis_single(line):
17 return disassemble(compile(line, '', 'single'))
32 for line, elem in (
38 asm = dis_single(line)
70 for line, elem in (
75 asm = dis_single(line)
81 for line, elem in (
88 asm = dis_single(line)
110 for line, elem in (
127 asm = dis_single(line)
    [all...]
  /external/chromium_org/tools/memory_watcher/
call_stack.cc 296 PrivateAllocatorString line; local
303 line = it->second;
320 IMAGEHLP_LINE64 Line;
321 memset(&Line, 0, sizeof(Line));
322 Line.SizeOfStruct = sizeof(Line);
327 &Line);
339 line += " ";
340 line += static_cast<char*>(Line.FileName)
    [all...]
  /external/ppp/pppd/plugins/radius/
config.c 53 static int set_option_str(char *filename, int line, OPTION *option, char *p)
63 static int set_option_int(char *filename, int line, OPTION *option, char *p)
68 error("%s: line %d: bogus option value", filename, line);
83 static int set_option_srv(char *filename, int line, OPTION *option, char *p)
91 error("%s: line %d: bogus option value", filename, line);
120 error("%s: line %d: no default port for %s", filename, line, option->name);
133 static int set_option_auo(char *filename, int line, OPTION *option, char *p
191 int line, pos; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-indic-machine.hh 2 #line 1 "hb-ot-shape-complex-indic-machine.rl"
35 #line 36 "hb-ot-shape-complex-indic-machine.hh.tmp"
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
Strings.java 46 String line; local
47 while ((line = in.readLine()) != null) {
48 result.append(line);
63 String line; local
64 while ((line = in.readLine()) != null) {
65 list.add(line);
  /development/testrunner/
android_mk.py 45 def _ProcessMKLine(self, line):
51 line: line of text from makefile
53 m = self._RE_INCLUDE.match(line)
57 parts = line.split(self._VAR_DELIMITER)
61 if line.find('libgtest_main') != -1:
154 for line in mk:
155 self._ProcessMKLine(line)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 40 /** line number 1..n within the input */
43 /** The index of the character relative to the beginning of the line 0..n-1 */
50 * values line, charPositionInLine, and p that can change as you
142 state.line = _line;
152 _line = state.line;
169 * update line and charPositionInLine.
173 p = index; // just jump; don't update stream state (line, ...)
186 public function get line():int {
194 public function set line(line:int):void
    [all...]

Completed in 524 milliseconds

<<31323334353637383940>>