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

1 2 3 4

  /dalvik/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...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 112 Text text2; local
132 text2 = newDoc.createTextNode("text2");
142 element2.appendChild(text2);
146 text2 = (Text) text2.cloneNode(false);
149 element3.appendChild(text2);
152 text2 = (Text) text2.cloneNode(false);
155 element4.appendChild(text2);
    [all...]
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 33 * and {@link android.R.id#text2 text2}. There is an optional third View element with the
71 mText2 = (TextView) findViewById(com.android.internal.R.id.text2);
83 * Returns a handle to the item with ID text2.
84 * @return A handle to the item with ID text2.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 69 mText2 = (TextView) findViewById(R.id.text2);
77 CharSequence text2 = suggestion.getSuggestionText2Url(); local
78 if (text2 != null) {
79 text2 = formatUrl(text2);
81 text2 = formatText(suggestion.getSuggestionText2(), format);
86 Log.d(TAG, "bindAsSuggestion(), text1=" + text1 + ",text2=" + text2
90 setText2(text2);
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 67 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " +
102 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " +
122 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " +
161 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " +
163 mDatabase.execSQL("INSERT INTO test (text1, text2, num1, num2, image) " +
165 mDatabase.execSQL("INSERT INTO test (text1, text2, num1, num2, image) " +
178 statement = mDatabase.compileStatement("SELECT text1 FROM test WHERE text2 = ?;");
207 mDatabase.compileStatement("SELECT text1 FROM test WHERE text2 = ? AND num2 = ?;");
240 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " +
244 "(text1,text2,num1,image) VALUES (?,?,?,?)")
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/internet/
EmailHtmlUtilTest.java 123 final String text2 = new TextBuilder("text2 ").addCidImg(cid2).build("."); local
124 final String expected2 = new TextBuilder("text2 ").addUidImg(uri2).build(".");
129 .addBodyPart(MessageTestUtils.textPart("text/html", text1 + text2))
135 getContext().getContentResolver(), mAccount.mId, text1 + text2, msg2, 0);
142 .addBodyPart(MessageTestUtils.textPart("text/html", text2 + text1))
149 getContext().getContentResolver(), mAccount.mId, text2 + text1, msg3, 0);
159 .addBodyPart(MessageTestUtils.textPart("text/html", text2 + text1))
168 getContext().getContentResolver(), mAccount.mId, text2 + text1, msg4, 0);
  /external/webkit/WebCore/editing/
JoinTextNodesCommand.h 37 static PassRefPtr<JoinTextNodesCommand> create(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
39 return adoptRef(new JoinTextNodesCommand(text1, text2));
JoinTextNodesCommand.cpp 33 JoinTextNodesCommand::JoinTextNodesCommand(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
34 : SimpleEditCommand(text1->document()), m_text1(text1), m_text2(text2)
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DefaultSoftKeyboard.java 558 TextView text2 = (TextView)mSubView.findViewById(R.id.alt); local
563 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
565 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
569 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
571 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
575 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
577 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
581 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_on));
583 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
587 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_lock))
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java 143 TextView text2 = new TextView(mActivity); local
144 text2.setId(com.android.internal.R.id.text2);
148 twoLineListItem.addView(text2, params);
154 assertSame(text2, twoLineListItem.getText2());
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 65 TextView text2 = (TextView)view.findViewById(R.id.text2); local
67 text2.setText(cursor.getString(DATA_INDEX));
  /development/samples/ApiDemos/res/layout/
link.xml 33 <!-- text2 uses a string resource containing explicit <a> tags to
36 android:id="@+id/text2"
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 67 new int[] { android.R.id.text1, android.R.id.text2 },
71 new int[] { android.R.id.text1, android.R.id.text2 }
  /cts/tests/res/layout/
twolinelistitem.xml 27 <TextView android:id="@android:id/text2"
  /frameworks/base/core/res/res/layout/
simple_expandable_list_item_2.xml 33 <TextView android:id="@android:id/text2"
simple_list_item_2.xml 34 <TextView android:id="@android:id/text2"
two_line_list_item.xml 31 <TextView android:id="@android:id/text2"
search_dropdown_item_icons_2line.xml 49 <TextView android:id="@android:id/text2"
74 android:layout_above="@android:id/text2" />
  /packages/apps/Contacts/res/layout-finger/
phone_disambig_item.xml 34 android:id="@android:id/text2"
quickcontact_resolve_item.xml 34 android:id="@android:id/text2"
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 110 String text2 = token1 + "\",\"" + token2 + ";" + token3 + " <;>" + token4 + ","; local
111 final int TOKEN_END_POS_2 = text2.indexOf(token2) + token2.length();
112 final int TOKEN_END_POS_4 = text2.indexOf(token4) + token4.length();
113 assertEquals(TOKEN_END_POS_2, rfc822Tokenizer.findTokenEnd(text2, 0));
114 assertEquals(TOKEN_END_POS_4, rfc822Tokenizer.findTokenEnd(text2, TOKEN_END_POS_2 + 1));
  /external/icu4c/test/cintltst/
reapits.c 318 UChar text2[50]; local
322 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
340 uregex_setText(re, text2, -1, &status);
372 UChar text2[50]; local
377 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
389 uregex_setText(re, text2, 7, &status);
391 TEST_ASSERT(result == text2);
396 uregex_setText(re, text2, 4, &status)
739 UChar text2[80]; local
811 UChar text2[80]; \/* "No match Here" *\/ local
973 UChar text2[80]; local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 172 simpleStringSplitter.setString("text2");
174 assertEquals("text2", simpleStringSplitter.next());
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 44 // text2 has links specified by putting <a> tags in the string
49 TextView t2 = (TextView) findViewById(R.id.text2);
  /packages/apps/QuickSearchBox/res/layout/
contact_suggestion.xml 56 <TextView android:id="@+id/text2"
85 android:layout_above="@id/text2" />

Completed in 254 milliseconds

1 2 3 4