Searched defs:idx (Results 1 - 17 of 17) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DNullWriter.java44 * @param idx The character to write
46 public void write(int idx) { argument
H A DProxyOutputStream.java46 * @param idx the byte to write
49 public void write(int idx) throws IOException { argument
50 out.write(idx);
H A DProxyWriter.java48 * @param idx the character to write
51 public void write(int idx) throws IOException { argument
52 out.write(idx);
H A DFileWriterWithEncoding.java262 * @param idx the character to write
265 public void write(int idx) throws IOException { argument
266 out.write(idx);
H A DLockableFileWriter.java278 * @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 DCharSequenceReader.java34 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 DProxyInputStream.java107 * @param idx read ahead limit
109 public synchronized void mark(int idx) { argument
110 in.mark(idx);
H A DProxyReader.java107 * @param idx read ahead limit
110 public synchronized void mark(int idx) throws IOException { argument
111 in.mark(idx);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DPhoneAccountRegistrarTest.java234 private PhoneAccount.Builder makeQuickAccountBuilder(String id, int idx) { argument
237 "label" + idx);
240 private PhoneAccount makeQuickAccount(String id, int idx) { argument
241 return makeQuickAccountBuilder(id, idx)
242 .setAddress(Uri.parse("http://foo.com/" + idx))
243 .setSubscriptionAddress(Uri.parse("tel:555-000" + idx))
244 .setCapabilities(idx)
247 .setShortDescription("desc" + idx)
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndfdic.c155 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 Dndbdic.c557 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 Dndldic.c1935 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/apps/FMRadio/jni/fmr/
H A Dfmr_core.cpp42 #define FMR_fd(idx) ((pfmr_data[idx])->fd)
43 #define FMR_err(idx) ((pfmr_data[idx])->err)
44 #define FMR_chip(idx) ((pfmr_data[idx])->cfg_data.chip)
45 #define FMR_low_band(idx) ((pfmr_data[idx])->cfg_data.low_band)
46 #define FMR_high_band(idx) ((pfmr_data[idx])
53 FMR_get_cfgs(int idx) argument
83 FMR_chk_cfg_data(int idx) argument
97 int idx; local
146 FMR_open_dev(int idx) argument
171 FMR_close_dev(int idx) argument
181 FMR_pwr_up(int idx, int freq) argument
202 FMR_pwr_down(int idx, int type) argument
212 FMR_get_chip_id(int idx, int *chipid) argument
228 FMR_get_ps(int idx, uint8_t **ps, int *ps_len) argument
240 FMR_get_rt(int idx, uint8_t **rt, int *rt_len) argument
253 FMR_tune(int idx, int freq) argument
269 FMR_DensenseDetect(fm_s32 idx, fm_u16 ChannelNo, fm_s32 RSSI) argument
325 FMR_Seek_TuneCheck(int idx, fm_softmute_tune_t *cur_freq) argument
357 FMR_Seek_More(int idx, fm_softmute_tune_t *validfreq, fm_u8 seek_dir, fm_u8 step, fm_u16 min_freq, fm_u16 max_freq) argument
394 FMR_seek_Channel(int idx, int start_freq, int min_freq, int max_freq, int band_channel_no, int seek_space, int dir, int *ret_freq, int *rssi_tmp) argument
487 FMR_seek(int idx, int start_freq, int dir, int *ret_freq) argument
531 FMR_set_mute(int idx, int mute) argument
549 FMR_is_rdsrx_support(int idx, int *supt) argument
565 FMR_Pre_Search(int idx) argument
574 FMR_Restore_Search(int idx) argument
581 FMR_scan_Channels(int idx, uint16_t *scan_tbl, int *max_cnt, fm_s32 band_channel_no, fm_u16 Start_Freq, fm_u8 seek_space, fm_u8 NF_Space) argument
736 FMR_scan(int idx, uint16_t *scan_tbl, int *max_cnt) argument
771 FMR_stop_scan(int idx) argument
777 FMR_turn_on_off_rds(int idx, int onoff) argument
790 FMR_read_rds_data(int idx, uint16_t *rds_status) argument
805 FMR_active_af(int idx, uint16_t *ret_freq) argument
824 FMR_ana_switch(int idx, int antenna) argument
[all...]
/packages/services/Telephony/src/com/android/phone/settings/
H A DVoicemailSettingsActivity.java540 for (int idx = 0; idx < adapter.getCount(); idx++) {
541 if (adapter.getItem(idx) == preference) {
543 null, idx, adapter.getItemId(idx));
725 private void handleForwardingSettingsReadResult(AsyncResult ar, int idx) { argument
726 if (DBG) Log.d(LOG_TAG, "handleForwardingSettingsReadResult: " + idx);
740 if (DBG) Log.d(LOG_TAG, "Ignoring fwd reading result: " + idx);
746 if (DBG) Log.d(LOG_TAG, "Error discovered for fwd read : " + idx);
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachine.java1066 private void terminateCall(int idx) { argument
1067 Log.d(TAG, "terminateCall: " + idx);
1069 if (idx == 0) {
1092 BluetoothHeadsetClientCall c = mCalls.get(idx);
1110 if (handleCallActionNative(action, idx)) {
1117 Log.e(TAG, "ERROR: Couldn't terminate a call, action:" + action + " id:" + idx);
1122 private void enterPrivateMode(int idx) { argument
1123 Log.d(TAG, "enterPrivateMode: " + idx);
1125 BluetoothHeadsetClientCall c = mCalls.get(idx);
1139 if (handleCallActionNative(HeadsetClientHalConstants.CALL_ACTION_CHLD_2x, idx)) {
[all...]
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java1355 int idx = mHistory.get(i).intValue();
1356 if (idx < numTracks && tracks[idx] >= 0) {
1358 tracks[idx] = -1;
1485 int idx = -1;
1487 idx = mRand.nextInt(mAutoShuffleList.length);
1488 if (!wasRecentlyUsed(idx, lookback)) {
1493 mHistory.add(idx);
1498 mPlayList[mPlayListLen++] = mAutoShuffleList[idx];
1506 // check that the specified idx i
1508 wasRecentlyUsed(int idx, int lookbacksize) 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/ ...

Completed in 709 milliseconds