Searched defs:from (Results 1 - 25 of 55) sorted by relevance

123

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DStrSegment.java31 public int from; field in class:StrSegment
64 * @param from The start position
67 public StrSegment(String str, int from, int to) { argument
69 this.from = from;
H A DStrSegmentClause.java32 * @param from The start position
35 public StrSegmentClause(WnnClause clause, int from, int to) { argument
36 super(clause.candidate, from, to);
H A DComposingText.java29 * {@link LetterConverter} and {@link WnnEngine} get the input string from it, and
87 tmp += "(" + ss.string + "," + ss.from + "," + ss.to + ")";
120 * @param from Convert range from
124 public String toString(int layer, int from, int to) { argument
129 for (int i = from; i <= to; i++) {
153 * @param mod_from Modified from
154 * @param mod_len Length after modified (# of StrSegments from {@code mod_from})
155 * @param org_len Length before modified (# of StrSegments from {@code mod_from})
181 last.string = toString(layer, last.from, las
308 replaceStrSegment0(int layer, StrSegment[] str, int from, int to) argument
359 deleteStrSegment(int layer, int from, int to) argument
435 deleteStrSegment0(int layer, int from, int to, int diff) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java36 public void cancelAllBetween(int from, int to) { argument
37 for (int i = from; i <= to; i++) {
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DAlphaAnimation.java27 public AlphaAnimation(float from, float to) { argument
28 mStartAlpha = from;
30 mCurrentAlpha = from;
H A DFloatAnimation.java25 public FloatAnimation(float from, float to, int duration) { argument
26 mFrom = from;
28 mCurrent = from;
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
H A DTweener.java133 Tweener from(Object object, long duration, Object... vars) { method in class:Tweener
/packages/apps/Camera/src/com/android/camera/ui/
H A DListPrefSettingPopup.java58 int resource, String[] from, int[] to) {
59 super(context, data, resource, from, to);
57 ListPrefSettingAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) argument
/packages/apps/Contacts/tests/src/com/android/contacts/tests/streamitems/
H A DStreamItemPopulatorActivity.java52 // Test data to randomly select from.
54 "Just got back from a vacation in %1$s - what a great place! Can't wait to go back.",
97 // Photos to randomly select from.
216 // Add from 1-5 stream items.
297 private <T> T pickRandom(T[] from) { argument
298 return from[randInt(from.length)];
/packages/apps/Gallery2/src/com/android/camera/ui/
H A DListPrefSettingPopup.java58 int resource, String[] from, int[] to) {
59 super(context, data, resource, from, to);
57 ListPrefSettingAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) argument
/packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
H A DGLCanvasMock.java66 public void drawMixed(BasicTexture from, BasicTexture to, argument
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILAnimation.java96 * A <code>DOMString</code> representing the value of the from attribute.
102 public void setFrom(String from) argument
/packages/apps/Music/src/com/android/music/
H A DMediaPickerActivity.java232 PickListAdapter(Context context, int layout, Cursor cursor, String[] from, int[] to) { argument
233 super(context, layout, cursor, from, to);
H A DTouchInterceptor.java160 // by going back from a visible item
465 void drag(int from, int to); argument
468 void drop(int from, int to); argument
/packages/apps/Phone/src/com/android/phone/
H A DAnimationUtils.java37 * Turn on when you're interested in fading animation. Intentionally untied from other debug
165 * This will be used from ObjectAnimator.
206 * Starts cross-fade animation using TransitionDrawable. Nothing will happen if "from" and "to"
210 final ImageView imageView, final Drawable from, final Drawable to) {
213 final boolean areSameImage = from.equals(to) ||
214 ((from instanceof BitmapDrawable)
216 && ((BitmapDrawable) from).getBitmap()
221 + "(" + Integer.toHexString(from.hashCode()) + " -> "
225 CrossFadeDrawable crossFadeDrawable = newCrossFadeDrawable(from, to);
234 + Integer.toHexString(from
209 startCrossFade( final ImageView imageView, final Drawable from, final Drawable to) argument
[all...]
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DSuggestionCursorUtil.java190 public static void addAll(ListSuggestionCursor to, SuggestionCursor from) { argument
191 if (from == null) return;
192 int count = from.getCount();
194 to.add(new SuggestionPosition(from, i));
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppProvider.java17 * may be used to endorse or promote products derived from this software
69 /** Database version from which upgrading is a nop */
162 // from NOP_FROM is the same as upgrading from NOP_TO.
165 Log.i(TAG, "Upgrading downloads database from version " + oldV + " to "
217 private static final void copyString(String key, ContentValues from, ContentValues to) { argument
218 String s = from.getAsString(key);
224 private static final void copyInteger(String key, ContentValues from, ContentValues to) { argument
225 Integer i = from.getAsInteger(key);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDeleteDropTarget.java140 // If we are dragging a widget from AppsCustomize, hide the delete target
145 // If we are dragging an application from AppsCustomize, only show the control if we can
197 Rect from = new Rect();
198 dragLayer.getViewRectRelativeToSelf(d.dragView, from);
201 float scale = (float) to.width() / from.width();
212 dragLayer.animateView(d.dragView, from, to, scale, 1f, 1f, 0.1f, 0.1f,
222 // Uninstall the application if it is being dragged from AppsCustomize
227 // Remove the folder from the workspace and delete the contents from launcher model
232 // Remove the widget from th
323 FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from, long startTime, float friction) argument
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DSharePopup.java77 int resource, String[] from, int[] to) {
78 super(context, data, resource, from, to);
76 MySimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to) argument
/packages/apps/Settings/src/com/android/settings/
H A DUserDictionarySettings.java263 public MyAdapter(Context context, int layout, Cursor c, String[] from, int[] to, argument
265 super(context, layout, c, from, to);
/packages/inputmethods/LatinIME/native/jni/src/
H A Dproximity_info_state.cpp168 // This function basically converts from a length to an edit distance. Accordingly, it's obviously
281 const int from, const int to, const int keyId, const bool extend) const {
282 if (from < 0 || from > mSampledInputSize - 1) {
288 const int x0 = mSampledInputXs[from];
289 const int y0 = mSampledInputYs[from];
280 getLineToKeyDistance( const int from, const int to, const int keyId, const bool extend) const argument
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/
H A DOpenWnnJni.h84 NJ_UINT8* from; member in struct:__anon32
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DMessage.java80 public abstract void setFrom(Address from) throws MessagingException; argument
84 public abstract void setReplyTo(Address[] from) throws MessagingException; argument
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDataManager.java68 public static DataManager from(Context context) { method in class:DataManager
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java77 // Pops from the top of the stack as current configuration state (matrix,
83 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
109 // from * (1 - ratio) + to * ratio
111 public abstract void drawMixed(BasicTexture from, int toColor, argument
115 // rectangle. The actual color used is from * (1 - ratio) + to * ratio.
118 public abstract void drawMixed(BasicTexture from, int toColor, argument
121 // Unloads the specified texture from the canvas. The resource allocated
123 // to the unloaded state. This function should be called only from

Completed in 544 milliseconds

123