Searched defs:index (Results 26 - 50 of 4630) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/intltest/
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:__anon31225
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 */
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
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 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 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 DANTLRBufferedTokenStream.h48 /** 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
H A DANTLRLookaheadStream.h39 NSInteger index; variable
48 @property (assign) NSInteger index; variable
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format.cc26 size_t index = static_cast<size_t>(id) - kStartPoint - 1; local
27 return (index < arraysize(names)) ? names[index] : "*unknown-command*";
/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/third_party/WebKit/Source/platform/
H A DMIMETypeFromURL.cpp39 size_t index = url.find(';'); local
40 if (index == kNotFound)
41 index = url.find(',');
42 if (index != kNotFound) {
43 if (index > 5)
44 return url.substring(5, index - 5).lower();
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DQuotedPrintable.cpp42 static size_t lengthOfLineEndingAtIndex(const char* input, size_t inputLength, size_t index) argument
44 ASSERT_WITH_SECURITY_IMPLICATION(index < inputLength);
45 if (input[index] == '\n')
48 if (input[index] == '\r') {
49 if ((index + 1) == inputLength || input[index + 1] != '\n')
/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 void clear(unsigned index)
50 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
51 m_data[index / 8] &= ~(1 << (index & 7));
54 bool get(unsigned index) const
56 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySiz
[all...]
H A DBitwiseOperations.h55 unsigned long index; local
56 return LIKELY(_BitScanReverse(&index, x)) ? (31 - index) : 32;
64 unsigned long index; local
65 return LIKELY(_BitScanReverse64(&index, x)) ? (63 - index) : 64;
/external/chromium_org/third_party/angle/src/common/
H A Dtls.cpp15 TLSIndex index; local
18 index = TlsAlloc();
21 if ((pthread_key_create(&index, NULL)) != 0)
23 index = TLS_INVALID_INDEX;
27 assert(index != TLS_INVALID_INDEX && "CreateTLSIndex(): Unable to allocate Thread Local Storage");
28 return index;
31 bool DestroyTLSIndex(TLSIndex index) argument
33 assert(index != TLS_INVALID_INDEX && "DestroyTLSIndex(): Invalid TLS Index");
34 if (index == TLS_INVALID_INDEX)
40 return (TlsFree(index)
46 SetTLSValue(TLSIndex index, void *value) argument
61 GetTLSValue(TLSIndex index) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_set.h54 * Now use rules[index[x]..index[x+1]-1]. This index table is created by
57 int32_t index[257]; member in class:TransliterationRuleSet
108 * Check this for masked rules and index it to optimize performance.
128 * @param index the position indices, which will be updated
130 * at index.limit, and return FALSE if thre is a partial match.
136 UTransPosition& index,
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditmajor.cpp50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
52 switch (index) {
214 void IntlTestNormalize::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
220 switch (index) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_dual_blend.h15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
14 util_blend_state_is_dual(const struct pipe_blend_state *blend, int index) argument
/external/chromium_org/third_party/skia/tests/
H A DGrTBSearchTest.cpp32 int index = GrTBSearch<int, int>(array, n, array[i]); local
33 REPORTER_ASSERT(reporter, index == (int) i);
34 index = GrTBSearch<int, int>(array, n, -array[i]);
35 REPORTER_ASSERT(reporter, index < 0);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcreate_augmented_vec.c28 int16_t index, /* (i) Index for the augmented vector to be created */
37 ilow = index-4;
40 ppo = buffer-index;
41 WEBRTC_SPL_MEMCPY_W16(cbVec, ppo, index);
45 ppi = buffer - index - 4;
55 ppo = buffer - index;
56 WEBRTC_SPL_MEMCPY_W16(cbVec+index,ppo,(SUBL-index));
27 WebRtcIlbcfix_CreateAugmentedVec( int16_t index, int16_t *buffer, int16_t *cbVec ) argument
H A Dnearest_neighbor.c22 * Find index in array such that the array element with said
23 * index is the element of said array closest to "value"
28 int16_t *index, /* (o) index of array element closest to value */
45 *index=WebRtcSpl_MinIndexW32(crit, (int16_t)arlength);
27 WebRtcIlbcfix_NearestNeighbor( int16_t *index, int16_t *array, int16_t value, int16_t arlength ) argument
H A Dsimple_lsf_dequant.c23 * obtain dequantized lsf coefficients from quantization index
28 int16_t *index, /* (i) quantization index */
40 WEBRTC_SPL_MUL_16_16(index[i], WebRtcIlbcfix_kLsfDimCb[i]) + j];
53 WEBRTC_SPL_MUL_16_16(index[LSF_NSPLIT + i], WebRtcIlbcfix_kLsfDimCb[i]) + j];
26 WebRtcIlbcfix_SimpleLsfDeQ( int16_t *lsfdeq, int16_t *index, int16_t lpc_n ) argument
H A Dsort_sq.c27 int16_t *index, /* (o) the quantization index */
35 *index = 0;
44 *index = i;
47 *index = i - 1;
25 WebRtcIlbcfix_SortSq( int16_t *xq, int16_t *index, int16_t x, const int16_t *cb, int16_t cb_size ) argument
/external/chromium_org/ui/base/models/
H A Dcombobox_model.cc9 bool ComboboxModel::IsItemSeparatorAt(int index) { argument
17 bool ComboboxModel::IsItemEnabledAt(int index) const {

Completed in 975 milliseconds

1234567891011>>