Searched refs:index (Results 201 - 225 of 4641) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/
H A DTimeRanges.idl32 float start(in unsigned long index)
34 float end(in unsigned long index)
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnLocalTriangulator.h132 // Gets the vertex at the given index, 0 <= index < 3.
133 Vertex* getVertex(int index) argument
135 ASSERT(index >= 0 && index < 3);
136 return m_vertices[index];
160 // Returns the index [0..2] associated with the given vertex, or
183 Vertex* getVertex(int index) argument
185 ASSERT(index >= 0 && index <
216 getTriangle(int index) argument
230 getInteriorVertex(int index) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSArrayExtras.h34 -(NSNumber *)_webkit_numberAtIndex:(NSUInteger)index;
35 -(NSString *)_webkit_stringAtIndex:(NSUInteger)index;
/external/zlib/src/examples/
H A Dzran.c9 its entirety, and an index built with access points about every SPAN bytes
24 To use the index, an offset in the uncompressed data is provided, for which
25 the latest accees point at or preceding that offset is located in the index.
26 The input file is positioned to the specified location in the index, and if
33 Another approach would be to generate the index on demand. In that case,
35 the index, but if a read far enough past the end of the index is required,
36 then further index entries would be generated and added.
43 Another way to build an index would be to use inflateCopy(). That would
47 index i
77 free_index(struct access *index) argument
87 addpoint(struct access *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) argument
144 struct access *index; /* access points being generated */ local
244 extract(FILE *in, struct access *index, off_t offset, unsigned char *buf, int len) argument
354 struct access *index = NULL; local
[all...]
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dqname.cc54 int index = QName_Hash(ns, local); local
55 int increment = index >> (bits - 1) | 1;
58 index &= ((1 << bits) - 1);
59 if (!qname_table[index].Occupied()) {
62 if (qname_table[index].localPart_ == local &&
63 qname_table[index].namespace_ == ns) {
64 qname_table[index].AddRef();
65 return qname_table + index;
67 index += increment;
73 int index local
[all...]
/external/chromium/net/disk_cache/
H A Dbitmap_unittest.cc186 for (int index = 111; map.FindNextSetBitBeforeLimit(&index, 278);
187 ++index) {
188 EXPECT_EQ(index, find_me);
200 int index = i + 1; local
201 EXPECT_FALSE(map.FindNextSetBitBeforeLimit(&index, i + 32));
213 for (int index = 0; map.FindNextSetBit(&index); ++index) {
214 EXPECT_EQ(index, find_m
240 int index = 0; local
277 int index = 0; local
[all...]
/external/proguard/src/proguard/evaluation/
H A DStack.java129 for (int index = 0; index < currentSize; index++)
131 Value thisValue = this.values[index];
137 Value otherValue = other.values[index];
146 values[index] = newValue;
166 for (int index = 0; index < currentSize; index++)
168 values[index]
191 getBottom(int index) argument
203 setBottom(int index, Value value) argument
215 getTop(int index) argument
227 setTop(int index, Value value) argument
238 removeTop(int index) argument
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGListProperty.h138 bool canGetItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
140 if (index >= values.size()) {
148 ListItemType getItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
150 if (!canGetItem(values, index, ec))
154 return values.at(index);
157 PassListItemTearOff getItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
161 if (!canGetItem(values, index, ec))
169 RefPtr<ListItemTearOff> wrapper = wrappers.at(index);
174 wrapper = ListItemTearOff::create(animatedList, UndefinedRole, values.at(index));
175 wrappers.at(index)
182 insertItemBeforeValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
202 insertItemBeforeValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
239 canReplaceItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
252 replaceItemValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
274 replaceItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) argument
316 canRemoveItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
329 removeItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
341 removeItemValuesAndWrappers(AnimatedListPropertyTearOff* animatedList, unsigned index, ExceptionCode& ec) argument
[all...]
/external/guava/guava/src/com/google/common/base/
H A DPreconditions.java267 * Ensures that {@code index} specifies a valid <i>element</i> in an array,
268 * list or string of size {@code size}. An element index may range from zero,
271 * @param index a user-supplied index identifying an element of an array, list
274 * @return the value of {@code index}
275 * @throws IndexOutOfBoundsException if {@code index} is negative or is not
279 public static int checkElementIndex(int index, int size) { argument
280 return checkElementIndex(index, size, "index");
284 * Ensures that {@code index} specifie
297 checkElementIndex( int index, int size, @Nullable String desc) argument
306 badElementIndex(int index, int size, String desc) argument
329 checkPositionIndex(int index, int size) argument
347 checkPositionIndex( int index, int size, @Nullable String desc) argument
356 badPositionIndex(int index, int size, String desc) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java260 int index = skipLeadingWhitespace(seq, element.endOfSequence);
261 switch (charAt(seq, index)) {
264 if (index + 1 != seq.length()) {
272 index = skipLeadingWhitespace(seq, index + 1);
273 String value = internStrategy.intern(seq.substring(index, seq.length()));
277 if (charAt(seq, index + 1) == '=') {
279 index = skipLeadingWhitespace(seq, index + 2);
280 String src = parseHdfName(seq, index);
328 parseHdfNameAttrs(HdfNameAttrs destination, String seq, int index, ParseState state) argument
350 parseHdfName(String seq, int index) argument
364 parseAttributes(String seq, int index, ParseState state, HdfNameAttrs element) argument
405 parseAttribute(String seq, int index, ParseState state, HdfNameAttrs element) argument
450 parseAttributeKey(String seq, int index) argument
460 parseQuotedAttributeValue(String seq, int index, StringBuilder sb) argument
501 parseAttributeValue(String seq, int index, ParseState state) argument
652 skipLeadingWhitespace(String seq, int index) argument
684 charAt(String seq, int index) argument
[all...]
/external/webkit/Source/WebKit/mac/History/
H A DWebURLsWithTitles.m52 unsigned index, count;
69 for (index = 0; index < count; ++index) {
70 [URLStrings addObject:[[URLs objectAtIndex:index] _web_originalDataAsString]];
71 [titlesOrEmptyStrings addObject:(titles == nil) ? @"" : [[titles objectAtIndex:index] _webkit_stringByTrimmingWhitespace]];
91 unsigned index, count;
100 for (index = 0; index < count; ++index) {
[all...]
/external/chromium/chrome/common/
H A Dsqlite_utils.cc326 int SQLStatement::bind_blob(int index, std::vector<unsigned char>* blob) { argument
330 return bind_blob(index, value, len);
332 return bind_null(index);
336 int SQLStatement::bind_blob(int index, const void* value, int value_len) { argument
337 return bind_blob(index, value, value_len, SQLITE_TRANSIENT);
340 int SQLStatement::bind_blob(int index, const void* value, int value_len, argument
343 return sqlite3_bind_blob(stmt_, index + 1, value, value_len, dtor);
346 int SQLStatement::bind_double(int index, double value) { argument
348 return sqlite3_bind_double(stmt_, index + 1, value);
351 int SQLStatement::bind_bool(int index, boo argument
356 bind_int(int index, int value) argument
361 bind_int64(int index, sqlite_int64 value) argument
366 bind_null(int index) argument
371 bind_text(int index, const char* value, int value_len, Function dtor) argument
377 bind_text16(int index, const char16* value, int value_len, Function dtor) argument
384 bind_value(int index, const sqlite3_value* value) argument
394 column_type(int index) argument
399 column_blob(int index) argument
404 column_blob_as_vector(int index, std::vector<unsigned char>* blob) argument
418 column_blob_as_string(int index, std::string* blob) argument
430 column_bytes(int index) argument
435 column_bytes16(int index) argument
440 column_double(int index) argument
445 column_bool(int index) argument
450 column_int(int index) argument
455 column_int64(int index) argument
460 column_text(int index) argument
465 column_string(int index, std::string* str) argument
473 column_string(int index) argument
479 column_text16(int index) argument
484 column_string16(int index, string16* str) argument
492 column_string16(int index) argument
498 column_wstring(int index, std::wstring* str) argument
506 column_wstring(int index) argument
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dgrid.js113 * @param {number} index The index of the item.
118 getItemTop: function(index) {
119 return Math.floor(index / this.columns) * this.getItemHeight_();
123 * @param {number} index The index of the item.
128 getItemRow: function(index) {
129 return Math.floor(index / this.columns);
134 * @return {number} The index of the first item in the row.
153 * Calculates the number of items fitting in viewport given the index o
[all...]
/external/skia/legacy/src/animator/
H A DSkDisplayEvents.cpp53 for (int index = 0; index < count; index++) {
54 SkDisplayEvent* evt = fEvents[index];
81 int index; local
84 for (index = 0; index < count; index++) {
85 SkDrawable* drawable = drawArray[index];
89 for (index
110 int index = fEvents.find(evt); local
[all...]
H A DSkBuildCondensedInfo.cpp111 int index, infoCount;
112 for (index = 0; index < kTypeNamesSize; index++) {
113 const SkMemberInfo* info = GetMembers(maker, gTypeNames[index].fType, &infoCount);
116 AddInfo(gTypeNames[index].fType, info, infoCount);
128 for (index = 0; index < oldRefs.count(); index++) {
129 const SkMemberInfo* info = oldRefs[index];
[all...]
/external/skia/src/animator/
H A DSkDisplayEvents.cpp53 for (int index = 0; index < count; index++) {
54 SkDisplayEvent* evt = fEvents[index];
81 int index; local
84 for (index = 0; index < count; index++) {
85 SkDrawable* drawable = drawArray[index];
89 for (index
110 int index = fEvents.find(evt); local
[all...]
H A DSkBuildCondensedInfo.cpp111 int index, infoCount;
112 for (index = 0; index < kTypeNamesSize; index++) {
113 const SkMemberInfo* info = GetMembers(maker, gTypeNames[index].fType, &infoCount);
116 AddInfo(gTypeNames[index].fType, info, infoCount);
128 for (index = 0; index < oldRefs.count(); index++) {
129 const SkMemberInfo* info = oldRefs[index];
[all...]
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model.h97 // If not set the insertion index of the TabContents is left up to the Order
98 // Controller associated, so the final insertion index may differ from the
99 // specified index. Otherwise the index supplied is used.
134 // Retrieve the index of the currently active TabContents.
158 // Determines if the specified index is contained within the TabStripModel.
159 bool ContainsIndex(int index) const;
172 // |index| is changed is if using the index would result in breaking the
175 void InsertTabContentsAt(int index,
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCharStreamState.h36 NSInteger index; variable
41 @property (assign) NSInteger index; variable
H A DIntArray.m73 public void ensureCapacity(int index) {
77 else if ( (index+1)>=data.length ) {
79 if ( index>newSize ) {
80 newSize = index+1;
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestInterceptorList.java61 * Inserts a request interceptor at the specified index.
64 * @param index the index to insert the interceptor at
66 void addRequestInterceptor(HttpRequestInterceptor itcp, int index); argument
81 * @param index the index of the interceptor to obtain,
84 * @return the interceptor at the given index, or
85 * <code>null</code> if the index is out of range
87 HttpRequestInterceptor getRequestInterceptor(int index) argument
H A DHttpResponseInterceptorList.java62 * Inserts a response interceptor at the specified index.
65 * @param index the index to insert the interceptor at
67 void addResponseInterceptor(HttpResponseInterceptor itcp, int index); argument
82 * @param index the index of the interceptor to obtain,
85 * @return the interceptor at the given index, or
86 * <code>null</code> if the index is out of range
88 HttpResponseInterceptor getResponseInterceptor(int index) argument
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DStringArrayWrapper.java35 public String getString(int index){ argument
36 return m_string[index];
/external/chromium/chrome/browser/chromeos/login/
H A Ddefault_user_images.h14 // Returns path to default user image with specified index.
16 std::string GetDefaultImagePath(int index);
19 // and its index through |image_id|. If not, returns false.
22 // Returns URL to default user image with specifided index.
23 std::string GetDefaultImageUrl(int index);
26 // returns true and its index through |image_id|. If not, returns false.
/external/chromium/chrome/browser/
H A Dcontent_setting_combo_model.h20 virtual string16 GetItemAt(int index);
22 ContentSetting SettingForIndex(int index);

Completed in 1593 milliseconds

1234567891011>>