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

1 2

  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
SeedTest.java 40 String line1 = getNextLine(s1); local
42 if (line1 != null || line2 != null) {
43 assertEquals(line1, line2);
  /external/skia/tests/
PathOpsLineIntersectionTest.cpp 55 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2,
58 SkDPoint result1 = line1.ptAtT(ts[0][i]);
69 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2) {
70 SkASSERT(ValidLine(line1));
73 int pts = i.intersect(line1, line2);
76 check_results(reporter, line1, line2, i);
77 if (line1[0] == line1[1] || line2[0] == line2[1]) {
80 if (line1[0].fY == line1[1].fY)
132 const SkDLine& line1 = coincidentTests[index][0]; local
138 const SkDLine& line1 = tests[index][0]; local
144 const SkDLine& line1 = noIntersect[index][0]; local
    [all...]
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 193 SpannableString line1 = new SpannableString("Alice: hey there!"); local
194 line1.setSpan(bold, 0, 5, 0);
207 .addLine(line1)
  /external/chromium_org/base/
file_util.cc 103 std::string line1, line2; local
104 getline(file1, line1);
114 std::string::size_type end1 = line1.find_last_not_of("\r\n");
116 line1.clear();
117 else if (end1 + 1 < line1.length())
118 line1.erase(end1 + 1);
126 if (line1 != line2)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common_unittest.cc 142 int line1 = __LINE__; GOOGLE_LOG(INFO) << "Visible1"; local
156 "0 "__FILE__":" + SimpleItoa(line1) + ": Visible1",
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 142 int line1 = __LINE__; GOOGLE_LOG(INFO) << "Visible1"; local
156 "0 "__FILE__":" + SimpleItoa(line1) + ": Visible1",
  /external/chromium/base/
file_util.cc 123 std::string line1, line2; local
124 getline(file1, line1);
134 std::string::size_type end1 = line1.find_last_not_of("\r\n");
136 line1.clear();
137 else if (end1 + 1 < line1.length())
138 line1.erase(end1 + 1);
146 if (line1 != line2)
  /external/chromium_org/chrome/browser/ui/autofill/
data_model_wrapper.cc 248 base::string16 line1 = instrument_->descriptive_name() + ASCIIToUTF16("\n"); local
249 *vertically_compact = line1 + *vertically_compact;
250 *horizontally_compact = line1 + *horizontally_compact;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 226 String line1; local
231 line1 = readLine(inputStream);
233 if (line1.equals("\n")) {
248 inputBuffer.append(line1);
  /frameworks/base/core/java/android/text/
Selection.java 417 int line1 = layout.getLineForOffset(off1); local
420 if (line1 == line2) {
Layout.java 1830 int line1 = mLayout.getLineForOffset(start); local
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 179 TextView line1; field in class:MusicPicker.TrackListAdapter.ViewHolder
219 vh.line1 = (TextView) v.findViewById(R.id.line1);
235 vh.line1.setText(vh.buffer1.data, 0, vh.buffer1.sizeCopied);
AlbumBrowserActivity.java 511 TextView line1; field in class:AlbumBrowserActivity.AlbumListAdapter.ViewHolder
579 vh.line1 = (TextView) v.findViewById(R.id.line1);
600 vh.line1.setText(displayname);
ArtistAlbumBrowserActivity.java 571 TextView line1; field in class:ArtistAlbumBrowserActivity.ArtistAlbumListAdapter.ViewHolder
642 vh.line1 = (TextView) v.findViewById(R.id.line1);
656 vh.line1 = (TextView) v.findViewById(R.id.line1);
677 vh.line1.setText(displayartist);
707 vh.line1.setText(displayname);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
SearchRecentSuggestionsTest.java 68 String line1 = "line1"; local
69 srs.saveRecentQuery(query1, line1);
78 assertEquals(line1, c
  /frameworks/base/core/tests/coretests/src/android/provider/
SearchRecentSuggestionsProviderTest.java 269 final String line1 = line1Base + i; local
271 mSearchHelper.saveRecentQuery(line1, line2);
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 234 final String line1 = "1"; local
235 address.setAddressLine(0, line1);
236 assertEquals(line1, address.getAddressLine(0));
  /external/iproute2/lib/
utils.c 725 char *line1 = NULL; local
729 if ((cc1 = getline(&line1, &len1, in)) < 0) {
737 cp = strchr(line1, '#');
741 *lenp = strlen(*linep) + strlen(line1) + 1;
749 strcat(*linep, line1);
750 free(line1);
  /external/jdiff/src/jdiff/
DiffMyers.java 374 int line0 = i0, line1 = i1; local
381 script = new change(line0, line1, i0 - line0, i1 - line1, script);
408 int line0 = i0, line1 = i1; local
415 script = new change(i0, i1, line0 - i0, line1 - i1, script);
471 LINE0 and LINE1 are the first affected lines in the two files (origin 0).
476 which the insertion was done; vice versa for INSERTED and LINE1. */
488 public final int line1; field in class:DiffMyers.change
491 LINE0 and LINE1 are the first affected lines in the two files (origin 0).
496 which the insertion was done; vice versa for INSERTED and LINE1. *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gapi/
SDL_gapivideo.c 881 PIXEL *line1, *line2; local
908 line1 = srcPointer;
914 *(DWORD*)destPointer =(*line2++ << 16) | *line1++;
923 *(DWORD*)destPointer =(*line1++ << 16) | *line2++;
966 line1 = srcPointer;
981 *(DWORD*)destPointer =(*line2++ << 16) | *line1++;
997 PIXEL *line1, *line2; local
1027 line1 = srcPointer;
1032 PIXEL c1 = *line1++;
    [all...]
  /hardware/ril/reference-ril/
atchannel.c 450 char *line1; local
456 line1 = strdup(line);
464 s_unsolHandler (line1, line2);
466 free(line1);
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py 301 s = line1(self.desc)
683 def line1(text): function
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 301 s = line1(self.desc)
683 def line1(text): function
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java 782 final View line1 = convertView.findViewById(R.id.line1); local
    [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp 1840 const RegisterLine* line1 = getRegisterLine(regTable, insnIdx); local
    [all...]

Completed in 880 milliseconds

1 2