HomeSort by relevance Sort by last modified time
    Searched full:pinyin (Results 1 - 25 of 62) sorted by null

1 2 3

  /packages/inputmethods/PinyinIME/lib/
Android.mk 6 com/android/inputmethod/pinyin/IPinyinDecoderService.aidl
8 LOCAL_MODULE := com.android.inputmethod.pinyin.lib
  /packages/inputmethods/PinyinIME/res/layout/
skb_container.xml 16 <com.android.inputmethod.pinyin.SkbContainer xmlns:android="http://schemas.android.com/apk/res/android"
28 <com.android.inputmethod.pinyin.SoftKeyboardView
32 <com.android.inputmethod.pinyin.SoftKeyboardView
37 </com.android.inputmethod.pinyin.SkbContainer>
candidates_container.xml 16 <com.android.inputmethod.pinyin.CandidatesContainer xmlns:android="http://schemas.android.com/apk/res/android"
44 <view class="com.android.inputmethod.pinyin.CandidateView"
48 <view class="com.android.inputmethod.pinyin.CandidateView"
53 </com.android.inputmethod.pinyin.CandidatesContainer>
floating_container.xml 22 <com.android.inputmethod.pinyin.ComposingView
  /packages/inputmethods/PinyinIME/
AndroidManifest.xml 17 package="com.android.inputmethod.pinyin"
20 <original-package android:name="com.android.inputmethod.pinyin" />
29 <action android:name="com.android.inputmethod.pinyin.Decoder_Service" />
Android.mk 14 LOCAL_STATIC_JAVA_LIBRARIES := com.android.inputmethod.pinyin.lib
  /packages/inputmethods/PinyinIME/lib/com/android/inputmethod/pinyin/
IPinyinDecoderService.aidl 1 /* //com/andriod/inputmethod/pinyin/IPinyinDecoderService.aidl
18 package com.android.inputmethod.pinyin;
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
HanziToPinyinTest.java 46 assertEquals(tokens.get(0).type, Token.PINYIN);
51 assertEquals(tokens.get(0).type, Token.PINYIN);
52 assertEquals(tokens.get(1).type, Token.PINYIN);
67 assertEquals(tokens.get(1).type, Token.PINYIN);
72 assertEquals(tokens.get(6).type, Token.PINYIN);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java 51 * The sorting key is generated as each Chinese character' pinyin proceeding with
52 * space and character itself. If the character's pinyin unable to find, the character
56 * a. Chinese character's pinyin and pinyin's initial character.
68 // Put Chinese character's pinyin, then proceed with the
70 if (Token.PINYIN == token.type) {
103 if (Token.PINYIN == token.type) {
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
ComposingView.java 17 package com.android.inputmethod.pinyin;
31 * View used to show composing string (The Pinyin string for the unselected
41 * {@link #SHOW_PINYIN} is used to show the current Pinyin string without
42 * highlighted effect. When user inputs Pinyin characters one by one, the
43 * Pinyin string will be shown in this mode.
46 * {@link #SHOW_STRING_LOWERCASE} is used to show the Pinyin string in
54 * {@link #EDIT_PINYIN} is used to edit the Pinyin string (shown with
58 * the middle of the Pinyin string. If the current status is
80 * the spelling(Pinyin) string, the color may be changed.
SettingsActivity.java 17 package com.android.inputmethod.pinyin;
28 import com.android.inputmethod.pinyin.Settings;
34 * Setting activity of Pinyin IME.
CandidateViewListener.java 17 package com.android.inputmethod.pinyin;
SoundManager.java 17 package com.android.inputmethod.pinyin;
EnglishInputProcessor.java 17 package com.android.inputmethod.pinyin;
Settings.java 17 package com.android.inputmethod.pinyin;
SkbPool.java 17 package com.android.inputmethod.pinyin;
PinyinDecoderService.java 17 package com.android.inputmethod.pinyin;
19 import com.android.inputmethod.pinyin.IPinyinDecoderService;
SoftKey.java 17 package com.android.inputmethod.pinyin;
25 * @see com.android.inputmethod.pinyin.SoftKeyToggle
SoftKeyToggle.java 17 package com.android.inputmethod.pinyin;
25 * @see com.android.inputmethod.pinyin.SoftKey
  /packages/inputmethods/PinyinIME/jni/include/
matrixsearch.h 36 // The spelling id for the Pinyin string from the previous DMI to this node.
75 // valid Pinyin should be extended.
79 // Pinyin, and because all dmi nodes at location 'd' (including those for
85 // When the last 'o' is added, the parser finds "gao" is a valid Pinyin.
92 // For Pinyin string "xian", because "xian" is a valid Pinyin, because all dmi
106 // lemmas from the beginning are fixed. If user deletes Pinyin characters one
114 // when user deletes Pinyin characters from the end, these sub lemmas can also
179 // The maximum allowed length of spelling string (such as a Pinyin string).
185 // Pinyin string. Max length: kMaxRowNum -
    [all...]
spellingtrie.h 62 // store score. For example, "zhuang" is the longgest item in Pinyin list,
166 // Construct the tree from the input pinyin array
191 // For Pinyin, only i/u/v is not a ShouZiMu char.
245 // Get the readonly Pinyin string for a given spelling id
248 // Get the readonly Pinyin string for a given spelling id
251 // Get Pinyin string for a given spelling id. Return the length of the
dictdef.h 45 // The max length of a Pinyin (spelling).
48 // The number of half spelling ids. For Chinese Pinyin, there 30 half ids.
52 // The maximum number of full spellings. For Chinese Pinyin, there are only
pinyinime.h 66 * @param max_sps_len Maximum length of the spelling string(Pinyin string).
78 * Use a spelling string(Pinyin string) to search. The engine will try to do
111 * Add a Pinyin letter to the current spelling string kept by decoder. If the
  /frameworks/base/core/java/com/android/internal/util/
HanziToPinyin.java 27 * An object to convert Chinese character to its corresponding pinyin string.
28 * For characters with multiple possible pinyin string, only one is selected
298 /** First and last Chinese character with known Pinyin according to zh collation */
315 public static final int PINYIN = 2;
327 * Type of this token, ASCII, PINYIN or UNKNOWN.
335 * Translated string of source. For Han, target is corresponding Pinyin.
385 token.type = Token.PINYIN;
394 token.type = Token.PINYIN;
400 token.type = Token.PINYIN;
420 StringBuilder pinyin = new StringBuilder() local
    [all...]
  /packages/inputmethods/PinyinIME/res/xml/
method.xml 19 android:settingsActivity="com.android.inputmethod.pinyin.SettingsActivity"

Completed in 50 milliseconds

1 2 3