Searched defs:idx (Results 1 - 24 of 24) 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 DCreateConnectionProcessorTest.java339 private PhoneAccount.Builder makeQuickAccountBuilder(String id, int idx) { argument
340 return new PhoneAccount.Builder(makeQuickAccountHandle(id), "label" + idx);
343 private PhoneAccount makeQuickAccount(String id, int idx) { argument
344 return makeQuickAccountBuilder(id, idx)
345 .setAddress(Uri.parse("http://foo.com/" + idx))
346 .setSubscriptionAddress(Uri.parse("tel:555-000" + idx))
347 .setCapabilities(idx)
350 .setShortDescription("desc" + idx)
H A DPhoneAccountRegistrarTest.java781 private PhoneAccount.Builder makeQuickAccountBuilder(String id, int idx) { argument
784 "label" + idx);
787 private PhoneAccount makeQuickAccount(String id, int idx) { argument
788 return makeQuickAccountBuilder(id, idx)
789 .setAddress(Uri.parse("http://foo.com/" + idx))
790 .setSubscriptionAddress(Uri.parse("tel:555-000" + idx))
791 .setCapabilities(idx)
794 .setShortDescription("desc" + idx)
H A DBluetoothPhoneServiceTest.java948 private PhoneAccount.Builder makeQuickAccountBuilder(String id, int idx) { argument
949 return new PhoneAccount.Builder(makeQuickAccountHandle(id), "label" + idx);
952 private PhoneAccount makeQuickAccount(String id, int idx) { argument
953 return makeQuickAccountBuilder(id, idx)
954 .setAddress(Uri.parse(TEST_ACCOUNT_ADDRESS + idx))
955 .setSubscriptionAddress(Uri.parse("tel:555-000" + idx))
956 .setCapabilities(idx)
959 .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/services/BuiltInPrintService/jni/ipphelper/
H A Dippstatus_monitor.c341 int idx; local
342 for (idx = 0; idx < ippGetCount(attr); idx++) {
343 LOGD("before job-state-reason (%d): %s", idx,
344 ippGetString(attr, idx, NULL));
383 int idx; local
384 for (idx = 0; ippGetCount(attr); idx++) {
385 LOGD("job-state-reason (%d): %s", idx, ippGetStrin
[all...]
H A Dipphelper.c284 int idx = 0; local
315 for (idx = 0; idx < ippGetCount(attrptr); idx++) {
318 ippGetString(attrptr, idx, NULL));
319 if (strncmp(ippGetString(attrptr, idx, NULL), IPP_PRNT_STATE_NONE,
333 } else if (strncmp(ippGetString(attrptr, idx, NULL), IPP_PRNT_STATE_SPOOL_FULL,
347 } else if (strncmp(ippGetString(attrptr, idx, NULL), IPP_PRNT_STATE_MARKER_SUPPLY_LOW,
350 } else if (strncmp(ippGetString(attrptr, idx, NULL), IPP_PRNT_STATE_TONER_LOW,
353 } else if (strncmp(ippGetString(attrptr, idx, NUL
765 int idx = 0; local
905 int idx = 0; local
962 int idx = 0; local
1407 int idx = 0; local
[all...]
/packages/services/Car/evs/sampleDriver/
H A DEvsV4lCamera.cpp438 size_t idx = 0; local
450 for (idx = 0; idx < mBuffers.size(); idx++) {
451 if (!mBuffers[idx].inUse) {
452 if (mBuffers[idx].handle != nullptr) {
458 if (idx >= mBuffers.size()) {
463 mBuffers[idx].inUse = true;
481 buff.bufferId = idx;
482 buff.memHandle = mBuffers[idx]
[all...]
/packages/services/Telephony/src/com/android/phone/settings/
H A DVoicemailSettingsActivity.java539 for (int idx = 0; idx < adapter.getCount(); idx++) {
540 if (adapter.getItem(idx) == preference) {
542 null, idx, adapter.getItemId(idx));
724 private void handleForwardingSettingsReadResult(AsyncResult ar, int idx) { argument
725 if (DBG) Log.d(LOG_TAG, "handleForwardingSettingsReadResult: " + idx);
739 if (DBG) Log.d(LOG_TAG, "Ignoring fwd reading result: " + idx);
745 if (DBG) Log.d(LOG_TAG, "Error discovered for fwd read : " + idx);
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachine.java342 for (Integer idx : mCalls.keySet()) {
343 BluetoothHeadsetClientCall c1 = mCalls.get(idx);
362 for (Integer idx : callRemovedIds) {
363 BluetoothHeadsetClientCall c = mCalls.remove(idx);
369 for (Integer idx : callAddedIds) {
370 BluetoothHeadsetClientCall c = mCallsUpdate.get(idx);
371 mCalls.put(idx, c);
376 for (Integer idx : callRetainedIds) {
377 BluetoothHeadsetClientCall cOrig = mCalls.get(idx);
378 BluetoothHeadsetClientCall cUpdate = mCallsUpdate.get(idx);
589 enterPrivateMode(int idx) argument
[all...]
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackService.java1344 int idx = mHistory.get(i).intValue();
1345 if (idx < numTracks && tracks[idx] >= 0) {
1347 tracks[idx] = -1;
1474 int idx = -1;
1476 idx = mRand.nextInt(mAutoShuffleList.length);
1477 if (!wasRecentlyUsed(idx, lookback)) {
1482 mHistory.add(idx);
1487 mPlayList[mPlayListLen++] = mAutoShuffleList[idx];
1495 // check that the specified idx i
1497 wasRecentlyUsed(int idx, int lookbacksize) argument
[all...]
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
H A Dcontacts2_1108.sql107 CREATE TABLE 'search_index_segdir'(level INTEGER,idx INTEGER,start_block INTEGER,leaves_end_block INTEGER,end_block INTEGER,root BLOB,PRIMARY KEY(level, idx));
/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/apps/TV/libs/
H A Dexoplayer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...

Completed in 983 milliseconds