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

1 2

  /external/emma/core/java12/com/vladium/emma/report/
IReportDataModel.java 23 IReportDataView getView (int viewType);
ReportDataModel.java 34 public synchronized IReportDataView getView (final int viewType)
38 if (viewType >= m_views.length) throw new IllegalArgumentException ("invalid viewType: " + viewType);
40 IReportDataView view = m_views [viewType];
46 final boolean srcView = viewType == IReportDataView.HIER_SRC_VIEW;
128 m_views [viewType] = view;
ReportProperties.java 89 public void setViewType (final int viewType)
91 if ($assert.ENABLED) $assert.ASSERT (viewType >= IReportDataView.HIER_CLS_VIEW && viewType <= IReportDataView.HIER_SRC_VIEW, "invalid view type: " + viewType);
93 m_viewType = viewType;
283 final String viewType = getReportProperty (properties, type, IReportProperties.VIEW_TYPE, IReportProperties.DEFAULT_VIEW_TYPE);
284 result.setViewType (IReportProperties.SRC_VIEW.equals (viewType) ? IReportDataView.HIER_SRC_VIEW : IReportDataView.HIER_CLS_VIEW);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionViewInflater.java 41 * @param viewType The unique type of views inflated by this factory
46 public SuggestionViewInflater(String viewType, Class<? extends SuggestionView> viewClass,
48 mViewType = viewType;
SuggestionsAdapterBase.java 60 for (String viewType : mViewFactory.getSuggestionViewTypes()) {
61 if (!mViewTypeMap.containsKey(viewType)) {
62 mViewTypeMap.put(viewType, mViewTypeMap.size());
147 String viewType = mViewFactory.getViewType(suggestion);
148 if (!mViewTypeMap.containsKey(viewType)) {
149 throw new IllegalStateException("Unknown viewType " + viewType);
151 return viewType;
  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpView.java 37 private String viewType;
41 public ChimpView(String viewType, List<String> ids) {
42 this.viewType = viewType;
52 return manager.queryView(viewType, ids, query);
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java 27 import com.android.calendar.CalendarController.ViewType;
262 mController.sendEvent(this, EventType.GO_TO, time, time, -1, ViewType.CURRENT);
294 int viewType = -1;
298 viewType = icicle.getInt(BUNDLE_KEY_RESTORE_VIEW, -1);
311 if (viewType == -1) {
312 viewType = Utils.getViewTypeFromIntentAndSharedPref(this);
361 configureActionBar(viewType);
374 initFragments(timeMillis, viewType, icicle);
406 private void configureActionBar(int viewType) {
410 createButtonsSpinner(viewType);
    [all...]
CalendarViewAdapter.java 19 import com.android.calendar.CalendarController.ViewType;
85 public CalendarViewAdapter(Context context, int viewType) {
89 mCurrentMainView = viewType;
177 case ViewType.DAY:
182 case ViewType.WEEK:
191 case ViewType.MONTH:
195 case ViewType.AGENDA:
226 TextView viewType = (TextView)v.findViewById(R.id.button_view);
230 viewType.setText(mButtonNames [DAY_BUTTON_INDEX]);
234 viewType.setText(mButtonNames [WEEK_BUTTON_INDEX])
    [all...]
CalendarController.java 143 public interface ViewType {
155 public int viewType; // one of the ViewType
279 info.viewType = ViewType.CURRENT;
306 * @param viewType {@link ViewType}
309 int viewType) {
310 sendEvent(sender, eventType, start, end, start, eventId, viewType, EXTRA_GOTO_TIME, null,
318 int viewType, long extraLong, String query, ComponentName componentName)
    [all...]
SearchActivity.java 44 import com.android.calendar.CalendarController.ViewType;
205 searchEventInfo.viewType = ViewType.AGENDA;
252 mController.sendEvent(this, EventType.GO_TO, t, null, -1, ViewType.CURRENT);
309 mController.sendEvent(this, EventType.EVENTS_CHANGED, null, null, -1, ViewType.CURRENT);
335 mController.sendEvent(this, EventType.SEARCH, null, null, -1, ViewType.CURRENT, 0, query,
  /frameworks/base/core/java/android/preference/
PreferenceGroupAdapter.java 264 int viewType = Collections.binarySearch(mPreferenceLayouts, mTempPreferenceLayout);
265 if (viewType < 0) {
270 return viewType;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListAdapter.java 358 int viewType = getItemViewType(position);
359 switch (viewType) {
365 throw new IllegalArgumentException("Illegal view type: " + viewType);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 249 IType viewType = javaProject.findType(className);
250 if (viewType != null) {
251 IJavaSearchScope scope = SearchEngine.createHierarchyScope(viewType);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileAdapter.java 413 private int getLayoutResourceId(int viewType) {
414 switch (viewType) {
424 throw new IllegalArgumentException("Unrecognized viewType " + viewType);
  /packages/apps/Settings/src/com/android/settings/
CryptKeeper.java 210 private boolean isDebugView(String viewType /* non-nullable */) {
211 return viewType.equals(getIntent().getStringExtra(EXTRA_FORCE_VIEW));
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
ListView.java     [all...]
GridView.java     [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp     [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java     [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 1252 milliseconds

1 2