HomeSort by relevance Sort by last modified time
    Searched refs:line2 (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/skia/tests/
PathOpsLineIntersectionTest.cpp 77 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2,
81 SkDPoint result2 = line2.ptAtT(ts[1][i]);
84 result2 = line2.ptAtT(ts[1][i ^ 1]);
94 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2) {
96 SkASSERT(ValidLine(line2));
98 int pts = i.intersect(line1, line2);
101 check_results(reporter, line1, line2, i);
102 if (line1[0] == line1[1] || line2[0] == line2[1]) {
109 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left)
191 const SkDLine& line2 = coincidentTests[index][1]; local
196 const SkDLine& line2 = tests[index][1]; local
201 const SkDLine& line2 = noIntersect[index][1]; local
    [all...]
PathOpsDLineTest.cpp 35 SkDLine line2; local
37 line2.set(pts);
38 REPORTER_ASSERT(reporter, line[0] == line2[0] && line[1] == line2[1]);
46 line2 = line.subDivide(1, 0);
47 REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]);
48 line2 = SkDLine::SubDivide(pts, 1, 0);
49 REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0])
    [all...]
  /external/skia/tests/
PathOpsLineIntersectionTest.cpp 77 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2,
81 SkDPoint result2 = line2.ptAtT(ts[1][i]);
84 result2 = line2.ptAtT(ts[1][i ^ 1]);
94 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2) {
96 SkASSERT(ValidLine(line2));
98 int pts = i.intersect(line1, line2);
101 check_results(reporter, line1, line2, i);
102 if (line1[0] == line1[1] || line2[0] == line2[1]) {
109 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left)
191 const SkDLine& line2 = coincidentTests[index][1]; local
196 const SkDLine& line2 = tests[index][1]; local
201 const SkDLine& line2 = noIntersect[index][1]; local
    [all...]
PathOpsDLineTest.cpp 35 SkDLine line2; local
37 line2.set(pts);
38 REPORTER_ASSERT(reporter, line[0] == line2[0] && line[1] == line2[1]);
46 line2 = line.subDivide(1, 0);
47 REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]);
48 line2 = SkDLine::SubDivide(pts, 1, 0);
49 REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0])
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
LineIntersection_Test.cpp 41 const _Line& line2 = tests[index][1]; local
43 int pts = intersect(line1, line2, ts);
50 xy_at_t(line2, ts.fT[1][i], result2.x, result2.y);
55 xy_at_t(line2, ts.fT[1][i ^ 1], result2.x, result2.y);
65 const _Line& line2 = noIntersect[index][1]; local
67 int pts = intersect(line1, line2, ts);
  /external/skia/experimental/Intersection/
LineIntersection_Test.cpp 41 const _Line& line2 = tests[index][1]; local
43 int pts = intersect(line1, line2, ts);
50 xy_at_t(line2, ts.fT[1][i], result2.x, result2.y);
55 xy_at_t(line2, ts.fT[1][i ^ 1], result2.x, result2.y);
65 const _Line& line2 = noIntersect[index][1]; local
67 int pts = intersect(line1, line2, ts);
  /frameworks/base/core/java/android/service/notification/
