HomeSort by relevance Sort by last modified time
    Searched defs:LINE (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/libopus/celt/arm/
arm2gnu.pl 61 LINE:
64 # For ADRLs we need to add a new line after the substituted one.
73 # If there's nothing on a line but a comment, don't try to apply any further
141 # whitespace separating them). Sadly this means our line numbers
142 # won't match the original source file (we could use the .line
144 # show the wrong line in the translated source file).
218 # Single hex constant on the line !
227 # Only decimal constants on the line, no hex !
230 # Single hex constant on the line !
232 # Only decimal constants on the line, no hex
    [all...]
  /external/ltp/tools/
genhtml.pl 108 LINE: while ($line = <FILE>) {
109 chomp $line;
111 if ($line =~ /$start_tag/) {
115 if ($line =~ /$end_tag/) {
125 @variable_value_pair = split(/\ /, $line);
136 @variable_value_pair = split(/=/, $line);
140 @variable_value_pair = split(/=/, $line);
144 @variable_value_pair = split(/=/, $line);
149 @variable_value_pair = split(/=/, $line);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_prim_assembler_tmp.h 26 #define LINE(flags, i0, i1) prim_line(asmblr, i0, i1)
draw_so_emit_tmp.h 28 #define LINE(flags,i0,i1) so_line(so,i0,i1)
draw_gs_tmp.h 28 #define LINE(flags,i0,i1) gs_line(gs,i0,i1)
draw_decompose_tmp.h 41 #define LINE_ADJ(flags, a0, i0, i1, a1) LINE(flags, i0, i1)
75 LINE(flags, idx[0], idx[1]);
89 LINE(flags, idx[0], idx[1]);
93 LINE(flags, idx[1], idx[2]);
439 #undef LINE
draw_pipe.c 129 * Build primitive to render a line with vertices at v0, v1.
144 draw->pipeline.first->line( draw->pipeline.first, &prim );
184 #define LINE(flags,i0,i1) \
287 #define LINE(flags,i0,i1) \
  /external/ImageMagick/scripts/
format_c_api_docs 348 LINE:
392 next LINE;
421 next LINE;
431 $para .= " $_"; # Add line to paragraph
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
PathPoint.java 31 public static final int LINE = 1;
51 * to the location of this PathPoint. This can be one of MOVE, LINE, or CURVE.
58 * Line/Move constructor
80 * Constructs and returns a PathPoint object that describes a line to the given xy location.
83 return new PathPoint(LINE, x, y);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /external/python/cpython2/Lib/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 15 __all__ = ["LogReader", "ENTER", "EXIT", "LINE"]
20 LINE = WHAT_LINENO
41 # (file name, line number of function def, function name)
  /external/deqp/modules/glshared/
glsScissorTests.hpp 56 LINE,
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
ICoverageNode.java 57 LINE,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
pybench.py 58 # Horizontal line length
59 LINE = 79
509 print '-' * LINE
588 print '-' * LINE
590 print '-' * LINE
604 print '-' * LINE
626 print '-' * LINE
652 print '-' * LINE
717 print '-' * LINE
838 print '-' * LINE
    [all...]
  /external/doclava/src/com/google/doclava/
DocFile.java 28 public static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
79 // The document is properties up until the line "@jd:body".
83 Matcher lines = LINE.matcher(filedata);
84 String line = null; local
86 line = lines.group(1);
87 if (line.length() > 0) {
88 if (line.equals("@jd:body")) {
92 Matcher prop = PROP.matcher(line);
105 if (line != null) {
106 System.err.println(docfile + ":" + lineno + ":" + line);
129 String line = null; local
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_annot.h 45 LINE,
  /external/python/cpython2/Tools/pybench/
pybench.py 58 # Horizontal line length
59 LINE = 79
509 print '-' * LINE
588 print '-' * LINE
590 print '-' * LINE
604 print '-' * LINE
626 print '-' * LINE
652 print '-' * LINE
717 print '-' * LINE
838 print '-' * LINE
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/debug/
DebugTestBase.java 249 LINE(StepSize.LINE),
260 return step(stepKind, StepLevel.LINE, stepFilter);
297 protected final JUnit3Wrapper.Command checkLine(String sourceFile, int line) {
300 Assert.assertEquals(line, t.getLineNumber());
467 // Set debuggee command-line.
556 int line = -1;
569 line = currentLineNumber;
575 return line;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 79 line (); method
142 line (); method
204 line (); method
251 line (); method
302 line (); method
445 private void line () method in class:ReportGenerator
449 m_out.write (LINE);
523 private static final String LINE = "-------------------------------------------------------------------------------";
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
LimitTest.java 126 limit.setCounter(CounterEntity.LINE.name());
128 assertEquals(CounterEntity.LINE, limit.getEntity());
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
PythonUnitTestResultParser.java 35 * TestReport ::= TestResult* Line TimeMetric [FailMessage*] Status.
37 * FailMessage ::= EqLine ?ERROR:? string ?(?string?)? Line Traceback Line.
62 * File "test_rangelib.py", line 129, in test_rangelib
85 * File "foo.py", line 11, in testError
93 * File "foo.py", line 8, in testFail
102 * File "foo.py", line 31, in testFailWithDocString
136 static final String LINE =
218 // parser on the first line of *the entire* test output
252 // separate line before traceback messag
410 boolean line() { method in class:PythonUnitTestResultParser
    [all...]

Completed in 700 milliseconds

1 2 3 4 5 6