Searched defs:index (Results 1 - 25 of 4204) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseMapElement.h36 NSNumber *index; variable
39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
H A DANTLRTokenRewriteStream.h43 /** 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 */
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseMapElement.h36 NSNumber *index; variable
39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
H A DANTLRTokenRewriteStream.h43 /** 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 */
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseMapElement.h36 NSNumber *index; variable
39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
H A DANTLRTokenRewriteStream.h43 /** 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 */
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBaseMapElement.h36 NSNumber *index; variable
39 @property (retain) NSNumber *index; variable
H A DANTLRCharStreamState.h36 NSInteger index; variable
41 @property (assign) NSInteger index; variable
H A DANTLRStringStreamState.h35 NSUInteger index; variable
54 @property (assign) NSUInteger index; variable
H A DArrayIterator.h53 NSInteger index; variable
76 @property (assign) NSInteger index; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.cpp32 Touch* TouchList::item(unsigned index) argument
34 if (index >= m_values.size())
36 return m_values[index].get();
39 const Touch* TouchList::item(unsigned index) const
41 return const_cast<TouchList*>(this)->item(index);
/external/chromium_org/tools/sharding_supervisor/
H A Ddummy_test.py11 index = os.environ['GTEST_SHARD_INDEX'] variable
12 print 'Running shard %s of %s' % (index, total)
/external/eigen/doc/examples/
H A DTutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp18 MatrixXf::Index index; local
20 (m.colwise() - v).colwise().squaredNorm().minCoeff(&index);
22 cout << "Nearest neighbour is column " << index << ":" << endl;
23 cout << m.col(index) << endl;
/external/qemu/android/
H A Dkeycode.c22 int index; local
24 for (index = 0; index < 4; index++) {
25 if (code == wheel[index]) {
26 index = (index + rotation) & 3;
27 code = wheel[index];
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSelectElementWin.cpp51 int index = selectedIndex(); local
52 ASSERT(index >= 0);
53 ASSERT_WITH_SECURITY_IMPLICATION(index < static_cast<int>(listItems().size()));
54 setSelectedIndex(index);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitArray.h42 void set(unsigned index) argument
44 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
45 m_data[index / 8] |= 1 << (index & 7);
48 bool get(unsigned index) const
50 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
51 return !!(m_data[index / 8] & (1 << (index & 7)));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditrbbi.cpp23 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
26 switch (index) {
H A Dittrans.cpp37 void IntlTestTransliterator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
40 switch (index) {
/external/chromium_org/third_party/skia/src/animator/
H A DSkOpArray.cpp16 bool SkOpArray::getIndex(int index, SkOperand2* operand) { argument
17 if (index >= count()) {
21 *operand = begin()[index];
/external/chromium_org/ui/base/models/
H A Dcombobox_model.cc9 bool ComboboxModel::IsItemSeparatorAt(int index) { argument
/external/icu4c/test/intltest/
H A Ditrbbi.cpp35 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
38 switch (index) {
H A Dittrans.cpp37 void IntlTestTransliterator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
40 switch (index) {
/external/skia/src/animator/
H A DSkOpArray.cpp16 bool SkOpArray::getIndex(int index, SkOperand2* operand) { argument
17 if (index >= count()) {
21 *operand = begin()[index];
/external/srtp/include/
H A Dut_sim.h57 uint32_t index; member in struct:__anon26028
72 * ut_next_index(&u) returns the next index from the simulated
/external/aac/libSBRdec/src/
H A Dhuff_dec.cpp96 The table entries are interpreted either as index to the next entry
108 SCHAR index = 0; local
111 while (index >= 0) {
113 index = h[index][bit];
116 value = index+64; /* Add offset */

Completed in 2084 milliseconds

1234567891011>>