Searched refs:fill (Results 1 - 25 of 60) sorted by relevance

123

/packages/experimental/FillService/src/foo/bar/fill/
H A DFirstActivity.java1 package foo.bar.fill;
H A DSecondActivity.java1 package foo.bar.fill;
H A DAuthActivity.java1 package foo.bar.fill;
H A DFillService.java17 package foo.bar.fill;
43 import foo.bar.fill.R;
70 static final String EXTRA_RESPONSE_ID = "foo.bar.fill.extra.RESPONSE_ID";
71 static final String EXTRA_DATASET_ID = "foo.bar.fill.extra.DATASET_ID";
/packages/apps/Camera2/src/com/android/camera/settings/
H A DListPreferenceFiller.java26 * Classes implementing this interface can fill a list interface with content.
29 public void fill(List<Size> sizes, ListPreference preference); method in interface:ListPreferenceFiller
/packages/apps/Camera2/src/com/android/camera/ui/focus/
H A DCameraCoordinateTransformer.java89 Matrix fill = new Matrix();
90 fill.setRectToRect(CAMERA_DRIVER_RECT,
94 // Concat the previous transform on top of the fill behavior.
95 transform.setConcat(fill, transform);
/packages/apps/Email/src/com/beetstra/jutf7/
H A DBase64Util.java73 Arrays.fill(inverseAlphabet, -1);
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/
H A DCallLogDataSource.java36 * <li>{@link #fill(Context, CallLogMutations)}: Invoked only if the framework determined a
38 * <li>{@link #onSuccessfulFill(Context)}: Invoked if and only if fill was previously called and
39 * the mutations provided by the previous fill operation succeeded in being applied.
42 * <p>Because {@link #isDirty(Context)} is not always invoked, {@link #fill(Context,
44 * <em>is</em> safe to assume that {@link #onSuccessfulFill(Context)} refers to the previous fill
80 void fill(Context appContext, CallLogMutations mutations); method in interface:CallLogDataSource
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DResizableIntArray.java129 public void fill(final int value, final int startPos, final int length) { method in class:ResizableIntArray
135 Arrays.fill(mArray, startPos, endPos, value);
H A DInputPointers.java53 mTimes.fill(lastTime, fromIndex, fillLength);
107 mPointerIds.fill(pointerId, mPointerIds.getLength(), length);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DNameDistance.java102 Arrays.fill(mMatchFlags1, 0, length1, false);
103 Arrays.fill(mMatchFlags2, 0, length2, false);
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/contacts/
H A DContactsDataSource.java48 public void fill( method in class:ContactsDataSource
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dentry_counters.h54 mEntryCounters.fill(0);
/packages/apps/Dialer/java/com/android/dialer/calllog/
H A DRefreshAnnotatedCallLogWorker.java135 systemCallLogDataSource.fill(appContext, mutations);
138 "%s.fill took: %dms",
146 dataSource.fill(appContext, mutations);
149 "%s.fill took: %dms",
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMatrixUtils.java110 Arrays.fill(inverseMatrix[i], 0.0f);
138 Arrays.fill(retval[i], 0);
H A DSmoothingUtils.java61 Arrays.fill(m0[i], 0);
/packages/apps/Settings/src/com/android/settings/widget/
H A DChartNetworkSeriesView.java93 final int fill = a.getColor(R.styleable.ChartNetworkSeriesView_fillColor, Color.RED);
99 setChartColor(stroke, fill, fillSecondary);
115 public void setChartColor(int stroke, int fill, int fillSecondary) { argument
123 mPaintFill.setColor(fill);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DNgramContextUtils.java69 Arrays.fill(prevWordsInfo, WordInfo.EMPTY_WORD_INFO);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
H A DResizableIntArrayTests.java282 src.fill(fillValue, -1 /* startPos */, length);
283 fail("fill from -1 shouldn't succeed");
288 src.fill(fillValue, startPos, -1 /* length */);
289 fail("fill negative length shouldn't succeed");
294 src.fill(fillValue, startPos, length);
295 assertEquals("length after fill", srcLength, src.getLength());
296 assertSame("array after fill", array, src.getPrimitiveArray());
300 assertEquals("new values after fill at " + i, fillValue, src.get(i));
302 assertEquals("unmodified values after fill at " + i, value, src.get(i));
310 src.fill(fillValue
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcpHelperClasses.java376 Arrays.fill(mFolderTypes, AvrcpConstants.FOLDER_TYPE_MIXED);
377 Arrays.fill(mItemTypes, AvrcpConstants.BTRC_ITEM_MEDIA);
378 Arrays.fill(mPlayable, AvrcpConstants.ITEM_PLAYABLE);
/packages/apps/DeskClock/src/com/android/deskclock/uidata/
H A DTabModel.java51 Arrays.fill(mTabScrolledToTop, true);
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
H A DMutationApplier.java86 Arrays.fill(questionMarks, "?");
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateAdapter.java98 public void fill(Vector<State> states) { method in class:StateAdapter
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanFilterQueue.java143 Arrays.fill(entry.data_mask, (byte) 0xFF);
236 Arrays.fill(serviceDataMask, (byte) 0xFF);
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
H A DSystemCallLogDataSource.java108 public void fill(Context appContext, CallLogMutations mutations) { method in class:SystemCallLogDataSource
114 LogUtil.i("SystemCallLogDataSource.fill", "no call log permissions");
124 "SystemCallLogDataSource.fill",
135 // If a fill operation was a no-op, lastTimestampProcessed could still be null.
298 Arrays.fill(questionMarks, "?");

Completed in 834 milliseconds

123