Searched refs:index (Results 226 - 250 of 4641) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/
H A Ddefault_encoding_combo_model.cc34 string16 DefaultEncodingComboboxModel::GetItemAt(int index) { argument
35 DCHECK(index >= 0 && index < GetItemCount());
36 return sorted_encoding_list_[index].encoding_display_name;
39 std::string DefaultEncodingComboboxModel::GetEncodingCharsetByIndex(int index) { argument
40 DCHECK(index >= 0 && index < GetItemCount());
41 int encoding_id = sorted_encoding_list_[index].encoding_id;
/external/chromium/chrome/browser/ui/search_engines/
H A Dtemplate_url_table_model.h53 // Removes the entry at the specified index.
54 void Remove(int index);
56 // Adds a new entry at the specified index.
57 void Add(int index, TemplateURL* template_url);
59 // Update the entry at the specified index.
60 void ModifyTemplateURL(int index,
65 // Reloads the icon at the specified index.
66 void ReloadIcon(int index);
68 // Returns The TemplateURL at the specified index.
69 const TemplateURL& GetTemplateURL(int index);
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py4 index = Index.create()
5 tu = index.parse('t.c', unsaved_files = [('t.c', "")])
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DTaintManager.h35 static void *GDMIndex() { static int index = 0; return &index; } local
/external/clang/tools/
H A DMakefile14 DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \
21 DIRS := driver libclang c-index-test
/external/elfutils/tests/
H A Drun-ranlib-test4.sh29 indexed=testfile21.index
/external/icu4c/test/intltest/
H A Ditmajor.h19 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
23 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Ditrbbi.cpp35 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
38 switch (index) {
H A Ditutil.h18 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
23 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DFaceInfoVec.java46 public FaceInfo at(int index) { argument
47 return get(index);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java40 private int index; field in class:HeaderIterator
50 if (sipHeader == null || index == 1)
53 index = 1;
58 if (sipHeader == null || index == 0)
61 index = 0;
70 return index == 0 ? -1 : 0;
93 return index == 0;
97 return index == 1;
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotation.java108 for (int index = 0; index < referencedClasses.length; index++)
110 Clazz referencedClass = referencedClasses[index];
125 for (int index = 0; index < u2elementValuesCount; index++)
127 elementValues[index].accept(clazz, this, elementValueVisitor);
/external/proguard/src/proguard/optimize/peephole/
H A DRetargetedInnerClassAttributeRemover.java58 for (int index = 0; index < attributesCount; index++)
60 Attribute attribute = attributes[index];
73 for (int index = newAtributesCount; index < attributesCount; index++)
75 attributes[index] = null;
/external/qemu/android/protocol/
H A Dcore-commands-api.h51 * index - Index of an entry in the NetworkSpeed array.
53 * instance for the given index. Note that strings addressed by "name" and
61 extern int corecmd_get_netspeed(int index, NetworkSpeed** netspeed);
65 * index - Index of an entry in the NetworkLatency array.
67 * instance for the given index. Note that strings addressed by "name" and
75 extern int corecmd_get_netdelay(int index, NetworkLatency** netdelay);
H A Dcore-commands-qemu.c65 corecmd_get_netspeed(int index, NetworkSpeed** netspeed) argument
67 if (index >= android_netspeeds_count ||
68 android_netspeeds[index].name == NULL) {
72 memcpy(*netspeed, &android_netspeeds[index], sizeof(NetworkSpeed));
77 corecmd_get_netdelay(int index, NetworkLatency** netdelay) argument
79 if (index >= android_netdelays_count ||
80 android_netdelays[index].name == NULL) {
84 memcpy(*netdelay, &android_netdelays[index], sizeof(NetworkLatency));
/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/src/gpu/
H A DGrTHashCache.h46 T* removeAt(int index, uint32_t hash);
52 * Return the index for the element, using a linear search.
79 // search fSorted, and return the found index, or ~index of where it
98 int index = (low + high) >> 1; local
99 if (Key::LT(*array[index], key)) {
100 low = index + 1;
102 high = index;
140 int index = this->searchArray(key); local
141 if (index <
164 int index = this->searchArray(key); local
[all...]
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMHTMLCollectionCustom.cpp28 WebDOMNode WebDOMHTMLCollection::item(unsigned index) argument
33 return toWebKit(WTF::getPtr(impl()->item(index)));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DOMSettableTokenListCustom.cpp35 v8::Handle<v8::Value> V8DOMSettableTokenList::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) argument
39 return v8StringOrNull(list->item(index));
/external/webkit/Source/WebCore/css/
H A DCSSRuleList.idl34 CSSRule item(in unsigned long index);
H A DCSSStyleSheet.idl29 in unsigned long index)
31 void deleteRule(in unsigned long index)
39 in [Optional] unsigned long index)
41 void removeRule(in unsigned long index)
H A DCSSValueList.idl33 CSSValue item(in unsigned long index);
H A DStyleSheetList.idl30 StyleSheet item(in unsigned long index);
/external/webkit/Source/WebCore/dom/
H A DClientRectList.idl33 ClientRect item(in [IsIndex] unsigned long index);
H A DTouchList.idl34 Touch item(in unsigned long index);

Completed in 520 milliseconds

1234567891011>>