/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
H A D | NullWriter.java | 44 * @param idx The character to write
46 public void write(int idx) {
argument
|
H A D | ProxyOutputStream.java | 46 * @param idx the byte to write
49 public void write(int idx) throws IOException {
argument 50 out.write(idx);
|
H A D | ProxyWriter.java | 48 * @param idx the character to write
51 public void write(int idx) throws IOException {
argument 52 out.write(idx);
|
H A D | FileWriterWithEncoding.java | 262 * @param idx the character to write
265 public void write(int idx) throws IOException {
argument 266 out.write(idx);
|
H A D | LockableFileWriter.java | 278 * @param idx the character to write
281 public void write(int idx) throws IOException {
argument 282 out.write(idx);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
H A D | CharSequenceReader.java | 34 private int idx;
field in class:CharSequenceReader 50 idx = 0;
60 mark = idx;
79 if (idx >= charSequence.length()) {
82 return charSequence.charAt(idx++);
96 if (idx >= charSequence.length()) {
123 idx = mark;
137 if (idx >= charSequence.length()) {
140 int dest = (int)Math.min(charSequence.length(), (idx + n));
141 int count = dest - idx;
[all...] |
H A D | ProxyInputStream.java | 107 * @param idx read ahead limit
109 public synchronized void mark(int idx) {
argument 110 in.mark(idx);
|
H A D | ProxyReader.java | 107 * @param idx read ahead limit
110 public synchronized void mark(int idx) throws IOException {
argument 111 in.mark(idx);
|
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
H A D | ndfdic.c | 155 NJ_UINT16 i, idx, yib, ret; local 175 idx = (NJ_UINT16)((*index - 1) * yib); 177 char_len = UTL_CHAR(wkc + idx); 183 NJ_CHAR_COPY(wky, wkc + idx + j); 192 *wky++ = (NJ_CHAR)(*(wkc + idx));
|
H A D | ndbdic.c | 557 NJ_INT16 idx; local 637 idx = -1; 648 idx = (NJ_UINT16)(mid + 1); 668 idx = (NJ_UINT16)(mid + 1); 679 if (idx < 0) { 683 index = (NJ_UINT8)idx; 1989 NJ_INT16 idx; local 2035 idx = -1; 2046 idx = (NJ_UINT16) (mid + 1); 2066 idx [all...] |
H A D | ndldic.c | 1935 NJ_UINT16 idx) { 1957 NJ_SEARCH_CACHE *psrhCache = cond->ds->dic[idx].srhCache; 1932 get_cand_by_evaluate2(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond, NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT8 search_pattern, NJ_UINT16 idx) argument
|
/packages/inputmethods/PinyinIME/jni/share/ |
H A D | ngram.cpp | 65 CODEBOOK_TYPE idx; local 66 idx = qsearch_nearest(code_book, freqs[pos], 0, kCodeBookSize - 1); 67 if (idx != code_idx[pos]) 69 code_idx[pos] = idx;
|
H A D | dictbuilder.cpp | 325 printf("--%d, idx:%06d, score:%.5f\n", pos, top_lmas_[pos].idx_by_hz, 576 // sort the lemma items according to the spelling idx string 621 LemmaIdType idx = local 623 id_to_charbuf(dict_trie->lma_idx_buf_ + pos * kLemmaIdSize, idx);
|
/packages/apps/Nfc/nci/jni/ |
H A D | SecureElement.cpp | 920 UINT8 idx = 0; local 924 idx = 4; 927 newSelectCmd[idx++] = mAidForEmptySelect[0]; 930 memcpy(&newSelectCmd[idx], &mAidForEmptySelect[1], mAidForEmptySelect[0]); 931 idx += mAidForEmptySelect[0]; 935 newSelectCmd[idx++] = xmitBuffer[4]; 939 xmitBufferSize = idx; 941 ALOGD ("%s: Empty AID SELECT cmd detected, substituting AID from config file, new length=%d", fn, idx);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
H A D | MediaItemView.java | 616 public ThumbnailKey(String id, int idx) { argument 618 index = idx;
|
/packages/apps/Music/src/com/android/music/ |
H A D | MediaPlaybackService.java | 1353 int idx = mHistory.get(i).intValue(); 1354 if (idx < numTracks && tracks[idx] >= 0) { 1356 tracks[idx] = -1; 1483 int idx = -1; 1485 idx = mRand.nextInt(mAutoShuffleList.length); 1486 if (!wasRecentlyUsed(idx, lookback)) { 1491 mHistory.add(idx); 1496 mPlayList[mPlayListLen++] = mAutoShuffleList[idx]; 1504 // check that the specified idx i 1506 wasRecentlyUsed(int idx, int lookbacksize) argument [all...] |
/packages/services/Telephony/src/com/android/phone/ |
H A D | CallFeaturesSetting.java | 942 private void handleForwardingSettingsReadResult(AsyncResult ar, int idx) { argument 943 if (DBG) Log.d(LOG_TAG, "handleForwardingSettingsReadResult: " + idx); 958 if (DBG) Log.d(LOG_TAG, "ignoring fwd reading result: " + idx); 964 if (DBG) Log.d(LOG_TAG, "Error discovered for fwd read : " + idx); 984 if (DBG) Log.d(LOG_TAG, "Creating default info for " + idx); 987 fi.reason = FORWARDING_SETTINGS_REASONS[idx]; 995 if (DBG) Log.d(LOG_TAG, "Got " + fi.toString() + " for " + idx); 997 mForwardingReadResults[idx] = fi; 2062 for (int idx = 0; idx < adapte [all...] |