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

1 2 3

  /development/samples/ApiDemos/src/com/example/android/apis/view/
Tabs3.java 25 * An example of tab content that launches an activity via {@link android.widget.TabHost.TabSpec#setContent(android.content.Intent)}
37 .setContent(new Intent(this, List1.class)));
41 .setContent(new Intent(this, List8.class)));
47 .setContent(new Intent(this, Controls2.class)
Tabs1.java 30 * for its indicators and views by id from a layout file ({@link TabSpec#setContent(int)}).
43 .setContent(R.id.view1));
46 .setContent(R.id.view2));
49 .setContent(R.id.view3));
Tabs2.java 27 * Example of using a tab content factory for the content via {@link TabHost.TabSpec#setContent(android.widget.TabHost.TabContentFactory)}
41 .setContent(this));
44 .setContent(this));
47 .setContent(this));
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 49 ((ContentHandlerImpl) handler).setContent(new Foo());
53 ((ContentHandlerImpl) handler).setContent(new FooSub());
58 ((ContentHandlerImpl) handler).setContent(new Foo());
74 ((ContentHandlerImpl) handler).setContent(new Foo());
87 ch.setContent(new Object());
100 public void setContent(Object content) {
  /external/webkit/WebCore/html/
HTMLMetaElement.h 43 void setContent(const String&);
HTMLMetaElement.cpp 106 void HTMLMetaElement::setContent(const String& value)
  /cts/tests/src/android/app/cts/
MockTabActivity.java 43 .setContent(new Intent(this, ChildTabActivity.class)));
46 .setContent(new Intent(this, MockActivity.class)));
48 tabHost.addTab(tabHost.newTabSpec(TAB3).setIndicator(TAB3).setContent(
LaunchpadTabActivity.java 39 ts.setContent(tabIntent);
  /external/apache-http/src/org/apache/http/impl/entity/
EntityDeserializer.java 81 entity.setContent(new ChunkedInputStream(inbuffer));
85 entity.setContent(new IdentityInputStream(inbuffer));
89 entity.setContent(new ContentLengthInputStream(inbuffer, len));
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadTabActivity.java 39 ts.setContent(tabIntent);
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 74 tabSpec.setIndicator(TAG_TAB2).setContent(new MockTabContentFactoryText());
84 tabSpec.setIndicator((CharSequence)null).setContent(new MockTabContentFactoryList());
104 tabSpec.setContent(new MockTabContentFactoryText());
118 tabSpec.setContent(new MockTabContentFactoryList());
129 tabSpec.setContent(new MockTabContentFactoryList());
141 method = "setContent",
149 tabSpec2.setContent(com.android.cts.stub.R.id.tabhost_textview);
159 tabSpec3.setContent(com.android.cts.stub.R.id.tabhost_listview);
167 method = "setContent",
175 tabSpec2.setContent(new MockTabContentFactoryText())
    [all...]
TabHostTest.java 118 tabSpec.setContent(new MyTabContentFactoryList());
131 * 2. no exception occurs when uses TabSpec.setContent(android.content.Intent) after setup().
158 tabSpec.setContent(intent);
193 tabSpec.setContent(new MyTabContentFactoryList());
231 tabHost.addTab(tabHost.newTabSpec(TAG_TAB1).setIndicator(TAG_TAB1).setContent(tcf));
232 tabHost.addTab(tabHost.newTabSpec(TAG_TAB2).setIndicator(TAG_TAB2).setContent(tcf));
292 tabSpec.setContent(new MyTabContentFactoryText());
320 tabSpec.setContent(new MyTabContentFactoryText());
341 tabSpec.setContent(new MyTabContentFactoryList());
360 tabSpec.setContent(new MyTabContentFactoryText())
    [all...]
  /cts/tests/src/android/widget/cts/
TabHostStubActivity.java 46 .setContent(new MyTabContentFactory()));
  /external/apache-http/src/org/apache/http/entity/
BasicHttpEntity.java 72 * since {@link #setContent setContent} has been called
116 public void setContent(final InputStream instream) {
  /external/webkit/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp 52 item.setContent(QByteArray());
  /packages/apps/Contacts/src/com/android/contacts/
DialtactsActivity.java 144 .setContent(intent));
154 .setContent(intent));
164 .setContent(intent));
174 .setContent(intent));
  /external/webkit/WebCore/inspector/front-end/
ScriptView.js 55 this.sourceFrame.setContent("text/javascript", this.script.source);
SourceView.js 79 this.sourceFrame.setContent(this.resource.mimeType, content, this.resource.url);
  /frameworks/base/core/java/android/net/http/
AndroidHttpClientConnection.java 393 entity.setContent(new ChunkedInputStream(inbuffer));
397 entity.setContent(new IdentityInputStream(inbuffer));
401 entity.setContent(new ContentLengthInputStream(inbuffer, len));
  /packages/apps/Camera/src/com/android/camera/ui/
RotatePane.java 118 public void setContent(GLView view) {
129 throw new UnsupportedOperationException("use setContent(GLView)");
134 throw new UnsupportedOperationException("use setContent(null)");
PopupWindow.java 62 throw new UnsupportedOperationException("use setContent(GLView)");
145 public void setContent(GLView content) {
146 mRotatePane.setContent(content);
  /frameworks/base/core/java/android/widget/
TabHost.java 145 * If you are using {@link TabSpec#setContent(android.content.Intent)}, this
437 public TabSpec setContent(int viewId) {
446 public TabSpec setContent(TabContentFactory contentFactory) {
454 public TabSpec setContent(Intent intent) {
  /external/webkit/WebKit/qt/Api/
qgraphicswebview.h 72 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
qwebview.h 66 void setContent(const QByteArray& data, const QString& mimeType = QString(), const QUrl& baseUrl = QUrl());
  /packages/apps/Browser/src/com/android/browser/
CombinedBookmarkHistoryActivity.java 152 .setContent(intent));

Completed in 1216 milliseconds

1 2 3