Searched defs:chars (Results 1 - 13 of 13) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DStrSegment.java54 * @param chars The array of characters
56 public StrSegment(char[] chars) { argument
57 this(new String(chars), -1, -1);
H A DOpenWnnEvent.java77 * This event input specified character({@code chars}) into the cursor position.
269 public char[] chars = null; field in class:OpenWnnEvent
307 this.chars = new char[1];
308 this.chars[0] = c;
318 this.chars = c;
H A DOpenWnnEN.java212 * @param chars A array of character
214 private void insertCharToComposingText(char[] chars) { argument
215 StrSegment seg = new StrSegment(chars);
217 if (chars[0] == SPACE[0] || chars[0] == '\u0009') {
495 commitText(new String(ev.chars));
498 insertCharToComposingText(ev.chars);
H A DOpenWnnJAJP.java826 sendKeyChar(ev.chars[0]);
984 commitText(new String(ev.chars));
987 processSoftKeyboardCodeWithoutConversion(ev.chars);
989 processSoftKeyboardCode(ev.chars);
2401 * @param chars The input character(s)
2403 private void processSoftKeyboardCodeWithoutConversion(char[] chars) { argument
2404 if (chars == null) {
2409 appendStrSegment(new StrSegment(chars));
2428 * @param chars The input character(s)
2430 private void processSoftKeyboardCode(char[] chars) { argument
[all...]
/packages/apps/Email/tests/src/com/android/email/mail/transport/
H A DDiscourseLoggerTest.java28 private static byte[] b(String chars) { argument
29 byte[] ret = new byte[chars.length()];
30 for (int i = 0; i < chars.length(); i++) {
31 ret[i] = (byte) chars.charAt(i);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DNullReader.java52 * protected void processChars(char[] chars, int offset, int length) {
54 * chars[i] = ... // set array value here
178 * @param chars The character array to read into
186 public int read(char[] chars) throws IOException { argument
187 return read(chars, 0, chars.length);
193 * @param chars The character array to read into.
203 public int read(char[] chars, int offset, int length) throws IOException { argument
216 processChars(chars, offset, returnLength);
289 * @param chars Th
293 processChars(char[] chars, int offset, int length) argument
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictDecoderUtils.java143 * This allows for the whole unicode range to be encoded, including chars outside of
161 static int getCharArraySize(final int[] chars, argument
164 for (int character : chars) size += getCharSize(character, codePointToOneByteCodeMap);
H A DFusionDictionary.java102 public PtNode(final int[] chars, final ArrayList<WeightedString> bigrams, argument
105 mChars = chars;
114 public PtNode(final int[] chars, final ArrayList<WeightedString> bigrams, argument
117 mChars = chars;
/packages/apps/InCallUI/src/com/android/incallui/
H A DInCallActivity.java792 public void showPostCharWaitDialog(String callId, String chars) { argument
794 final PostCharDialogFragment fragment = new PostCharDialogFragment(callId, chars);
803 mShowPostCharWaitDialogChars = chars;
H A DInCallPresenter.java867 public void onPostDialCharWait(String callId, String chars) { argument
869 mInCallActivity.showPostCharWaitDialog(callId, chars);
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DStringUtil.java133 * @param chars a non-null character sequence containing the set of characters
147 CharSequence string, CharSequence chars, int fromIndex) {
159 for (int i = 0; i < chars.length(); i++) {
160 char c = chars.charAt(i);
674 * in 'chars' (similar to ANSI string.find_last_not_of).
679 * instead for this: {@code CharMatcher.noneOf(chars).lastIndexIn(str)}.
683 public static int lastIndexNotOf(String str, String chars, int fromIndex) { argument
687 if (chars.indexOf(str.charAt(pos)) < 0) {
696 * Like String.replace() except that it accepts any number of old chars.
766 throw new IllegalArgumentException("string contains non-hex chars");
146 indexOfChars( CharSequence string, CharSequence chars, int fromIndex) argument
2141 collapse( String str, String chars, String replacement) argument
[all...]
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 1654 milliseconds