Searched defs:factory (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/adapters/
H A DAlbumSetCursorAdapter.java41 public void setDrawableFactory(LoaderCompatShim<Cursor> factory) { argument
42 mDrawableFactory = factory;
H A DPhotoThumbnailAdapter.java43 public void setDrawableFactory(LoaderCompatShim<Cursor> factory) { argument
44 mDrawableFactory = factory;
/packages/apps/UnifiedEmail/src/com/android/mail/content/
H A DObjectCursor.java39 public ObjectCursor(Cursor cursor, CursorCreator<T> factory) { argument
46 mFactory = factory;
H A DObjectCursorLoader.java50 /** The factory that knows how to create T objects from cursors: one object per row. */
56 CursorCreator<T> factory) {
63 if (factory == null) {
64 throw new NullPointerException("The factory cannot be null");
70 mFactory = factory;
55 ObjectCursorLoader(Context context, Uri uri, String[] projection, CursorCreator<T> factory) argument
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DCursorFactoryListAdapter.java39 * A simple view factory that inflates the views from XML and puts the display
61 public CursorFactoryListAdapter(Context context, ViewFactory factory) { argument
63 mViewFactory = factory;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DVer4DictDecoder.java37 this(dictDirectory, null /* factory */);
41 /* package */ Ver4DictDecoder(final File dictDirectory, final DictionaryBufferFactory factory) { argument
H A DVer2DictDecoderTests.java61 public void runTestOpenBuffer(final String testName, final DictionaryBufferFactory factory) { argument
71 factory);
104 public void runTestGetBuffer(final String testName, final DictionaryBufferFactory factory) { argument
113 factory);
H A DBinaryDictIOUtils.java55 final long length, final DictionaryBufferFactory factory) {
57 return new Ver4DictDecoder(dictFile, factory);
59 return new Ver2DictDecoder(dictFile, offset, length, factory);
54 getDictDecoder(final File dictFile, final long offset, final long length, final DictionaryBufferFactory factory) argument
H A DVer2DictDecoder.java141 final DictionaryBufferFactory factory) {
145 mBufferFactory = factory;
140 Ver2DictDecoder(final File file, final long offset, final long length, final DictionaryBufferFactory factory) argument
/packages/apps/Dialer/src/com/android/dialer/util/
H A DAsyncTaskExecutors.java30 * All of the factory methods on this class check first to see if you have set a static
75 public static void setFactoryForTest(AsyncTaskExecutorFactory factory) { argument
77 mInjectedAsyncTaskExecutorFactory = factory;
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DDefaultSuggestionViewFactory.java30 * Suggestion view factory for Google suggestions.
47 protected final void addFactory(SuggestionViewFactory factory) { argument
48 mFactories.addFirst(factory);
56 for (SuggestionViewFactory factory : mFactories) {
57 mViewTypes.addAll(factory.getSuggestionViewTypes());
66 for (SuggestionViewFactory factory : mFactories) {
67 if (factory.canCreateView(suggestion)) {
68 return factory.getView(suggestion, userQuery, convertView, parent);
76 for (SuggestionViewFactory factory : mFactories) {
77 if (factory
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DSingleThreadNamedTaskExecutor.java94 public static Factory<NamedTaskExecutor> factory(final ThreadFactory threadFactory) { method in class:SingleThreadNamedTaskExecutor
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DHtmlUtils.java50 public static Spanned htmlToSpan(String html, HtmlTree.ConverterFactory factory) { argument
54 htmlTree.setConverterFactory(factory);
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCitiesActivity.java246 Context context, LayoutInflater factory) {
251 mInflater = factory;
245 CityAdapter( Context context, LayoutInflater factory) argument
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlTree.java88 /** A factory that produces converters of the default implementation. */
129 public void setPlainTextConverterFactory(PlainTextConverterFactory factory) { argument
130 if (factory == null) {
131 throw new NullPointerException("factory must not be null");
133 converterFactory = factory;
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTree.java92 /** A factory that produces converters of the default implementation. */
137 public void setConverterFactory(ConverterFactory factory) { argument
138 if (factory == null) {
139 throw new NullPointerException("factory must not be null");
141 converterFactory = factory;
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 470 milliseconds