HomeSort by relevance Sort by last modified time
    Searched refs:newRow (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumn.java 42 final TableRow newRow = new TableRow(AddColumn.this);
47 newRow.addView(view, new TableRow.LayoutParams());
49 table.addView(newRow, new TableLayout.LayoutParams());
50 newRow.requestLayout();
  /external/webkit/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 86 QTest::newRow("amazon") << QUrl("http://www.amazon.com");
87 QTest::newRow("kde") << QUrl("http://www.kde.org");
88 QTest::newRow("apple") << QUrl("http://www.apple.com");
  /external/webkit/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 45 QTestData& tst_QScriptValue::newRow(const char* tag)
47 return QTest::newRow(tag) << m_currentExpression;
282 QTest::newRow("string") << QString::fromAscii("'hello'") << QString::fromAscii("hello");
283 QTest::newRow("string utf") << QString::fromUtf8("'?????ó???'") << QString::fromUtf8("?????ó???");
284 QTest::newRow("expression") << QString::fromAscii("1 + 4") << QString::fromAscii("5");
285 QTest::newRow("null") << QString::fromAscii("null") << QString::fromAscii("null");
286 QTest::newRow("boolean") << QString::fromAscii("false") << QString::fromAscii("false");
287 QTest::newRow("undefined") << QString::fromAscii("undefined") << QString::fromAscii("undefined");
288 QTest::newRow("object") << QString::fromAscii("new Object") << QString::fromAscii("[object Object]");
315 QTest::newRow("native number") << nnumber << QString::number(123)
    [all...]
tst_qscriptvalue_generated.cpp 249 newRow(expr) << isValid.contains(expr);
278 newRow(expr) << isBool.contains(expr);
307 newRow(expr) << isBoolean.contains(expr);
371 newRow(expr) << isNumber.contains(expr);
403 newRow(expr) << isFunction.contains(expr);
429 newRow(expr) << isNull.contains(expr);
482 newRow(expr) << isString.contains(expr);
509 newRow(expr) << isUndefined.contains(expr);
548 newRow(expr) << isObject.contains(expr);
673 newRow(expr) << toNumber.value(expr)
    [all...]
tst_qscriptvalue.h 92 QTestData& newRow(const char* tag);
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 32 cursor.newRow().add(null);
46 cursor.newRow()
58 cursor.newRow()
  /cts/tests/tests/database/src/android/database/cts/
MatrixCursor_RowBuilderTest.java 45 RowBuilder builder = cursor.newRow();
81 assertNotNull(cursor.newRow());
MatrixCursorTest.java 75 method = "newRow",
86 RowBuilder builder = mMatrixCursor.newRow();
122 assertNotNull(mMatrixCursor.newRow());
  /external/webkit/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 119 QTest::newRow("WithoutPlugin") << "<html><body id='b'>text</body></html>";
120 QTest::newRow("WindowedPlugin") << QString("<html><body id='b'>text<embed src='resources/test.swf'></embed></body></html>");
121 QTest::newRow("WindowlessPlugin") << QString("<html><body id='b'>text<embed src='resources/test.swf' wmode=\"transparent\"></embed></body></html>");
  /external/webkit/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 86 QTest::newRow("amazon") << QUrl("http://www.amazon.com");
  /external/webkit/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 156 QTest::newRow("null") << QWebPluginInfo() << true;
157 QTest::newRow("foo") << QWebSettings::pluginDatabase()->pluginForMimeType("foobarbaz") << true;
161 QTest::newRow(QString::number(i).toUtf8().constData()) << plugins.at(i) << false;
278 QTest::newRow("null") << QWebPluginInfo() << QWebPluginInfo() << true;
279 QTest::newRow("application/x-shockwave-flash") << database->pluginForMimeType("application/x-shockwave-flash")
281 QTest::newRow("foo/bar-baz") << database->pluginForMimeType("foo/bar-baz")
289 QTest::newRow(QString("%1==%2").arg(first.name(), second.name()).toUtf8().constData())
407 QTest::newRow("null") << QWebPluginInfo() << QWebPluginInfo();
414 QTest::newRow(QString("%1=%2").arg(first.name(), second.name()).toUtf8().constData()) << first << second;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 62 public IRow newRow ()
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 82 cursor.newRow().add(id).add(string).add(Intent.ACTION_SEARCH).add(string);
  /external/clearsilver/python/examples/base/
odb_test.py 111 newrow = tbl.newRow() variable in class:TEST_DATABASE.AgentsTable
112 newrow.name = "name #%d" % new_id
113 newrow.login = "name%d" % new_id
114 newrow.ext_email = "%d@name" % new_id
115 newrow.save()
116 if newrow.agent_id != new_id:
117 raise "new insert id (%s) does not match expected value (%d)" % (newrow.agent_id,new_id)
158 repl_row = tbl.newRow(replace=1)
267 row = tbl.newRow()
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 184 final HTMLTable.IRow coverage = summaryTable.newRow ();
216 HTMLTable.IRow row = statsTable.newRow ();
222 row = statsTable.newRow ();
227 row = statsTable.newRow ();
230 row = statsTable.newRow ();
236 row = statsTable.newRow ();
243 final HTMLTable.IRow first = statsTable.newRow (); // stats always available
251 final HTMLTable.IRow second = statsTable.newRow ();
363 final HTMLTable.IRow coverage = summaryTable.newRow ();
480 final HTMLTable.IRow coverage = summaryTable.newRow ();
    [all...]
  /packages/apps/Email/src/com/android/exchange/provider/
ExchangeProvider.java 60 mc.newRow().add(id).add(name).add(address);
GalEmailAddressAdapter.java 177 MatrixCursor.RowBuilder rb = matrixCursor.newRow();
  /frameworks/base/test-runner/src/android/test/
TestListActivity.java 154 cursor.newRow().add("Run All").add(id++);
161 cursor.newRow().add(prefix + title).add(id++);
  /frameworks/base/core/java/android/database/
MatrixCursor.java 23 * {@link #newRow()} to add rows. Automatically expands internal capacity
85 public RowBuilder newRow() {
  /external/chromium/third_party/icu/source/test/perf/perldriver/
Output.pm 145 sub newRow {
345 newRow;
  /external/icu4c/test/perf/perldriver/
Output.pm 145 sub newRow {
345 newRow;
  /external/webkit/WebCore/html/
HTMLTableElement.cpp 213 RefPtr<HTMLTableRowElement> newRow = new HTMLTableRowElement(trTag, document());
214 newBody->appendChild(newRow, ec);
216 return newRow.release();
220 RefPtr<HTMLTableRowElement> newRow = new HTMLTableRowElement(trTag, document());
221 parent->insertBefore(newRow, row, ec);
222 return newRow.release();
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
RecentCallsListActivityTests.java 268 MatrixCursor.RowBuilder row = mCursor.newRow();
  /packages/apps/Email/src/com/android/email/activity/
AccountFolderList.java 298 row = childCursor.newRow();
307 row = childCursor.newRow();
318 row = childCursor.newRow();
328 row = childCursor.newRow();
    [all...]

Completed in 306 milliseconds

1 2