/external/webkit/LayoutTests/fast/dom/NodeList/ |
nodelist-item-with-name-expected.txt | 6 text1 11 PASS div1.innerHTML is 'text1'
|
nodelist-item-with-name.html | 8 <div id='div1'>text1</div> 23 shouldBe("div1.innerHTML", "'text1'");
|
nodelist-item-with-index-expected.txt | 6 text1
|
/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
test_node_test-expected.txt | 9 PASS nodeInResult(TEXT1, result) is true 11 PASS nodeInResult(TEXT1, result) is true
|
/development/tutorials/NotepadCodeLab/Notepadv1Solution/res/layout/ |
notes_row.xml | 2 <TextView android:id="@+id/text1"
|
/development/tutorials/NotepadCodeLab/Notepadv2/res/layout/ |
notes_row.xml | 2 <TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android"
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/res/layout/ |
notes_row.xml | 2 <TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android"
|
/development/tutorials/NotepadCodeLab/Notepadv3/res/layout/ |
notes_row.xml | 2 <TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android"
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/res/layout/ |
notes_row.xml | 2 <TextView android:id="@+id/text1" xmlns:android="http://schemas.android.com/apk/res/android"
|
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteProgramTest.java | 85 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " + 87 mDatabase.execSQL("INSERT INTO test (text1, text2, num1, num2, image) " + 89 mDatabase.execSQL("INSERT INTO test (text1, text2, num1, num2, image) " + 102 statement = mDatabase.compileStatement("SELECT text1 FROM test WHERE text2 = ?;"); 124 cursor = mDatabase.query("test", new String[]{"text1"}, "where text1='a'", 135 cursor = mDatabase.query("test", new String[]{"text1"}, "where text1='a'", 147 "SELECT text1 FROM test WHERE text2 = ? AND num2 = ?;"); 161 mDatabase.execSQL("CREATE TABLE test (_id INTEGER PRIMARY KEY, text1 TEXT, text2 TEXT, " [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
MarqueeActivity.java | 37 final TextView text1 = new TextView(this); local 38 text1.setText("This is a marquee inside a TextView"); 39 text1.setSingleLine(true); 40 text1.setHorizontalFadingEdgeEnabled(true); 41 text1.setEllipsize(TextUtils.TruncateAt.MARQUEE); 42 linearLayout.addView(text1, new LinearLayout.LayoutParams(
|
/packages/apps/Calendar/src/com/android/calendar/ |
EmailAddressAdapter.java | 56 TextView text1 = (TextView)view.findViewById(R.id.text1); local 58 text1.setText(displayName); 64 TextView text1 = (TextView)view.findViewById(R.id.text1); local 67 text1.setText(text);
|
/packages/apps/Email/src/com/android/email/ |
EmailAddressAdapter.java | 57 TextView text1 = (TextView)view.findViewById(R.id.text1); local 59 text1.setText(displayName); 65 TextView text1 = (TextView)view.findViewById(R.id.text1); local 68 text1.setText(text);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
nodenormalize01.java | 82 Text text1; local 101 text1 = newDoc.createTextNode("text1"); 111 appendedChild = element2.appendChild(text1); 115 text1 = (Text) text1.cloneNode(false); 118 appendedChild = element3.appendChild(text1); 121 text1 = (Text) text1.cloneNode(false); 124 appendedChild = element4.appendChild(text1); [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NodeNormalize.java | 99 Text text1; local 119 text1 = newDoc.createTextNode("text1"); 129 element2.appendChild(text1); 133 text1 = (Text) text1.cloneNode(false); 136 element3.appendChild(text1); 139 text1 = (Text) text1.cloneNode(false); 142 element4.appendChild(text1); [all...] |
/frameworks/base/core/res/res/layout/ |
simple_expandable_list_item_2.xml | 26 <TextView android:id="@android:id/text1" 36 android:layout_below="@android:id/text1" 37 android:layout_alignLeft="@android:id/text1"
|
simple_list_item_2.xml | 24 <TextView android:id="@android:id/text1" 35 android:layout_below="@android:id/text1" 36 android:layout_alignLeft="@android:id/text1"
|
simple_dropdown_item_2line.xml | 38 android:id="@android:id/text1" 53 android:layout_below="@android:id/text1" 54 android:layout_alignLeft="@android:id/text1" />
|
simple_list_item_activated_2.xml | 27 <TextView android:id="@android:id/text1" 38 android:layout_below="@android:id/text1" 39 android:layout_alignLeft="@android:id/text1"
|
/frameworks/base/core/java/android/widget/ |
TwoLineListItem.java | 32 * {@link android.R.id#text1 text1} 70 mText1 = (TextView) findViewById(com.android.internal.R.id.text1); 75 * Returns a handle to the item with ID text1. 76 * @return A handle to the item with ID text1.
|
/packages/apps/Contacts/res/layout/ |
custom_contact_list_filter_account.xml | 35 android:id="@android:id/text1" 47 android:layout_below="@android:id/text1" 48 android:layout_alignLeft="@android:id/text1"
|
/packages/apps/Settings/res/layout/ |
date_time_setup_custom_list_item_2.xml | 26 <TextView android:id="@android:id/text1" 38 android:layout_below="@android:id/text1" 39 android:layout_alignLeft="@android:id/text1"
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
PowerGaugePreference.java | 62 final TextView text1 = (TextView) view.findViewById(android.R.id.text1); local 63 text1.setText(mProgressText);
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodeisequalnode28.js | 91 var text1; 101 text1 = doc.createTextNode(""); 104 isEqual = text1.isEqualNode(text2); 106 isEqual = text1.isEqualNode(text3);
|
textwholetext03.js | 90 var text1; 101 text1 = doc.createTextNode("Text I"); 103 appendedChild = elem.appendChild(text1); 105 combinedText = text1.wholeText;
|