HomeSort by relevance Sort by last modified time
    Searched defs:index (Results 76 - 100 of 8401) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenRewriteStream.h 43 /** What index into rewrites List are we? */
45 /** Token buffer index. */
46 NSInteger index; variable
51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable
54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text;
59 * Return the index of the next token to operate on.
110 /** Map String (program name) -> Integer index */
129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 48 /** The index into the tokens list of the current token (next token
49 * to consume). tokens[index] should be LT(1). index=-1 indicates need
51 * First call to LT(1) or whatever gets the first token and sets index=0;
53 NSInteger index; variable
61 @property (assign) NSInteger index; variable
ANTLRLookaheadStream.h 39 NSInteger index; variable
48 @property (assign) NSInteger index; variable
  /external/capstone/cstool/
cstool_x86.c 67 int index = cs_op_index(ud, ins, X86_OP_IMM, i); local
68 printf("\t\timms[%u]: 0x%" PRIx64 "\n", i, x86->operands[index].imm);
90 if (op->mem.index != X86_REG_INVALID)
91 printf("\t\t\toperands[%u].mem.index: REG = %s\n", i, cs_reg_name(ud, op->mem.index));
  /external/clang/include/clang/Index/
CommentToXML.h 24 namespace index { namespace in namespace:clang
48 } // namespace index
  /external/clang/test/CodeGen/
block-3.c 6 __attribute__((__blocks__(byref))) int index = ({ int __a; int __b; __a < __b ? __b : __a; }); local
  /external/clang/test/CodeGenCXX/
static-data-member-single-emission.cpp 5 static const int index; member in struct:HasStaticInit
10 const int HasStaticInit<T>::index = the_count++; member in class:HasStaticInit
12 template <typename T> int func_tmpl1() { return HasStaticInit<T>::index; }
13 template <typename T> int func_tmpl2() { return HasStaticInit<T>::index; }
14 template <typename T> int func_tmpl3() { return HasStaticInit<T>::index; }
  /external/clang/test/Index/
fix-its.c 1 // RUN: c-index-test -test-load-source all -fspell-checking %s 2> %t
23 unsigned long index; local
26 MACRO(printf("%d", index));
  /external/clang/test/Sema/
implicit-builtin-redecl.c 17 int index = 1; local
20 static int index; variable
23 return index << 2;
  /external/icu/icu4c/source/common/
pluralmap.cpp 37 int32_t index = c; local
38 return (index < 0 || index >= UPRV_LENGTHOF(gPluralForms)) ?
39 NULL : gPluralForms[index];
  /external/icu/icu4c/source/i18n/
rbt_set.h 55 * Index table. For text having a first character c, compute x = c&0xFF.
56 * Now use rules[index[x]..index[x+1]-1]. This index table is created by
59 int32_t index[257]; member in class:TransliterationRuleSet
110 * Check this for masked rules and index it to optimize performance.
130 * @param index the position indices, which will be updated
132 * at index.limit, and return FALSE if thre is a partial match.
138 UTransPosition& index,
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/index/
package-info.java 14 * Internal: Index generation for HTML reports.
16 package org.jacoco.report.internal.html.index
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
FwdRef.java 30 int index; field in class:FwdRef
  /external/libcap/libcap/
_makenames.c 18 int index; member in struct:__anon24112
31 for ( i=0; list[i].index >= 0 && list[i].name; ++i ) {
32 if (maxcaps <= list[i].index) {
33 maxcaps = list[i].index + 1;
35 pointers[list[i].index] = list[i].name;
  /external/libvncserver/libvncserver/
zrlepalettehelper.h 23 * storing a reverse index using a simple hash-table
35 zrle_U8 index[ZRLE_PALETTE_MAX_SIZE + 4096]; member in struct:__anon25953
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
IndexRecord.java 10 package org.tukaani.xz.index;
  /external/pdfium/core/fxge/
cfx_unicodeencoding.cpp 28 uint32_t index = 0; local
30 index = FXFT_Get_Char_Index(face, charcode);
31 if (!index && !FXFT_Select_Charmap(face, FXFT_ENCODING_APPLE_ROMAN))
  /external/proguard/src/proguard/obfuscate/
NumericNameFactory.java 31 private int index; field in class:NumericNameFactory
38 index = 0;
44 return Integer.toString(++index);
  /external/puffin/src/
bit_io_unittest.cc 27 size_t index = 0; local
28 ASSERT_TRUE(bw.WriteBytes(2, [&tmp, &index](uint8_t* buffer, size_t count) {
29 if (count > 2 - index)
31 memcpy(buffer, &tmp[index], count);
  /external/strace/
netlink_route.c 136 const unsigned int index = nlmsghdr->nlmsg_type - RTM_BASE; local
138 if (index < ARRAY_SIZE(route_decoders)
139 && route_decoders[index]) {
140 route_decoders[index](tcp, nlmsghdr, family, addr, len);
  /external/tensorflow/tensorflow/core/graph/
tensor_id.cc 33 // neither ':' nor '^' characters, the output index is implicitly 0, and the
37 unsigned int index = 0; local
40 index += ((*p - '0') * mul);
47 id.second = index;
  /external/tensorflow/tensorflow/core/lib/gtl/
iterator_range_test.cc 30 int index = 0; local
32 ASSERT_LT(index, v.size());
33 EXPECT_EQ(v[index], prime);
34 ++index;
36 EXPECT_EQ(v.size(), index);
42 int index = 0; local
44 ASSERT_LT(index, v.size());
45 EXPECT_EQ(v[index], prime);
46 ++index;
48 EXPECT_EQ(v.size(), index);
54 int index = 1; local
66 int index = 1; local
    [all...]
  /external/valgrind/none/tests/mips64/
unaligned_load.c 19 int i, index; local
35 index = (i / SOLL) % N;
37 i, index, memSrc[index], outLoad);
  /external/webrtc/webrtc/common_audio/signal_processing/
get_hanning_window.c 61 int32_t index; local
66 index = (int32_t)-0x200000;
68 index = (int32_t)-0x100000;
73 index += factor;
74 (*vptr1++) = kHanningTable[index >> 22];
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
q_gain_p.cpp 130 Word16 -- index of quantization
179 Word16 q_gain_pitch( /* Return index of quantization */
189 Word16 index; local
196 index = 0;
208 index = i;
215 /* in MR795 mode, compute three gain_pit candidates around the index
216 * found in the quantization loop: the index found and the two direct
222 if (index == 0)
224 ii = index;
228 if (index == (NB_QUA_PITCH - 1) |
    [all...]

Completed in 712 milliseconds

1 2 34 5 6 7 8 91011>>