HomeSort by relevance Sort by last modified time
    Searched refs:line1 (Results 1 - 25 of 49) 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);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMath.java 29 public static float[] lineIntersect(float[] line1, float[] line2) {
30 float a0 = line1[0];
31 float a1 = line1[1];
32 float b0 = line1[2];
33 float b1 = line1[3];
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 159 String line1 = br1.readLine(); local
162 if (line1 == null && line2 == null)
164 if (line1 != null) {
165 line1 = trailingSpace.matcher(line1).replaceAll("");
167 line1 = "";
174 if(!line1.equals(line2)) {
  /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);
  /external/chromium/chrome/browser/autofill/
address.h 48 void set_line1(const string16& line1);
address.cc 165 void Address::set_line1(const string16& line1) {
166 line1_ = line1;
168 Tokenize(line1, kAddressSplitChars, &line1_tokens_);
  /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/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...]
Diff.java 136 int first1 = hunk.line1; // Index of first inserted word
141 first1 == lasthunk.line1 + lasthunk.inserted + 1) {
193 int first1 = hunk.line1; // Index of first inserted word
195 int last1 = hunk.line1 + hunk.inserted - 1;
    [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
  /external/iproute2/lib/
utils.c 720 char *line1 = NULL; local
724 if ((cc1 = getline(&line1, &len1, in)) < 0) {
732 cp = strchr(line1, '#');
736 *lenp = strlen(*linep) + strlen(line1) + 1;
744 strcat(*linep, line1);
745 free(line1);
  /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));
  /cts/apps/CtsVerifier/include/colorchecker/
colorcheckertest.h 82 Vec2f findCrossing(std::vector<int> line1, std::vector<int> line2);
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 93 private boolean pointsOnSameSide(Vector3f p1, Vector3f p2, Vector3f line1, Vector3f line2) {
94 // V1 = (line2 - line1) x (p1 - line1)
95 // V2 = (p2 - line1) x (line2 - line1)
97 temp1.set(line2).subtractLocal(line1);
99 temp2.set(p1).subtractLocal(line1);
102 temp2.set(p2).subtractLocal(line1);
  /packages/apps/Music/src/com/android/music/
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...]
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);
  /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...]
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java 328 SpannableString line1 = new SpannableString("Alice: hey there!"); local
329 line1.setSpan(bold, 0, 5, 0);
342 .addLine(line1)
  /hardware/ril/reference-ril/
atchannel.c 450 char *line1; local
456 line1 = strdup(line);
464 s_unsolHandler (line1, line2);
466 free(line1);
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 142 int line1 = __LINE__; GOOGLE_LOG(INFO) << "Visible1"; local
156 "0 "__FILE__":" + SimpleItoa(line1) + ": Visible1",
  /frameworks/base/core/java/android/text/
Selection.java 417 int line1 = layout.getLineForOffset(off1); local
420 if (line1 == line2) {
  /frameworks/base/core/tests/coretests/src/android/provider/
SearchRecentSuggestionsProviderTest.java 269 final String line1 = line1Base + i; local
271 mSearchHelper.saveRecentQuery(line1, line2);
  /external/chromium/base/i18n/
break_iterator_unittest.cc 274 const string16 line1(str.substr(0, 11));
280 EXPECT_EQ(line1, iter.GetString());
  /external/opencv/cvaux/src/
cvscanlines.cpp 128 icvCrossLines( float *line1, float *line2, float *cross_point )
132 if( line1 == 0 && line2 == 0 && cross_point == 0 )
135 delta = line1[0] * line2[1] - line1[1] * line2[0];
140 cross_point[0] = (-line1[2] * line2[1] + line1[1] * line2[2]) / delta;
141 cross_point[1] = (-line1[0] * line2[2] + line1[2] * line2[0]) / delta;
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseGitDiffHeader.pl 94 -line1
111 expectedNextLine => "-line1\n",
224 line1
248 expectedNextLine => " line1\n",

Completed in 288 milliseconds

1 2