Searched defs:index (Results 126 - 150 of 4630) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBulkBeanException.java22 private int index; field in class:BulkBeanException
25 public BulkBeanException(String message, int index) { argument
27 this.index = index;
30 public BulkBeanException(Throwable cause, int index) { argument
32 this.index = index;
37 return index;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocal.java23 private int index; field in class:Local
25 public Local(int index, Type type) { argument
27 this.index = index;
31 return index;
/external/proguard/src/proguard/
H A DArgumentWordReader.java36 private int index = 0; field in class:ArgumentWordReader
64 return index < arguments.length ?
65 arguments[index++] :
72 return "argument number " + index;
/external/qemu/android/base/memory/
H A DMallocUsableSize_unittest.cpp23 static size_t computeSize(size_t index) { argument
24 return 3 + index * 17;
/external/qemu/distrib/sdl-1.2.15/src/joystick/dummy/
H A DSDL_sysjoystick.c44 const char *SDL_SYS_JoystickName(int index) argument
51 The joystick to open is specified by the index field of the joystick.
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDatabaseUtils.java12 public static void bindObjectToProgram(SQLiteProgram prog, int index, argument
15 prog.bindNull(index);
17 prog.bindDouble(index, ((Number) value).doubleValue());
19 prog.bindLong(index, ((Number) value).longValue());
23 prog.bindLong(index, 1);
25 prog.bindLong(index, 0);
28 prog.bindBlob(index, (byte[]) value);
30 prog.bindString(index, value.toString());
/external/skia/experimental/iOSSampleApp/Shared/
H A DSkOptionsTableViewController.h38 - (UITableViewCell*)createTriState:(NSString*)title default:(int)index; variable
/external/skia/src/animator/
H A DSkDisplayNumber.cpp41 bool SkDisplayNumber::getProperty(int index, SkScriptValue* value) const { argument
43 switch (index) {
/external/skia/src/gpu/
H A DGrTBSearch.h24 int index = (low + high) >> 1; local
25 if (LT(array[index], target)) {
26 low = index + 1;
28 high = index;
/external/skia/src/svg/
H A DSkSVGPaintState.cpp44 SkString* SkSVGPaint::operator[](int index) { argument
45 SkASSERT(index >= 0);
46 SkASSERT(index < &fTerminal - &fInitial);
48 SkString* result = &fInitial + index + 1;
88 int index = parser.findAttribute(this, attrValue, (int) (delimiter - attrValue), true); local
89 SkASSERT(index >= 0);
91 addAttribute(parser, index, delimiter, (int) (end - delimiter));
104 int index;
106 for (index = kInitial + 1; index < kTermina
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeList.java43 public T get(int index) { argument
44 if (index < 0 || index >= size()) {
47 return readItem(index);
51 * Reads the item at {@code index}
52 * @param index The index of the item. This is guaranteed to be in [0, size)
53 * @return The item at the given index
56 public abstract T readItem(int index); argument
H A DFixedSizeSet.java47 int index = 0;
49 @Override public boolean hasNext() { return index < size(); }
56 return readItem(index++);
62 * Reads the item at {@code index}
63 * @param index The index of the item. This is guaranteed to be in [0, size)
64 * @return The item at the given index
67 public abstract T readItem(int index); argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DTypeListSection.java39 int getNullableItemOffset(@Nullable TypeListKey index); argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderReference.java38 void setIndex(int index); argument
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractForwardSequentialList.java43 @Nonnull private Iterator<T> iterator(int index) { argument
44 if (index < 0) {
49 for (int i=0; i<index; i++) {
67 private int index = initialIndex - 1;
74 forwardIterator = iterator(index+1);
87 return index >= 0;
92 index++;
97 return index+1;
103 return iterator(index--).next();
110 return index;
[all...]
/external/srtp/crypto/include/
H A Drdbx.h48 xtd_seq_num_t index; member in struct:__anon31208
79 * index to which s corresponds, and returns the difference between
106 * indicated that the index does not appear in the rdbx, and a mutex
150 /* index_init(&pi) initializes a packet index pi (sets it to zero) */
165 * known-to-be-good index) and a sequence number s (from a newly
167 * guess of the packet index to which s corresponds, and returns the
/external/srtp/crypto/replay/
H A Drdb.c53 * window_start is the index of the first packet in the window
55 * index as the leftmost bit
69 * rdb_check checks to see if index appears in rdb
73 rdb_check(const rdb_t *rdb, uint32_t index) { argument
75 /* if the index appears after (or at very end of) the window, its good */
76 if (index >= rdb->window_start + rdb_bits_in_bitmask)
79 /* if the index appears before the window, its bad */
80 if (index < rdb->window_start)
83 /* otherwise, the index appears within the window, so check the bitmask */
84 if (v128_get_bit(&rdb->bitmask, (index
101 rdb_add_index(rdb_t *rdb, uint32_t index) argument
[all...]
/external/valgrind/main/none/tests/mips64/
H A Dload_store_unaligned.c26 int i, index; local
41 index = (i / SOLL) % N;
43 i, index, memSrc[index], index, memDst[index], outLoad);
/external/webrtc/src/common_audio/signal_processing/
H A Dget_hanning_window.c61 WebRtc_Word32 index; local
66 index = (WebRtc_Word32)-0x200000;
68 index = (WebRtc_Word32)-0x100000;
73 index += factor;
74 (*vptr1++) = kHanningTable[index >> 22];
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Ddecode_bwe.c34 WebRtc_Word16 index; local
46 err = WebRtcIsacfix_DecodeSendBandwidth(streamdata, &index);
60 index);
/external/aac/libAACdec/src/
H A Dchannelinfo.cpp239 int index = 0; local
247 index = 0;
250 index = 1;
253 index = 3;
256 index = 4;
263 t->ScaleFactorBands_Long = sfbOffsetTables[index][samplingRateIndex].sfbOffsetLong;
264 t->ScaleFactorBands_Short = sfbOffsetTables[index][samplingRateIndex].sfbOffsetShort;
265 t->NumberOfScaleFactorBands_Long = sfbOffsetTables[index][samplingRateIndex].numberOfSfbLong;
266 t->NumberOfScaleFactorBands_Short = sfbOffsetTables[index][samplingRateIndex].numberOfSfbShort;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs58 /// The Lexer tracks line/col info as well as input index so its markers are
68 /// Return the current input symbol index 0..n where n indicates the
69 /// last symbol has been read. The index is the symbol about to be
117 /// Set the input cursor to the position indicated by index. This is
125 /// and in that its argument is strictly an input cursor (index).
137 /// The index is 0..n-1. A seek to position i means that LA(1) will return
141 void Seek(int index); argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs81 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
83 return reader.Read( buffer, index, count );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs79 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
81 return reader.Read( buffer, index, count );
H A DStringBuilderExtensions.cs50 public static char charAt( this StringBuilder buffer, int index )
52 return buffer[index];
62 public static void setCharAt( this StringBuilder buffer, int index, char c ) argument
64 buffer[index] = c;

Completed in 558 milliseconds

1234567891011>>