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

1 2 3 4 5

  /external/strace/tests/
prctl-seccomp-strict.c 44 static const char text2[] = "+++ exited with 0 +++\n"; local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
seccomp-strict.c 43 static const char text2[] = "+++ exited with 0 +++\n"; local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
  /external/strace/tests-m32/
prctl-seccomp-strict.c 44 static const char text2[] = "+++ exited with 0 +++\n"; local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
seccomp-strict.c 43 static const char text2[] = "+++ exited with 0 +++\n"; local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
  /external/strace/tests-mx32/
prctl-seccomp-strict.c 44 static const char text2[] = "+++ exited with 0 +++\n"; local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
seccomp-strict.c 43 static const char text2[] = "+++ exited with 0 +++\n"; local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
sort_b_a-1.s 3 text2: label
sort_b_a.s 1 .section .text2
3 text2: label
sort_b_n-1.s 2 text2: label
sort_b_n.s 1 .section .text2
2 text2: label
  /external/libcap/contrib/bug400591/
bug.c 16 char *text1, *text2; local
35 text2 = cap_to_text(caps2, NULL);
36 assert(text2);
38 assert(strcmp(text1, text2) == 0);
  /external/libbrillo/brillo/
data_encoding_unittest.cc 46 const std::string text2 = local
66 EXPECT_EQ(encoded2, Base64Encode(text2));
74 const std::string text2 = local
95 EXPECT_EQ(encoded2, Base64EncodeWrapLines(text2));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MarqueeActivity.java 45 final TextView text2 = new TextView(this); local
46 text2.setText("This is a marquee inside a TextView");
47 text2.setSingleLine(true);
48 text2.setHorizontalFadingEdgeEnabled(true);
49 text2.setEllipsize(TextUtils.TruncateAt.MARQUEE);
52 linearLayout.addView(text2, params);
59 text2.setVisibility(View.INVISIBLE);
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(),
64 text2.startAnimation(animation);
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 57 TextView text2 = (TextView)view.findViewById(R.id.text2); local
59 text2.setText(emailAddress);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/
ZonePickerTest.java 61 TextView text2 = new TextView(RuntimeEnvironment.application); local
62 text2.setId(android.R.id.text2);
63 convertView.addView(text2);
66 final CharSequence text = text2.getText();
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
AppCompatButtonTest.java 51 final String text2 = mResources.getString(R.string.sample_text2); local
63 assertEquals("Button starts in all caps off", text2,
74 assertEquals("Button is now in all caps on", text2.toUpperCase(),
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountsListAdapter.java 93 final TextView text2 = (TextView) resultView.findViewById(android.R.id.text2); local
97 text2.setText(mAccounts.get(position).getNameLabel());
  /cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java 109 TextView text2 = new TextView(mActivity); local
110 text2.setId(android.R.id.text2);
114 twoLineListItem.addView(text2, params);
120 assertSame(text2, twoLineListItem.getText2());
  /developers/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java 82 holder.text2 = (TextView) convertView.findViewById(android.R.id.text2);
88 holder.text2.setText(event.text);
95 TextView text2; field in class:DataFragment.DataItemAdapter.ViewHolder
  /developers/samples/android/wearable/wear/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java 82 holder.text2 = (TextView) convertView.findViewById(android.R.id.text2);
88 holder.text2.setText(event.text);
95 TextView text2; field in class:DataFragment.DataItemAdapter.ViewHolder
  /development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DataFragment.java 82 holder.text2 = (TextView) convertView.findViewById(android.R.id.text2);
88 holder.text2.setText(event.text);
95 TextView text2; field in class:DataFragment.DataItemAdapter.ViewHolder
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestMultipleParagraphs.java 56 private static final String text2 = "\u05d0 1-2\u001c\u0630 1-2\u001c1-2"; field in class:TestMultipleParagraphs
357 src = text2;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodenormalize01.java 83 Text text2; local
102 text2 = newDoc.createTextNode("text2");
112 appendedChild = element2.appendChild(text2);
116 text2 = (Text) text2.cloneNode(false);
119 appendedChild = element3.appendChild(text2);
122 text2 = (Text) text2.cloneNode(false);
125 appendedChild = element4.appendChild(text2);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 100 Text text2; local
120 text2 = newDoc.createTextNode("text2");
130 element2.appendChild(text2);
134 text2 = (Text) text2.cloneNode(false);
137 element3.appendChild(text2);
140 text2 = (Text) text2.cloneNode(false);
143 element4.appendChild(text2);
    [all...]
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 151 final Editable text2 = mConnection.getEditable(); local
153 assertEquals(strLength, text2.length());
154 assertEquals(str.toString(), text2.toString());
174 PollingCheck.waitFor(() -> text2.toString().equals(mView.getText().toString()));
178 int end = text2.length();

Completed in 541 milliseconds

1 2 3 4 5