Searched refs:index (Results 526 - 550 of 8871) sorted by relevance

<<21222324252627282930>>

/external/proguard/src/proguard/gui/splash/
H A DTextSprite.java84 for (int index = 0; index < text.length; index++)
86 graphics.drawString(text[index].getString(time), xt, yt + index * spacingt);
/external/skia/src/gpu/gl/debug/
H A DGrTextureObj.h34 int index = fTextureUnitReferees.find(referee); local
35 GrAlwaysAssert(0 <= index);
36 fTextureUnitReferees.removeShuffle(index);
39 int index = fTextureUnitReferees.find(referee); local
40 return 0 <= index;
/external/skia/tests/
H A DPathOpsSimplifyFailTest.cpp40 static void failOne(skiatest::Reporter* reporter, int index) { argument
42 int i = (int) (index % nonFinitePtsCount);
43 int f = (int) (index % finitePtsCount);
45 switch (index % 13) {
69 static void dontFailOne(skiatest::Reporter* reporter, int index) { argument
71 int f = (int) (index % finitePtsCount);
73 switch (index % 11) {
92 REPORTER_ASSERT(reporter, success || index == 13);
98 for (int index = 0; index < (in
107 int index = 0; local
112 int index = 13; local
[all...]
H A DPathOpsTestCommon.cpp54 for (int index = 0; index < quads.count(); ++index) {
56 quads[index][1].asSkPoint(),
57 quads[index][2].asSkPoint()
97 for (int index = 0; index <= inflections; ++index) {
98 double hi = index < inflections ? tInflects[index]
[all...]
/external/smack/src/org/xbill/DNS/
H A DFlags.java74 isFlag(int index) { argument
75 flags.check(index);
76 if ((index >= 1 && index <= 4) || (index >= 12))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DVariableSizeIterator.java45 private int index; field in class:VariableSizeIterator
61 * @param index The index of the item being read. This is guaranteed to be less than {@code size}
64 protected abstract T readNextItem(@Nonnull DexReader reader, int index); argument
72 return index < size;
77 if (index >= size) {
80 return readNextItem(reader, index++);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderFieldReference.java43 int index = DexWriter.NO_INDEX; field in class:BuilderFieldReference
66 return index;
69 @Override public void setIndex(int index) { argument
70 this.index = index;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs62 public void Insert( int index, object value ) argument
88 public void RemoveAt( int index )
93 public object this[int index]
97 if ( index < 0 || index >= Count )
100 return _source[index + _startIndex];
104 if ( index < 0 || index >= Count )
107 _source[index + _startIndex] = value;
115 public void CopyTo( Array array, int index )
281 IList.Insert( int index, object value ) argument
393 Insert( int index, T item ) argument
[all...]
H A DListExtensions.cs67 public static void add( this IList list, int index, object value ) argument
69 list.Insert( index, value );
117 public static T elementAt<T>( this IList<T> list, int index )
119 return list[index];
123 public static object get( this IList list, int index )
125 return list[index];
129 public static T get<T>( this IList<T> list, int index )
131 return list[index];
136 public static T get<T>( this List<T> list, int index )
138 return list[index];
156 set( this IList list, int index, object value ) argument
162 set( this IList<T> list, int index, T value ) argument
168 set( this List<T> list, int index, T value ) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsTestCommon.cpp54 for (int index = 0; index < quads.count(); ++index) {
56 quads[index][1].asSkPoint(),
57 quads[index][2].asSkPoint()
97 for (int index = 0; index <= inflections; ++index) {
98 double hi = index < inflections ? tInflects[index]
[all...]
/external/proguard/src/proguard/evaluation/
H A DStack.java131 for (int index = 0; index < currentSize; index++)
133 Value thisValue = this.values[index];
139 Value otherValue = other.values[index];
148 values[index] = newValue;
186 * @param index the index of the stack element, counting from the bottom
190 public Value getBottom(int index) argument
192 return values[index];
202 setBottom(int index, Value value) argument
214 getTop(int index) argument
226 setTop(int index, Value value) argument
237 removeTop(int index) argument
[all...]
/external/skia/src/gpu/
H A DGrTHashTable.h80 // search fSorted, and return the found index, or ~index of where it
99 int index = (low + high) >> 1; local
100 if (Key::LessThan(*array[index], key)) {
101 low = index + 1;
103 high = index;
134 int index = this->searchArray(key); local
135 if (index < 0) {
143 SkASSERT(0 == index || Key::LessThan(*array[index
158 int index = this->searchArray(key); local
209 int index = fSorted.find(elem); local
[all...]
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_index_unittest.cc154 SimpleIndex* index() { return index_.get(); } function in class:disk_cache::SimpleIndexTest
201 index()->SetMaxSize(100);
202 index()->Insert(hashes_.at<2>());
203 index()->UpdateEntrySize(hashes_.at<2>(), 2);
204 index()->Insert(hashes_.at<3>());
205 index()->UpdateEntrySize(hashes_.at<3>(), 3);
206 index()->Insert(hashes_.at<4>());
207 index()->UpdateEntrySize(hashes_.at<4>(), 4);
208 EXPECT_EQ(9U, index()->cache_size_);
212 index()
[all...]
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dtemplate_url_table_model.h58 // Removes the entry at the specified index.
59 void Remove(int index);
61 // Adds a new entry at the specified index.
62 void Add(int index,
67 // Update the entry at the specified index.
68 void ModifyTemplateURL(int index,
73 // Reloads the icon at the specified index.
74 void ReloadIcon(int index);
76 // Returns the TemplateURL at the specified index.
77 TemplateURL* GetTemplateURL(int index);
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/
H A Dconsole_tts_engine.js40 function logUtterance(utterance, index, sendTtsEvent) {
41 if (index == utterance.length) {
46 appendText(utterance[index]);
48 if (utterance[index] == ' ') {
49 sendTtsEvent({'type': 'word', 'charIndex': index});
51 else if (utterance[index] == '.' ||
52 utterance[index] == '?' ||
53 utterance[index] == '!') {
54 sendTtsEvent({'type': 'sentence', 'charIndex': index});
58 logUtterance(utterance, ++index, sendTtsEven
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DTypeAhead.cpp97 int index = (selected < 0 ? 0 : selected) + searchStartOffset; local
98 index %= optionCount;
105 for (int i = 0; i < optionCount; ++i, index = (index + 1) % optionCount) {
107 String text = m_dataSource->optionAtIndex(index);
109 return index;
115 int index = m_buffer.toString().toInt(&ok); local
116 if (index > 0 && index <= optionCount)
117 return index
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStringListTearOff.h80 String getItem(unsigned long index, ExceptionState& exceptionState) argument
82 return target()->getItem(index, exceptionState);
85 String insertItemBefore(const String& item, unsigned long index, ExceptionState& exceptionState) argument
92 target()->insertItemBefore(item, index);
98 String replaceItem(const String& item, unsigned long index, ExceptionState& exceptionState) argument
105 target()->replaceItem(item, index, exceptionState);
111 bool anonymousIndexedSetter(unsigned index, const String& item, ExceptionState& exceptionState) argument
113 replaceItem(item, index, exceptionState);
117 String removeItem(unsigned long index, ExceptionState& exceptionState) argument
124 String removedItem = target()->removeItem(index, exceptionStat
[all...]
H A DSVGTransformList.idl37 [RaisesException] getter SVGTransform getItem(unsigned long index);
38 [RaisesException] setter SVGTransform (unsigned long index, SVGTransform value);
39 [RaisesException] SVGTransform insertItemBefore(SVGTransform item, unsigned long index);
40 [RaisesException] SVGTransform replaceItem(SVGTransform item, unsigned long index);
41 [RaisesException] SVGTransform removeItem(unsigned long index);
/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java96 for (int index = 0; index < jumpOffsetCount; index++)
98 cases[index] = readInt(code, offset); offset += 4;
99 jumpOffsets[index] = readInt(code, offset); offset += 4;
117 for (int index = 0; index < cases.length; index++)
119 writeInt(code, offset, cases[index]); offset += 4;
120 writeInt(code, offset, jumpOffsets[index]); offse
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dbitmap.cc29 // Returns the index of the first bit set to |value| from |word|. This code
92 void Bitmap::Set(int index, bool value) { argument
93 DCHECK_LT(index, num_bits_);
94 DCHECK_GE(index, 0);
95 const int i = index & (kIntBits - 1);
96 const int j = index / kIntBits;
103 bool Bitmap::Get(int index) const {
104 DCHECK_LT(index, num_bits_);
105 DCHECK_GE(index, 0);
106 const int i = index
111 Toggle(int index) argument
212 FindNextBit(int* index, int limit, bool value) const argument
275 FindBits(int* index, int limit, bool value) const argument
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dfocus_row.js63 * The index that should be actively participating in the page tab order.
104 set activeIndex(index) {
110 this.activeIndex_ = index;
112 if (this.items[index])
113 this.items[index].tabIndex = 0;
118 var isActive = index >= 0 && index < this.items.length;
129 * Focuses the item at |index|.
130 * @param {number} index An index t
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_lookahead.c21 /* Return the buffer at the given absolute index and increment the index */
24 unsigned int index = *idx; local
25 struct lookahead_entry *buf = ctx->buf + index;
27 assert(index < ctx->max_sz);
28 if (++index >= ctx->max_sz)
29 index -= ctx->max_sz;
30 *idx = index;
175 int index) {
178 if (index >
174 vp9_lookahead_peek(struct lookahead_ctx *ctx, int index) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.c24 unsigned int read_idx; /* Read index */
25 unsigned int write_idx; /* Write index */
30 /* Return the buffer at the given absolute index and increment the index */
33 unsigned int index = *idx; local
34 struct lookahead_entry *buf = ctx->buf + index;
36 assert(index < ctx->max_sz);
37 if (++index >= ctx->max_sz)
38 index -= ctx->max_sz;
39 *idx = index;
177 vp9_lookahead_peek(struct lookahead_ctx *ctx, int index) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.cpp95 unsigned index = start; local
96 for (; index < src.length(); ++index) {
97 if (!isASCIIDigit(src[index]))
100 return index - start;
284 unsigned index = start; local
285 if (src[index] == 'Z') {
286 end = index + 1;
291 if (src[index] == '+')
293 else if (src[index]
327 unsigned index; local
348 unsigned index; local
371 unsigned index; local
401 unsigned index = start + 2; local
453 unsigned index; local
471 unsigned index; local
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dimage_util.js57 function on_complete_index(index, err, loading, finished, callbacks) {
59 delete loading[index];
60 finished[index] = { width: width, height: height, data: imageData };
62 callbacks.onerror(index);
70 index, pathname;
72 for (var index = 0; index < imageSpecs.length; index++) {
73 loading[index] = imageSpecs[index];
[all...]

Completed in 650 milliseconds

<<21222324252627282930>>