Condition.java 48 public final String line2; field in class:Condition
53 public Condition(Uri id, String summary, String line1, String line2, int icon,
58 if (line2 == null) throw new IllegalArgumentException("line2 is required");
63 this.line2 = line2;
88 dest.writeString(line2);
100 .append(",line2=").append(line2)
131 && Objects.equals(other.line2, line2
    [all...]
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
SeedTest.java 41 String line2 = getNextLine(s2); local
42 if (line1 != null || line2 != null) {
43 assertEquals(line1, line2);
  /frameworks/base/core/java/android/provider/
SearchRecentSuggestions.java 154 * @param line2 If you have configured your recent suggestions provider with
161 public void saveRecentQuery(final String queryString, final String line2) {
165 if (!mTwoLineDisplay && !TextUtils.isEmpty(line2)) {
172 saveRecentQueryBlocking(queryString, line2);
188 private void saveRecentQueryBlocking(String queryString, String line2) {
197 values.put(SuggestionColumns.DISPLAY2, line2);
  /external/lldb/test/lang/c/stepping/
TestThreadStepping.py 34 self.line2 = line_number('main.c', '// frame select 2, thread step-out while stopped at "c(1)"')
58 "frame #3.*main.c:%d" % self.line2])
66 patterns = ["frame #0.*main.c:%d" % self.line2])
  /external/lldb/test/logging/
TestLogging.py 86 for line1, line2 in zip (log_lines, expected_log_lines):
87 if line1 != line2:
89 err_msg = "Expected '" + line2 + "'; Found '" + line1 + "'"
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_GeneralDecoder.cpp 54 FX_DWORD line1, line2, line3; local
69 line2 = GBREG->getPixel(3, h - 1);
70 line2 |= GBREG->getPixel(2, h - 1) << 1;
71 line2 |= GBREG->getPixel(1, h - 1) << 2;
72 line2 |= GBREG->getPixel(0, h - 1) << 3;
79 CONTEXT |= line2 << 4;
87 line2 = ((line2 << 1) | GBREG->getPixel(w + 4, h - 1)) & 0x7f;
99 FX_DWORD line1, line2; local
122 line2 = (h > 0) ? pLine[-nStride] : 0;
166 FX_DWORD line1, line2; local
258 FX_DWORD line1, line2, line3; local
305 FX_DWORD line1, line2, line3; local
350 FX_DWORD line1, line2; local
417 FX_DWORD line1, line2; local
508 FX_DWORD line1, line2, line3; local
553 FX_DWORD line1, line2, line3; local
596 FX_DWORD line1, line2; local
663 FX_DWORD line1, line2; local
754 FX_DWORD line1, line2, line3; local
797 FX_DWORD line1, line2; local
971 FX_DWORD line1, line2; local
1010 FX_DWORD line1, line2, line3; local
1294 FX_DWORD line1, line2, line3, line4, line5; local
1509 FX_DWORD line1, line2, line3, line4, line5; local
3442 FX_DWORD line1, line2, line3; local
3763 FX_DWORD line1, line2; local
3855 FX_DWORD line1, line2, line3; local
3904 FX_DWORD line1, line2; local
3995 FX_DWORD line1, line2, line3; local
4042 FX_DWORD line1, line2; local
4133 FX_DWORD line1, line2, line3; local
4254 FX_DWORD line1, line2; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 227 String line2 = null; local
255 line2 = readLine(inputStream);
256 inputBuffer.append(line2);
257 if (line2.trim().equals(""))
269 inputBuffer.append(line2);
  /external/chromium_org/base/
file_util.cc 100 std::string line1, line2; local
102 getline(file2, line2);
117 std::string::size_type end2 = line2.find_last_not_of("\r\n");
119 line2.clear();
120 else if (end2 + 1 < line2.length())
121 line2.erase(end2 + 1);
123 if (line1 != line2)
  /external/lldb/test/lang/c/anonymous/
TestAnonymous.py 76 self.line2 = line_number('main.c', '// Set breakpoint 2 here.')
117 self.common_setup(self.line2)
129 self.common_setup(self.line2)
142 self.common_setup(self.line2)
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ActionPresenterSelector.java 98 CharSequence line2 = action.getLabel2(); local
100 vh.mButton.setText(line2);
101 } else if (TextUtils.isEmpty(line2)) {
104 vh.mButton.setText(line1 + "\n" + line2);
  /external/lldb/test/functionalities/inferior-changed/
TestInferiorChanged.py 43 self.line2 = line_number('main2.c', '// Not crash here.')
82 lldbutil.run_break_set_by_file_and_line (self, "main2.c", self.line2, num_expected_locations=1, loc_exact=True)
  /external/chromium_org/build/android/pylib/symbols/
elf_symbolizer.py 301 for (line1, line2) in lines:
306 m = ELFSymbolizer.Addr2Line.SYM_ADDR_RE.match(line2)
313 logging.warning('Got invalid symbol path from addr2line: %s' % line2)
370 line2 = process_pipe.readline().rstrip('\r\n')
371 if not line1 or not line2:
374 (line1 != '??' and line2 != '??:0'))
376 lines_for_one_symbol += [(line1, line2)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 302 line2 = f.read(len(line))
303 if line != line2:
305 f.seek(len(line2), 1)
309 line2 = f.read()
310 if line != line2:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
StringIO.py 302 line2 = f.read(len(line))
303 if line != line2:
305 f.seek(len(line2), 1)
309 line2 = f.read()
310 if line != line2:
  /external/lldb/test/python_api/function_symbol/
TestDisasmAPI.py 35 self.line2 = line_number('main.c', '// Find the line number for breakpoint 2 here.')
47 breakpoint2 = target.BreakpointCreateByLocation('main.c', self.line2)
86 self.assertTrue(lineEntry.GetLine() == self.line2)
TestSymbolAPI.py 35 self.line2 = line_number('main.c', '// Find the line number for breakpoint 2 here.')
47 breakpoint2 = target.BreakpointCreateByLocation('main.c', self.line2)
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/
TestDataFormatterLibcxxList.py 34 self.line2 = line_number('main.cpp', '// Set second break point at this line.')
41 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line2, num_expected_locations=-1)
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/
TestDataFormatterLibcxxVector.py 34 self.line2 = line_number('main.cpp', '// Set second break point at this line.')
41 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line2, num_expected_locations=-1)
  /external/lldb/test/lang/c/set_values/
TestSetValues.py 31 self.line2 = line_number('main.c', '// Set break point #2.')
44 lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line2, num_expected_locations=1, loc_exact=True)

Completed in 618 milliseconds

1 2 3 4 5 6