Searched refs:to (Results 1 - 25 of 156) sorted by relevance

1234567

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DStrSegment.java10 * Unless required by applicable law or agreed to in writing, software
23 * It is used to represent the layers of the composing text ({@link ComposingText}).
33 public int to; field in class:StrSegment
65 * @param to The end position
67 public StrSegment(String str, int from, int to) { argument
70 this.to = to;
H A DStrSegmentClause.java10 * Unless required by applicable law or agreed to in writing, software
33 * @param to The end position
35 public StrSegmentClause(WnnClause clause, int from, int to) { argument
36 super(clause.candidate, from, to);
H A DComposingText.java10 * Unless required by applicable law or agreed to in writing, software
53 * (ex) the result of Kana-to-Kanji conversion in Japanese,
54 * Pinyin-to-Kanji conversion in Chinese, Hangul-to-Hanja conversion in Korean language.
78 * Output internal information to the log.
87 tmp += "(" + ss.string + "," + ss.from + "," + ss.to + ")";
117 * Convert the range of segments to a string.
121 * @param to Convert range to
124 public String toString(int layer, int from, int to) { argument
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/Mms/src/org/w3c/dom/smil/
H A DSMILSetElement.java24 public void setTo(String to); argument
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java10 * Unless required by applicable law or agreed to in writing, software
27 * might post notifications and we don't want to affect those.
36 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 DFloatAnimation.java10 * Unless required by applicable law or agreed to in writing, software
25 public FloatAnimation(float from, float to, int duration) { argument
27 mTo = to;
H A DAlphaAnimation.java10 * Unless required by applicable law or agreed to in writing, software
27 public AlphaAnimation(float from, float to) { argument
29 mEndAlpha = to;
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_dic.h10 * Unless required by applicable law or agreed to in writing, software
60 #define NJ_INT32_WRITE(to, from)\
61 {(to)[0]=(NJ_UINT8)(((from)>>24) & 0x000000ff);\
62 (to)[1]=(NJ_UINT8)(((from)>>16) & 0x000000ff);\
63 (to)[2]=(NJ_UINT8)(((from)>>8) & 0x000000ff);\
64 (to)[3]=(NJ_UINT8)((from) & 0x000000ff);}
66 #define NJ_INT16_WRITE(to, from)\
67 {(to)[0]=(NJ_UINT8)(((from)>>8) & 0x00ff);\
68 (to)[1]=(NJ_UINT8)((from) & 0x00ff);}
/packages/apps/Camera/
H A DAndroid.mk3 # leaving the makefile emtpy to prevent the build
/packages/apps/InCallUI/src/com/android/incallui/
H A DInCallAnimationUtils.java10 * Unless required by applicable law or agreed to in writing, software
105 * Starts cross-fade animation using TransitionDrawable. Nothing will happen if "from" and "to"
109 final ImageView imageView, final Drawable from, final Drawable to) {
111 // pointing to the same Bitmap.
112 final boolean drawableIsEqual = (from != null && to != null && from.equals(to));
115 final boolean hasToImage = ((to instanceof BitmapDrawable) &&
116 ((BitmapDrawable) to).getBitmap() != null);
118 ((BitmapDrawable) from).getBitmap().equals(((BitmapDrawable) to).getBitmap()));
124 + Integer.toHexString(to
108 startCrossFade( final ImageView imageView, final Drawable from, final Drawable to) argument
[all...]
/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
H A DComposeActivityTest.java10 * Unless required by applicable law or agreed to in writing, software
126 * Test the cases where: The user's reply-to is one of their custom from's
127 * and they are replying all to a message where their custom from was a
156 String[] to = activity.getToAddresses();
159 String toAsString = TextUtils.join(",", to);
160 assertEquals(3, to.length);
169 * Test the cases where: The user sent a message to one of
170 * their custom froms and just replied to that message
191 String[] to = activity.getToAddresses();
194 String toAsString = TextUtils.join(",", to);
[all...]
/packages/apps/CertInstaller/
H A DAndroid.mk14 # Use the folloing include to make our test apk.
/packages/apps/ContactsCommon/TestCommon/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
21 # This has to be LOCAL_JAVA instead of LOCAL_STATIC since this test util is installed in the same
22 # vm as the packages to be tested. Otherwise you will get error
23 # "Class ref in pre-verified class resolved to unexpected implementation"
/packages/apps/Gallery/
H A DAndroid.mk13 # Use the following include to make our test apk.
/packages/apps/Launcher2/src/com/android/launcher2/
H A DButtonDropTarget.java10 * Unless required by applicable law or agreed to in writing, software
46 /** The paint applied to the drag view on hover */
127 // Find the rect to animate to (the view is center aligned)
128 Rect to = new Rect();
129 dragLayer.getViewRectRelativeToSelf(this, to);
138 right = to.right - getPaddingRight();
141 left = to.left + getPaddingLeft();
145 final int top = to.top + (getMeasuredHeight() - height) / 2;
148 to
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DButtonDropTarget.java10 * Unless required by applicable law or agreed to in writing, software
44 /** The paint applied to the drag view on hover */
129 // Find the rect to animate to (the view is center aligned)
130 Rect to = new Rect();
131 dragLayer.getViewRectRelativeToSelf(this, to);
140 right = to.right - getPaddingRight();
143 left = to.left + getPaddingLeft();
147 final int top = to.top + (getMeasuredHeight() - height) / 2;
150 to
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DCloudNotificationBackplane.java10 * Unless required by applicable law or agreed to in writing, software
28 public void send(String to, String msgId, Bundle data) throws IOException; argument
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
H A DMessageHeaderViewTest.java3 * Licensed to The Android Open Source Project.
11 * Unless required by applicable law or agreed to in writing, software
32 String[] to = makeRecipientArray("TO", 60);
34 String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", "", to, cc,
44 String[] to = makeRecipientArray("TO", 20);
47 String summary = MessageHeaderView.getRecipientSummaryText(getContext(), "", "", to, cc,
/packages/apps/VoiceDialer/
H A DAndroid.mk16 # Install the srec data files if VoiceDialer.apk is installed to system image.
22 # Use the following include to make our test apk.
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DNameDistance.java10 * Unless required by applicable law or agreed to in writing, software
119 int to = i + range + 1;
120 if (to > length2) {
121 to = length2;
124 for (int j = from; j < to; j++) {
/packages/apps/DeskClock/
H A DAndroid.mk23 # Use the following include to make our test apk.
/packages/apps/LegacyCamera/
H A DAndroid.mk18 # Use the following include to make our test apk.
/packages/apps/Music/
H A DAndroid.mk17 # Use the folloing include to make our test apk.
/packages/apps/Music/src/com/android/music/
H A DIMediaPlaybackService.aidl11 ** Unless required by applicable law or agreed to in writing, software
43 void moveQueueItem(int from, int to);
/packages/apps/Protips/
H A DAndroid.mk15 # Use the following include to make our test apk.

Completed in 748 milliseconds

1234567