HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 626 - 650 of 960) sorted by null

<<21222324252627282930>>

  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 140 String [] idx = l[i].split(" "); local
141 mLines[i].startPoint = Integer.valueOf(idx[0]);
142 mLines[i].endPoint = Integer.valueOf(idx[1]);
  /external/icu4c/test/cintltst/
ucsdetst.c 390 int32_t idx = 0; local
401 for (idx = 0; idx < ARRAY_SIZE(testStrings); idx++) {
402 ucsdet_setText(csd, testStrings[idx], -1, &status);
406 if (testResults[idx] != NULL) {
407 log_err("Unexpectedly got no results at index %d.\n", idx);
410 log_verbose("Got no result as expected at index %d.\n", idx);
415 if (testResults[idx] == NULL || strcmp(ucsdet_getName(match, &status), testResults[idx]) != 0)
    [all...]
  /external/icu4c/tools/toolutil/
pkg_genc.c 212 int32_t idx; local
214 for (idx = 0; idx < (int32_t)(sizeof(assemblyHeader)/sizeof(assemblyHeader[0])); idx++) {
215 if (uprv_strcmp(optAssembly, assemblyHeader[idx].name) == 0) {
216 assemblyHeaderIndex = idx;
217 hexType = assemblyHeader[idx].hexType; /* set the hex type */
228 int32_t idx; local
230 for (idx = 1; idx < (int32_t)(sizeof(assemblyHeader)/sizeof(assemblyHeader[0])); idx++)
    [all...]
ucm.c 918 int32_t idx; local
963 idx=table->codePointsLength;
970 uprv_memcpy(table->codePoints+idx, codePoints, m->uLen*4);
971 m->u=idx;
975 idx=table->bytesLength;
982 uprv_memcpy(table->bytes+idx, bytes, m->bLen);
983 m->b.idx=idx;
987 for(idx=0; idx<m->uLen; ++idx)
    [all...]
  /external/iproute2/tc/
m_mirred.c 148 int idx; local
151 if ((idx = ll_name_to_index(d)) == 0) {
156 p.ifindex = idx;
  /external/webkit/WebKitTools/simplejson/
decoder.py 138 value, end = iterscan(s, idx=end, context=context).next()
171 value, end = iterscan(s, idx=end, context=context).next()
251 obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_attr_process.c 90 const u8 *idx)
92 if (idx == NULL) {
98 wpa_printf(MSG_DEBUG, "WPS: Network Index: %d", *idx);
  /frameworks/base/libs/utils/
BufferedTextOutput.cpp 130 static void freeBufferIndex(int32_t idx)
133 gTextBuffers.editItemAt(idx) = gFreeBufferIndex;
134 gFreeBufferIndex = idx;
AssetManager.cpp 1670 int idx = getIndex(path); local
1681 int idx = getIndex(path); local
1693 int idx = getIndex(path); local
1701 int idx = getIndex(path); local
1713 int idx = getIndex(path); local
    [all...]
ZipFileRO.cpp 334 ZipEntryRO ZipFileRO::findEntryByIndex(int idx) const
336 if (idx < 0 || idx >= mNumEntries) {
337 LOGW("Invalid index %d\n", idx);
343 if (idx-- == 0)
  /hardware/broadcom/wlan/bcm4329/src/shared/
siutils_priv.h 100 #define GOODIDX(idx) (((uint)idx) < SI_MAXCORES)
176 extern uint32 sb_set_initiator_to(si_t *sih, uint32 to, uint idx);
  /packages/apps/Settings/src/com/android/settings/
DisplaySettings.java 132 int idx = 0; local
139 idx = i;
142 mAnimations.setValueIndex(idx);
  /frameworks/base/include/utils/
ResourceTypes.h 448 const char16_t* stringAt(size_t idx, size_t* outLen) const;
450 const char* string8At(size_t idx, size_t* outLen) const;
453 const ResStringPool_span* styleAt(size_t idx) const;
668 // Returns -1 if no namespace, -2 if idx out of range.
669 int32_t getAttributeNamespaceID(size_t idx) const;
670 const uint16_t* getAttributeNamespace(size_t idx, size_t* outLen) const;
672 int32_t getAttributeNameID(size_t idx) const;
673 const uint16_t* getAttributeName(size_t idx, size_t* outLen) const;
674 uint32_t getAttributeNameResID(size_t idx) const;
676 int32_t getAttributeValueStringID(size_t idx) const
    [all...]
  /dalvik/libdex/
ZipArchive.c 402 ZipEntry findEntryByIndex(ZipArchive* pArchive, int idx)
404 if (idx < 0 || idx >= pArchive->mNumEntries) {
405 LOGW("Invalid index %d\n", idx);
412 if (idx-- == 0)
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_test.c 216 int err, x, idx, res;
221 if ((idx = find_cipher("aes")) == -1) {
222 if ((idx = find_cipher("rijndael")) == -1) {
229 if ((err = eax_encrypt_authenticate_memory(idx, tests[x].key, tests[x].keylen,
254 if ((err = eax_decrypt_verify_memory(idx, tests[x].key, tests[x].keylen,
  /external/opencore/pvmi/media_io/pvmi_mio_fileinput/src/
pvmi_mio_fileinput.cpp 1724 register int32 idx; local
1771 int32 idx; local
    [all...]
  /external/openssl/crypto/
crypto.h 161 int idx, long argl, void *argp);
164 int idx, long argl, void *argp);
167 int idx, long argl, void *argp);
405 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
406 void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad,int idx);
  /external/openssl/include/openssl/
crypto.h 161 int idx, long argl, void *argp);
164 int idx, long argl, void *argp);
167 int idx, long argl, void *argp);
405 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val);
406 void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad,int idx);
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audio.c 303 int i = 0, idx; local
312 idx = 0;
347 idx = atoi(SDL_strrchr(driver_name, ':')+1);
353 audio=bootstrap[i]->create(idx);
361 audio = bootstrap[i]->create(idx);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
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));
  /system/core/liblog/
fake_log_device.c 308 int idx; local
310 idx = (int) priority - (int) ANDROID_LOG_VERBOSE;
311 if (idx < 0 ||
312 idx >= (int) (sizeof(priorityStrings) / sizeof(priorityStrings[0])))
314 return priorityStrings[idx];
  /frameworks/base/location/java/android/location/
LocationManager.java 455 int idx, size; local
458 idx = 0;
460 while ((idx < size) && (providers.get(idx).getPowerRequirement() == power)) {
461 tmp.add(providers.get(idx));
462 idx++;
473 idx = 0;
475 while ((idx < size) && (tmp.get(idx).getAccuracy() == acc)) {
476 tmp2.add(tmp.get(idx));
    [all...]
  /external/clearsilver/mod_ecs/
mod_ecs.c 804 int idx = 0; local
817 av[idx++] = path;
819 av[idx++] = user;
821 av[idx++] = group;
823 av[idx++] = av0;
828 av[idx++] = ap_escape_shell_cmd(p, w);
830 av[idx] = NULL;
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_test.c 327 int idx, err;
332 idx = find_cipher("aes");
333 if (idx == -1) {
334 idx = find_cipher("rijndael");
335 if (idx == -1) {
342 if ((err = gcm_memory(idx, tests[x].K, tests[x].keylen,
373 if ((err = gcm_memory(idx, tests[x].K, tests[x].keylen,
  /external/icu4c/i18n/
basictz.cpp 397 int32_t idx; local
401 for (idx = 0; idx < startTimes; idx++) {
402 tar->getStartTimeAt(idx, t);
413 int32_t asize = startTimes - idx;
421 tar->getStartTimeAt(idx + newidx, newTimes[newidx]);

Completed in 2007 milliseconds

<<21222324252627282930>>