| /dalvik/dx/src/com/android/dx/dex/file/ |
| DebugInfoDecoder.java | 112 int idx = -1; local 115 idx = file.getStringIds().indexOf(new CstString("this")); 124 thisStringIdx = idx; 274 // TODO: Final 0 should be idx of paramType.getDescriptor(). 496 int idx = entry.nameIndex; local 498 if ((idx < 0) || (idx == thisStringIdx)) {
|
| /dalvik/vm/jdwp/ |
| JdwpHandler.cpp | 50 pLoc->idx = read8BE(pBuf); 61 expandBufAdd8BE(pReply, pLoc->idx); [all...] |
| /external/chromium/chrome/browser/chromeos/login/ |
| background_view.cc | 366 int idx = GetIndexOf(os_version_label_); local 372 if (idx < 0) 375 AddChildViewAt(os_version_label_, idx); 378 int idx = GetIndexOf(boot_times_label_); local 384 if (idx < 0) 387 AddChildViewAt(boot_times_label_, idx);
|
| /external/chromium/chrome/browser/ui/gtk/bookmarks/ |
| bookmark_utils_gtk.cc | 411 BookmarkModel* model, const BookmarkNode* parent, int idx) { 417 model->AddURL(parent, idx, title, url); 422 BookmarkModel* model, const BookmarkNode* parent, int idx) { 427 model->AddURL(parent, idx++, title, urls[i]); 433 BookmarkModel* model, const BookmarkNode* parent, int idx) { 439 model->AddURL(parent, idx, title, url);
|
| /external/clang/lib/ARCMigrate/ |
| FileRemapper.cpp | 77 for (unsigned idx = 0; idx+3 <= lines.size(); idx += 3) { 78 StringRef fromFilename = lines[idx]; 80 lines[idx+1].getAsInteger(10, timeModified); 81 StringRef toFilename = lines[idx+2];
|
| /external/clang/lib/Analysis/ |
| AnalysisDeclContext.cpp | 37 idx::TranslationUnit *tu, 54 idx::TranslationUnit *tu) 199 idx::TranslationUnit *TU) { 208 const CFGBlock *Blk, unsigned Idx) { 209 return getLocationContextManager().getStackFrame(this, Parent, S, Blk, Idx); 271 const CFGBlock *blk, unsigned idx) { 273 StackFrameContext::Profile(ID, ctx, parent, s, blk, idx); 278 L = new StackFrameContext(ctx, parent, s, blk, idx);
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
| DebugInfoDecoder.java | 112 int idx = -1; local 115 idx = file.getStringIds().indexOf(new CstString("this")); 124 thisStringIdx = idx; 274 // TODO: Final 0 should be idx of paramType.getDescriptor(). 496 int idx = entry.nameIndex; local 498 if ((idx < 0) || (idx == thisStringIdx)) {
|
| /external/libvpx/mkvparser/ |
| mkvparser.hpp | 234 // Returns ContentCompression represented by |idx|. Returns NULL if |idx|
236 const ContentCompression* GetCompressionByIndex(unsigned long idx) const;
242 // Returns ContentEncryption represented by |idx|. Returns NULL if |idx|
244 const ContentEncryption* GetEncryptionByIndex(unsigned long idx) const;
349 const ContentEncoding* GetContentEncodingByIndex(unsigned long idx) const;
468 const Track* GetTrackByIndex(unsigned long idx) const;
559 const Entry* GetEntry(int idx) const;
571 const VoidElement* GetVoidElement(int idx) const; [all...] |
| /external/opencv/cxcore/include/ |
| cxcore.hpp | 72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0) 73 { read( fs, seqname, idx ); } 121 bool read( CvFileStorage* fs, const char* seqname, int idx ); 242 CvMatrix( CvFileStorage* fs, const char* seqname, int idx ) : matrix(0) 243 { read( fs, seqname, idx ); } 304 bool read( CvFileStorage* fs, const char* seqname, int idx );
|
| /external/openssl/crypto/ |
| ex_data.c | 597 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val) 611 while (i <= idx) 620 sk_void_set(ad->sk,idx,val); 626 void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad, int idx) 630 else if (idx >= sk_void_num(ad->sk)) 633 return(sk_void_value(ad->sk,idx));
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar | |
| /external/icu4c/common/ |
| locmap.c | 871 uint32_t idx; local 873 for (idx = 0; idx < this_0->numRegions; idx++ ) { 874 int32_t sameChars = idCmp(posixID, this_0->regionMaps[idx].posixID); 875 if (sameChars > bestIdxDiff && this_0->regionMaps[idx].posixID[sameChars] == 0) { 878 return this_0->regionMaps[idx].hostID; 881 bestIdx = idx; 1005 uint32_t idx; local [all...] |
| ustring.c | 539 int32_t idx = _matchFromSet(string, matchSet, TRUE); local 540 if(idx >= 0) { 541 return (UChar *)string + idx; 551 int32_t idx = _matchFromSet(string, matchSet, TRUE); local 552 if(idx >= 0) { 553 return idx; 555 return -idx - 1; /* == u_strlen(string) */ 563 int32_t idx = _matchFromSet(string, matchSet, FALSE); local 564 if(idx >= 0) { 565 return idx; [all...] |
| /external/wpa_supplicant_8/src/ap/ |
| hostapd.c | 173 int errors = 0, idx; local 176 idx = ssid->wep.idx; 179 hapd, WPA_ALG_WEP, broadcast_ether_addr, idx, 180 1, NULL, 0, ssid->wep.key[idx], 181 ssid->wep.len[idx])) { 198 idx = key->idx; 200 broadcast_ether_addr, idx, 1, 201 NULL, 0, key->key[idx], [all...] |
| /bionic/libc/tools/zoneinfo/ |
| generate | 81 mv zoneinfo.dat zoneinfo.idx $bionic_zoneinfo_dir
|
| /external/chromium/third_party/libevent/test/ |
| bench.c | 69 long idx = (long) arg, widx = idx + 1; local
|
| /external/clang/test/SemaCXX/ |
| array-bounds.cpp | 90 #define ARR_IN_MACRO(flag, arr, idx) flag ? arr[idx] : 1
|
| /external/e2fsprogs/lib/ss/ |
| listen.c | 144 #define get_request(tbl,idx) ((tbl) -> requests + (idx))
|
| /external/freetype/src/cff/ |
| cffcmap.c | 124 FT_UInt idx ) 128 FT_UInt sid = charset->sids[idx];
|
| /external/freetype/src/truetype/ |
| ttinterp.h | 86 (*TT_Get_CVT_Func)( EXEC_OP_ FT_ULong idx ); 91 (*TT_Set_CVT_Func)( EXEC_OP_ FT_ULong idx,
|
| /external/iproute2/ip/ |
| tunnel.c | 101 char * tnl_ioctl_get_ifname(int idx) 107 ifr.ifr_ifindex = idx;
|
| /external/jmonkeyengine/engine/src/test/jme3test/app/ |
| TestIDList.java | 57 int idx = rand.nextInt(freeIds.size()); local 58 int id = freeIds.remove(idx);
|
| /external/kernel-headers/original/linux/ |
| mempolicy.h | 142 unsigned long idx); 222 mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx)
|
| /external/linux-tools-perf/util/ |
| strlist.c | 188 struct str_node *strlist__entry(const struct strlist *self, unsigned int idx) 195 if (!idx--)
|
| /external/llvm/include/llvm/ADT/ |
| PackedVector.h | 30 static T getValue(const llvm::BitVector &Bits, unsigned Idx) { 33 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 37 static void setValue(llvm::BitVector &Bits, unsigned Idx, T val) { 40 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i); 47 static T getValue(const llvm::BitVector &Bits, unsigned Idx) { 50 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 51 if (Bits[(Idx << (BitNum-1)) + BitNum-1]) 56 static void setValue(llvm::BitVector &Bits, unsigned Idx, T val) { 59 Bits.set((Idx << (BitNum-1)) + BitNum-1); 63 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i) [all...] |