HomeSort by relevance Sort by last modified time
    Searched full:lines (Results 376 - 400 of 5102) sorted by null

<<11121314151617181920>>

  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 37 * file is copied. If an id is provided, the lines in the given file between the first two lines
131 LineNumberReader lines = new LineNumberReader(input); local
140 String line = lines.readLine();
221 LineNumberReader lines = new LineNumberReader(input); local
224 String line = lines.readLine();
225 String lineNum = Integer.toString(lines.getLineNumber());
  /external/google-breakpad/src/common/
stabs_to_module.cc 129 current_function_->lines.push_back(line);
179 // Compute sizes for each of the function f's lines --- if it has any.
180 if (!f->lines.empty()) {
181 stable_sort(f->lines.begin(), f->lines.end(),
183 vector<Module::Line>::iterator last_line = f->lines.end() - 1;
184 for (vector<Module::Line>::iterator line_it = f->lines.begin();
  /external/guava/guava/src/com/google/common/io/
Resources.java 149 * Streams lines from a URL, stopping when our callback returns false, or we
150 * have read all of the lines.
155 * @param callback the LineProcessor to use to handle the lines
156 * @return the output of processing the lines
165 * Reads all of the lines from a URL. The lines do not include
176 * @return a mutable {@link List} containing all the lines
  /external/skia/src/core/
SkEdgeBuilder.cpp 117 SkPoint lines[SkLineClipper::kMaxPoints]; local
118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, canCullToTheRight);
121 if (edge->setLine(lines[i], lines[i + 1], shiftUp)) {
194 SkPoint lines[SkLineClipper::kMaxPoints]; local
195 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, canCullToTheRight);
197 this->addLine(&lines[i]);
  /external/skia/src/gpu/
GrPathUtils.h 114 // ensure that the new control point lies between the lines ab and cd. The
153 // Notice that the klm lines are calculated in the same space as the input control points.
154 // If you transform the points the lines will also need to be transformed. This can be done
155 // by mapping the lines with the inverse-transpose of the matrix used to map the points.
167 // Notice that the klm lines are calculated in the same space as the input control points.
168 // If you transform the points the lines will also need to be transformed. This can be done
169 // by mapping the lines with the inverse-transpose of the matrix used to map the points.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
robotparser.py 58 lines = [line.strip() for line in f]
65 elif self.errcode == 200 and lines:
66 self.parse(lines)
77 def parse(self, lines):
78 """parse the input lines from a robots.txt file.
80 one or more blank lines."""
89 for line in lines:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
robotparser.py 58 lines = [line.strip() for line in f]
65 elif self.errcode == 200 and lines:
66 self.parse(lines)
77 def parse(self, lines):
78 """parse the input lines from a robots.txt file.
80 one or more blank lines."""
89 for line in lines:
  /external/pcre/dist/doc/
pcregrep.1 57 used (to allow for buffering "before" and "after" lines). An error occurs if a
128 Output \fInumber\fP lines of context after each matching line. If filenames
130 colon for the context lines. A line containing "--" is output between each
131 group of lines, unless they are in fact contiguous in the input file. The value
140 Output \fInumber\fP lines of context before each matching line. If filenames
142 colon for the context lines. A line containing "--" is output between each
143 group of lines, unless they are in fact contiguous in the input file. The value
163 Output \fInumber\fP lines of context both before and after each matching line.
167 Do not output individual lines from the files that are being scanned; instead
168 output the number of lines that would otherwise have been shown. If no line
    [all...]
pcregrep.txt 58 lines). An error occurs if a line overflows the buffer.
129 Output number lines of context after each matching line. If
131 arator is used instead of a colon for the context lines. A
132 line containing "--" is output between each group of lines,
143 Output number lines of context before each matching line. If
145 arator is used instead of a colon for the context lines. A
146 line containing "--" is output between each group of lines,
170 Output number lines of context both before and after each
175 Do not output individual lines from the files that are being
176 scanned; instead output the number of lines that would other
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 208 lines = []
212 lines.append("[metadata]")
228 lines.append("%s=%s" % (name, escape(data)))
232 lines.append("\n[Setup]")
234 lines.append("install_script=%s" % self.install_script)
235 lines.append("info=%s" % escape(info))
236 lines.append("target_compile=%d" % (not self.no_target_compile))
237 lines.append("target_optimize=%d" % (not self.no_target_optimize))
239 lines.append("target_version=%s" % self.target_version)
241 lines.append("user_access_control=%s" % self.user_access_control
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 208 lines = []
212 lines.append("[metadata]")
228 lines.append("%s=%s" % (name, escape(data)))
232 lines.append("\n[Setup]")
234 lines.append("install_script=%s" % self.install_script)
235 lines.append("info=%s" % escape(info))
236 lines.append("target_compile=%d" % (not self.no_target_compile))
237 lines.append("target_optimize=%d" % (not self.no_target_optimize))
239 lines.append("target_version=%s" % self.target_version)
241 lines.append("user_access_control=%s" % self.user_access_control
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutTest.java 79 * Basic test showing effect of includePad = true wrapping to 2 lines.
96 * Basic test showing effect of includePad = true wrapping to 3 lines.
115 * Basic test showing effect of includePad = true wrapping to 3 lines and
144 * to 3 lines.
165 * spacingMult = 1.5, wrapping to 3 lines.
187 * spacingMult = 0.8 when wrapping to 3 lines.
296 int lines = values.length >> 1; local
297 assertEquals(lines, l.getLineCount());
300 for (int i = 0, n = 0; i < lines; ++i, n += 2) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 73 lines = s.split("\n")
74 lines = [ line.strip() for line in lines if len(line) >= 2 ]
75 lines.sort()
76 return lines
328 lines = sortLines(msg.getheadertext())
329 eq(lines, ["Date: 18 July 2001",
332 lines = sortLines(msg.getheadertext(lambda h: len(h)==4))
333 eq(lines, ["Date: 18 July 2001",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 73 lines = s.split("\n")
74 lines = [ line.strip() for line in lines if len(line) >= 2 ]
75 lines.sort()
76 return lines
328 lines = sortLines(msg.getheadertext())
329 eq(lines, ["Date: 18 July 2001",
332 lines = sortLines(msg.getheadertext(lambda h: len(h)==4))
333 eq(lines, ["Date: 18 July 2001",
  /external/eigen/test/eigen2/
eigen2_hyperplane.cpp 79 template<typename Scalar> void lines() function
105 // the lines should intersect at the point we called "center"
108 // check conversions between two types of lines
123 CALL_SUBTEST_5( lines<float>() );
124 CALL_SUBTEST_6( lines<double>() );
  /external/elfutils/src/libdwfl/
dwfl_module_getsrc_file.c 67 return &dwfl_linecu (line)->die.cu->lines->info[line->idx];
79 for (size_t cnt = 0; cnt < cu->die.cu->lines->nlines; ++cnt)
81 Dwarf_Line *line = &cu->die.cu->lines->info[cnt];
128 match[inner] = &cu->lines->idx[cnt];
150 match[cur_match++] = &cu->lines->idx[cnt];
  /external/libpng/contrib/tools/
chkfmt 8 # -v: output the long lines (makes fixing them easier)
50 # long and cause spuriously overlong lines. To avoid this subtitute the version
51 # string with a 'standard' version a.b.cc before checking for long lines.
81 # Makefiles require tabs, dependency lines can be this long.
109 echo "$file: lines too long"
  /external/llvm/utils/
DSAextract.py 61 #filter out the unnecessary checks on all the edge lines
88 #there are three types of lines we are looking for
89 #1) node lines, 2) edge lines 3) support lines (like page size, etc)
  /external/skia/tools/
sanitize_source_files.py 28 lines in a file (Eg: TabReplacer).
41 lines = f.readlines()
45 new_lines = [] # Collect changed lines here.
50 for line in lines:
61 old_content = ''.join(lines)
  /external/deqp/android/cts/master/
gles31-multisample.txt 33 dEQP-GLES31.functional.shaders.helper_invocation.value.lines
222 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_equal
223 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_larger
224 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_smaller
225 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_equal
226 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_larger
227 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_smaller
228 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_equal
229 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_larger
230 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_smalle
    [all...]
gles31-rotate-landscape.txt 33 dEQP-GLES31.functional.shaders.helper_invocation.value.lines
121 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_equal
122 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_larger
123 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_smaller
124 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_equal
125 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_larger
126 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_smaller
127 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_equal
128 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_larger
129 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_smalle
    [all...]
gles31-rotate-portrait.txt 33 dEQP-GLES31.functional.shaders.helper_invocation.value.lines
121 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_equal
122 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_larger
123 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_smaller
124 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_equal
125 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_larger
126 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_smaller
127 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_equal
128 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_larger
129 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_smalle
    [all...]
gles31-rotate-reverse-landscape.txt 33 dEQP-GLES31.functional.shaders.helper_invocation.value.lines
121 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_equal
122 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_larger
123 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_smaller
124 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_equal
125 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_larger
126 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_smaller
127 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_equal
128 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_larger
129 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_smalle
    [all...]
gles31-rotate-reverse-portrait.txt 33 dEQP-GLES31.functional.shaders.helper_invocation.value.lines
121 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_equal
122 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_larger
123 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_fragment.default_framebuffer_bbox_smaller
124 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_equal
125 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_larger
126 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_tessellation_fragment.default_framebuffer_bbox_smaller
127 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_equal
128 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_larger
129 dEQP-GLES31.functional.primitive_bounding_box.lines.global_state.vertex_geometry_fragment.default_framebuffer_bbox_smalle
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 43 private static final float[] LINES = new float[NUM_PARALLEL_LINES * 8
55 System.arraycopy(TRIANGLE_POINTS, 0, LINES, 0, TRIANGLE_POINTS.length);
59 LINES[index + 0] = 40;
60 LINES[index + 1] = val;
61 LINES[index + 2] = 80;
62 LINES[index + 3] = val;
68 LINES[index + 0] = val;
69 LINES[index + 1] = 40;
70 LINES[index + 2] = val;
71 LINES[index + 3] = 80
    [all...]

Completed in 200 milliseconds

<<11121314151617181920>>