Searched defs:to (Results 1 - 25 of 30) sorted by relevance

12

/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILSetElement.java24 public void setTo(String to); argument
H A DSMILAnimation.java106 * A <code>DOMString</code> representing the value of the to attribute.
111 public void setTo(String to) argument
/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/Email/src/com/android/email/activity/
H A DAccountShortcutPicker.java10 * Unless required by applicable law or agreed to in writing, software
64 // finish() immediately if we aren't supposed to be here
102 public AccountsAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
103 super(context, layout, c, from, to);
131 * This function creates a shortcut and returns it to the caller. There are actually two
134 * The first intent serves as a container for the shortcut and is returned to the launcher by
152 * The shortcut intent can be any intent that you wish the launcher to send, when the user
163 // Then, set up the container intent (the response to the caller)
171 // Now, return the result to the launcher
/packages/apps/Mms/src/com/android/mms/transaction/
H A DMmsMessageSender.java11 * Unless required by applicable law or agreed to in writing, software
120 public static void sendReadRec(Context context, String to, String messageId, int status) { argument
122 sender[0] = new EncodedStringValue(to);
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DSuggestionCursorUtil.java10 * Unless required by applicable law or agreed to in writing, software
131 public static void addAll(ListSuggestionCursor to, SuggestionCursor from) { argument
135 to.add(new SuggestionPosition(from, i));
/packages/apps/IM/src/com/android/im/engine/
H A DMessage.java11 * Unless required by applicable law or agreed to in writing, software
87 * Gets the address where the message is sent to.
89 * @return the address where the message is sent to.
122 public void setTo(Address to) { argument
123 mTo = to;
/packages/apps/Music/src/com/android/music/
H A DMediaPickerActivity.java10 * Unless required by applicable law or agreed to in writing, software
122 // Need to stop the playbackservice, in case it is busy playing audio
232 PickListAdapter(Context context, int layout, Cursor cursor, String[] from, int[] to) { argument
233 super(context, layout, cursor, from, to);
H A DTouchInterceptor.java10 * Unless required by applicable law or agreed to in writing, software
121 // by the framework when the list tries to clean up memory
141 * need to, so implement a slightly different version.
205 layoutChildren(); // force children to be recreated where needed
218 /* Adjust visibility and size to make it appear as though
407 void drag(int from, int to); argument
410 void drop(int from, int to); argument
H A DPlaylistBrowserActivity.java10 * Unless required by applicable law or agreed to in writing, software
157 // In order to not flash the error dialog at the user for the
187 // If we have an adapter and didn't send it off to another activity yet, we should
188 // close its cursor, which we do by assigning a null cursor to it. Doing this
194 // Because we pass the adapter to the next activity, we need to make
195 // sure it doesn't keep a reference to this activity. We can do this
559 int layout, Cursor cursor, String[] from, int[] to) {
560 super(context, layout, cursor, from, to);
558 PlaylistListAdapter(Context context, PlaylistBrowserActivity currentactivity, int layout, Cursor cursor, String[] from, int[] to) argument
H A DQueryBrowserActivity.java10 * Unless required by applicable law or agreed to in writing, software
85 // defer the real work until we're bound to the service
203 // If we have an adapter and didn't send it off to another activity yet, we should
204 // close its cursor, which we do by assigning a null cursor to it. Doing this
210 // Because we pass the adapter to the next activity, we need to make
211 // sure it doesn't keep a reference to this activity. We can do this
237 // call init(), which will post a delayed message to this handler
238 // in order to try again.
274 // Dialog doesn't allow us to wai
359 QueryListAdapter(Context context, QueryBrowserActivity currentactivity, int layout, Cursor cursor, String[] from, int[] to) argument
[all...]
H A DAlbumBrowserActivity.java10 * Unless required by applicable law or agreed to in writing, software
148 // need to store the selected item so we don't lose it in case
150 // in the middle of specifying a playlist to add the item to.
167 // If we have an adapter and didn't send it off to another activity yet, we should
168 // close its cursor, which we do by assigning a null cursor to it. Doing this
174 // Because we pass the adapter to the next activity, we need to make
175 // sure it doesn't keep a reference to this activity. We can do this
543 int layout, Cursor cursor, String[] from, int[] to) {
542 AlbumListAdapter(Context context, AlbumBrowserActivity currentactivity, int layout, Cursor cursor, String[] from, int[] to) argument
[all...]
H A DMusicPicker.java10 * Unless required by applicable law or agreed to in writing, software
53 * Activity allowing the user to select a music track on the device, and
54 * return it to its caller. The music picker user interface is fairly
56 * application (title, author, album, duration), as well as the ability to
70 /** Holds the previous state of the list, to restore after the async
81 /** Menu item to sort the music list by track title. */
83 /** Menu item to sort the music list by album title. */
85 /** Menu item to sort the music list by artist name. */
101 /** Formatting optimization to avoid creating many temporary objects. */
103 /** Formatting optimization to avoi
187 TrackListAdapter(Context context, ListView listView, int layout, String[] from, int[] to) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppProvider.java17 * may be used to endorse or promote products derived from this software
52 * This provider allows application to interact with Bluetooth OPP manager
70 /** Database version to which upgrading is a nop */
82 /** URI matcher used to recognize URIs sent by applications */
113 * Creates and updated database on demand when opening it. Helper class to
125 * Creates database the first time we try to open it.
133 //TODO: use this function to check garbage transfer left in db, for example,
149 // to gracefully handle upgrades we should be careful about
150 // what to do on downgrades.
163 Log.i(TAG, "Upgrading downloads database from version " + oldV + " to "
215 copyString(String key, ContentValues from, ContentValues to) argument
222 copyInteger(String key, ContentValues from, ContentValues to) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DUtil.java10 * Unless required by applicable law or agreed to in writing, software
65 // We have no memory to rotate. Return the original bitmap.
74 * minSideLength is used to specify that minimal width or height of a
76 * maxNumOfPixels is used to specify the maximal size in pixels that is
85 * Also, the function rounds up the sample size to a power of 2 or multiple
88 * request is 3. So we round up the sample size to avoid OOM.
199 public static Animation slideOut(View view, int to) { argument
202 switch (to) {
216 throw new IllegalArgumentException(Integer.toString(to));
/packages/apps/Email/tests/src/com/android/email/
H A DLegacyConversionsTests.java10 * Unless required by applicable law or agreed to in writing, software
58 * NOTE: It would probably make sense to rewrite this using a MockProvider, instead of the
69 private static final String RECIPIENT_TO = "recipient-to@android.com";
72 private static final String REPLY_TO = "reply-to@android.com";
109 * Test basic conversion from Store message to Provider message
112 * TODO: There are many special cases in the tested function, that need to be
126 * Test basic conversion from Store message to Provider message, when the provider message
146 private MimeMessage buildTestMessage(String to, String cc, String bcc, String replyTo, argument
150 if (to != null) {
151 Address[] addresses = Address.parse(to);
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DUserDictionarySettings.java10 * Unless required by applicable law or agreed to in writing, software
54 // Either the locale is empty (means the word is applicable to all locales)
208 // No prediction in soft keyboard mode. TODO: Create a better way to disable prediction
251 // TODO: present UI for picking whether to add word to all locales, or current.
266 public MyAdapter(Context context, int layout, Cursor c, String[] from, int[] to) { argument
267 super(context, layout, c, from, to);
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/
H A DOpenWnnJni.h10 * Unless required by applicable law or agreed to in writing, software
85 NJ_UINT8* to; member in struct:__anon2
H A DOpenWnnDictionaryImplJni.c10 * Unless required by applicable law or agreed to in writing, software
50 /* convert UTF-16BE character to NJ_CHAR format */
66 /* convert UTF-8 to UTF-16BE */
142 /* convert UTF-16BE to a UTF-8 */
239 /* Retrieve data pointers of dictionary from the dictionary library, and put to internal work area */
261 /* Execute the initialize method to initialize the internal work area */
356 /* If -1 was specified to base or high, clear that dictionary information structure */
419 /* If the link search feature is specified, set the predict search information to structure */
602 work->approxSet.to[ i ] = NULL;
630 NJ_CHAR* to; local
691 NJ_CHAR* to; local
[all...]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java10 * Unless required by applicable law or agreed to in writing, software
49 * Allows application to interact with the download manager.
59 /** Database version to which upgrading is a nop */
69 /** URI matcher used to recognize URIs sent by applications */
115 * Helper class to create database the first time the provider is
126 * Creates database the first time we try to open it.
151 // to gracefully handle upgrades we should be careful about
152 // what to do on downgrades.
163 Log.i(Constants.TAG, "Upgrading downloads database from version " + oldV + " to " + newV
420 // to b
742 copyInteger(String key, ContentValues from, ContentValues to) argument
749 copyBoolean(String key, ContentValues from, ContentValues to) argument
756 copyString(String key, ContentValues from, ContentValues to) argument
[all...]
/packages/apps/Email/tests/src/com/android/email/mail/store/
H A DLocalStoreUnitTests.java10 * Unless required by applicable law or agreed to in writing, software
62 private static final String RECIPIENT_TO = "recipient-to@android.com";
87 // Create a dummy database (be sure to delete it in tearDown())
153 // Now try to read it back from the database using getMessage()
158 // Now try to read it back from the database using getMessages()
178 // Now try to read it back from the database using getMessage()
182 // Now change the Message-ID and try to update() the message
183 // Note, due to a weakness in the API, you have to use a message object you got from
188 // And read back once more to confir
204 buildTestMessage(String to, String sender, String subject, String content) argument
[all...]
/packages/apps/Email/tests/src/com/android/email/activity/
H A DMessageComposeInstrumentationTests.java10 * Unless required by applicable law or agreed to in writing, software
42 * It might be possible to convert these to ActivityUnitTest, which would be faster.
57 private static final String RECIPIENT_TO = "recipient-to@android.com";
67 private static final String TO1 = "First To <first.to@google.com>";
68 private static final String TO2 = "Second To <second.to@google.com>";
73 private static final String CC4 = "CopySecond To <second.to@google.com>";
80 "\"\u3042\u3044\u3046,\u3048\u304A\" <recipient-to@android.com>";
93 "\"\uD834\uDF01\uD834\uDF46,\uD834\uDF22\" <recipient-to@android.com>";
138 mToView = (MultiAutoCompleteTextView) a.findViewById(R.id.to);
678 checkFields(String to, String cc, String bcc, String subject, String content, String signature) argument
740 buildTestMessage(String to, String sender, String subject, String content) argument
[all...]
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DRenderView.java10 * Unless required by applicable law or agreed to in writing, software
99 // The cached texture that is bound to Texture Unit 0.
100 // We need to reset this to null whenever the active texture unit changes.
103 // Weak reference to a texture that stores the associated texture ID.
331 // Allow the texture to defer queuing.
336 // Change the texture state to loading.
385 public boolean bindMixed(Texture from, Texture to, float ratio) { argument
386 // Bind "from" and "to" to TEXTURE
430 drawMixed2D(Texture from, Texture to, float ratio, float x, float y, float z, float width, float height) argument
[all...]

Completed in 217 milliseconds

12