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

12 3 4 5 6

  /external/chromium_org/native_client_sdk/src/build_tools/
verify_filelist.py 173 def compare(line1, line2):
175 line2 = SplitPattern(line2)[0].lower()
176 return cmp(line1, line2)
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticIntersection.cpp 128 _Line line1, line2; local
154 xy_at_t(quad2, minT2, line2[0].x, line2[0].y);
155 xy_at_t(quad2, maxT2, line2[1].x, line2[1].y);
161 pts = ::intersect(line1, line2, t1, t2);
176 treat1AsLine ? line1 : line2, lq);
181 double lineT = t_at(treat1AsLine ? line1 : line2, midQuad);
182 xy_at_t(treat1AsLine ? line1 : line2, lineT, midLine.x, midLine.y);
  /external/skia/experimental/Intersection/
QuadraticIntersection.cpp 128 _Line line1, line2; local
154 xy_at_t(quad2, minT2, line2[0].x, line2[0].y);
155 xy_at_t(quad2, maxT2, line2[1].x, line2[1].y);
161 pts = ::intersect(line1, line2, t1, t2);
176 treat1AsLine ? line1 : line2, lq);
181 double lineT = t_at(treat1AsLine ? line1 : line2, midQuad);
182 xy_at_t(treat1AsLine ? line1 : line2, lineT, midLine.x, midLine.y);
  /external/chromium_org/third_party/skia/tests/
PathOpsQuadLineIntersectionThreadedTest.cpp 102 SkDLine line2 = {{{x, y}, {x + h, y + v}}}; local
103 testLineIntersect(state.fReporter, quad, line2, x, y);
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
TestBreakpointConditions.py 61 self.line2 = line_number('main.c', "// Find the line number of c's parent call here.")
100 "frame #1.*main.c:%d" % self.line2])
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 48 self.line2 = line_number('main.c', '// b(2) -> c(2) Find the call site of b(2).')
78 "frame #2.*main.c:%d" % self.line2])
  /external/lldb/test/python_api/lldbutil/iter/
TestLLDBIterator.py 20 self.line2 = line_number('main.cpp', '// And that line.')
79 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line2)
  /external/skia/tests/
PathOpsQuadLineIntersectionThreadedTest.cpp 102 SkDLine line2 = {{{x, y}, {x + h, y + v}}}; local
103 testLineIntersect(state.fReporter, quad, line2, x, y);
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_test_util.h 23 const std::string& line2);
wallet_test_util.cc 77 const std::string& line2) {
80 street_address.push_back(ASCIIToUTF16(line2));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py 424 def merge_expectation_lines(line1, line2, model_all_expectations):
425 """Merges the expectations of line2 into line1 and returns a fresh object."""
427 return line2
428 if line2 is None:
430 if model_all_expectations and line1.filename != line2.filename:
431 return line2
438 result.filename = line2.filename
439 result.line_numbers = line1.line_numbers + "," + line2.line_numbers
442 result.parsed_expectations = set(line1.parsed_expectations) | set(line2.parsed_expectations)
443 result.expectations = list(set(line1.expectations) | set(line2.expectations)
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsCreateFragment.java 219 final View line2 = convertView.findViewById(R.id.line2); local
236 if (line2 != null) line2.setVisibility(View.GONE);
  /cts/tests/tests/provider/src/android/provider/cts/
SearchRecentSuggestionsTest.java 83 String line2 = "line2"; local
84 srs.saveRecentQuery(query2, line2);
105 assertEquals(line2, c
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 127 for i, (line1, line2) in enumerate(
129 if line1 != line2:
131 (changes, i + 1, line1, line2))
  /external/lldb/test/python_api/hello_world/
TestHelloWorld.py 91 self.line2 = line_number('main.c', '// Waiting to be attached...')
156 substrs = ['main.c:%d' % self.line2,
194 substrs = ['main.c:%d' % self.line2,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSDetailItems.java 168 final boolean twoLines = !TextUtils.isEmpty(item.line2);
170 summary.setText(twoLines ? item.line2 : null);
217 public String line2; field in class:QSDetailItems.Item
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmssm.c 204 Closest point in sector line1 to sector line2 (both are defined as 0 <=t <= 1)
217 cmsBool ClosestLineToLine(cmsVEC3* r, const cmsLine* line1, const cmsLine* line2)
224 _cmsVEC3minus(&w0, &line1 ->a, &line2 ->a);
227 b = _cmsVEC3dot(&line1 ->u, &line2 ->u);
228 c = _cmsVEC3dot(&line2 ->u, &line2 ->u);
230 e = _cmsVEC3dot(&line2 ->u, &w0);
  /art/runtime/verifier/
register_line.h 158 int CompareLine(const RegisterLine* line2) const {
159 DCHECK(monitors_ == line2->monitors_);
160 // TODO: DCHECK(reg_to_lock_depths_ == line2->reg_to_lock_depths_);
161 return memcmp(&line_, &line2->line_, num_regs_ * sizeof(uint16_t));
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 239 final String line2 = "2"; local
240 address.setAddressLine(5, line2);
241 assertEquals(line2, address.getAddressLine(5));
  /external/lldb/test/python_api/target/
TestTargetAPI.py 110 self.line2 = line_number('main.c', '// Find the line number for breakpoint 2 here.')
248 breakpoint2 = target.BreakpointCreateByLocation('main.c', self.line2)
281 self.assertTrue(lineEntry.GetLine() == self.line2)
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 233 SpannableString line2 = new SpannableString("Bob: hi there!"); local
234 line2.setSpan(bold, 0, 3, 0);
246 .addLine(line2)
  /cts/apps/CtsVerifier/include/colorchecker/
colorcheckertest.h 82 Vec2f findCrossing(std::vector<int> line1, std::vector<int> line2);
  /hardware/ril/reference-ril/
atchannel.c 441 const char *line2; local
447 line2 = readline();
449 if (line2 == NULL) {
454 s_unsolHandler (line1, line2);
  /external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
TestDataFormatterPythonSynth.py 47 self.line2 = line_number('main.cpp', '// Set cast break point at this line.')
209 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line2, num_expected_locations=1, loc_exact=False)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
BluetoothTile.java 207 item.line2 = mContext.getString(R.string.quick_settings_connected);
211 item.line2 = mContext.getString(R.string.quick_settings_connecting);

Completed in 1087 milliseconds

12 3 4 5 6