Searched refs:index (Results 176 - 200 of 4641) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/chromeos/login/
H A Ddefault_user_images.cc30 // Returns a string consisting of the prefix specified and the index of the
32 std::string GetDefaultImageString(int index, const std::string& prefix) { argument
33 if (index < 0 || index >= kDefaultImagesCount) {
37 return StringPrintf("%s%d", prefix.c_str(), index);
41 // the default images indices. Returns the index of the image in |image_id|
64 std::string GetDefaultImagePath(int index) { argument
65 return GetDefaultImageString(index, kDefaultPathPrefix);
82 std::string GetDefaultImageUrl(int index) { argument
83 if (index
[all...]
/external/chromium/chrome/browser/chromeos/status/
H A Dinput_method_menu.h43 virtual ui::MenuModel::ItemType GetTypeAt(int index) const;
44 virtual int GetCommandIdAt(int index) const;
45 virtual string16 GetLabelAt(int index) const;
46 virtual bool IsItemDynamicAt(int index) const;
47 virtual bool GetAcceleratorAt(int index,
49 virtual bool IsItemCheckedAt(int index) const;
50 virtual int GetGroupIdAt(int index) const;
51 virtual bool GetIconAt(int index, SkBitmap* icon);
52 virtual ui::ButtonMenuItemModel* GetButtonMenuItemAt(int index) const;
53 virtual bool IsEnabledAt(int index) cons
[all...]
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model_observer.h42 // index. |foreground| is whether or not it was opened in the foreground
45 int index,
48 // The specified TabContents at |index| is being closed (and eventually
52 int index);
54 // The specified TabContents at |index| is being detached, perhaps to be
57 virtual void TabDetachedAt(TabContentsWrapper* contents, int index);
65 // by |old_contents| and the newly selected tab by |new_contents|. |index| is
66 // the index of |new_contents|. When using multiple selection this may be sent
81 int index,
89 // The specified TabContents at |index| change
[all...]
/external/chromium/chrome/browser/ui/cocoa/applescript/
H A Dbrowsercrapplication+applescript.h30 atIndex:(int)index;
35 - (void)removeFromAppleScriptWindowsAtIndex:(int)index;
54 - (void)insertInBookmarksFolders:(id)aBookmarkFolder atIndex:(int)index;
55 - (void)removeFromBookmarksFoldersAtIndex:(int)index;
/external/chromium/net/disk_cache/
H A Dbitmap.h51 void Set(int index, bool value);
52 bool Get(int index) const;
53 void Toggle(int index);
77 // Scans bits starting at bit *|index|, looking for a bit set to |value|. If
78 // it finds that bit before reaching bit index |limit|, sets *|index| to the
79 // bit index and returns true. Otherwise returns false.
82 // Note that to use these methods in a loop you must increment the index
85 // for (int index = 0 ; map.FindNextBit(&index, limi
92 FindNextSetBitBeforeLimit(int* index, int limit) const argument
[all...]
/external/icu4c/test/intltest/
H A Dtfsmalls.h24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
/external/oprofile/libdb/
H A Ddb_insert.c25 odb_index_t index; local
42 index = odb_do_hash(data, key);
43 node->next = data->hash_base[index];
44 data->hash_base[index] = new_node;
61 odb_index_t index; local
66 index = data->hash_base[odb_do_hash(data, key)];
67 while (index) {
68 node = &data->node_base[index];
99 index = node->next;
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionsAttribute.java74 for (int index = 0; index < u2exceptionIndexTableLength; index++)
76 programClass.constantPoolEntryAccept(u2exceptionIndexTable[index],
H A DInnerClassesAttribute.java73 for (int index = 0; index < u2classesCount; index++)
77 innerClassesInfoVisitor.visitInnerClassesInfo(clazz, classes[index]);
H A DLocalVariableTypeInfo.java81 for (int index = 0; index < referencedClasses.length; index++)
83 Clazz referencedClass = referencedClasses[index];
/external/proguard/src/proguard/classfile/editor/
H A DInterfaceSorter.java51 for (int index = 0; index < interfacesCount; index++)
53 int interfaceIndex = interfaces[index];
/external/proguard/src/proguard/classfile/visitor/
H A DExceptClassesFilter.java80 for (int index = 0; index < exceptClasses.length; index++)
82 if (exceptClasses[index].equals(clazz))
H A DSubclassFilter.java81 for (int index = 0; index < subclasses.length; index++)
83 if (subclasses[index].equals(subclass))
/external/proguard/src/proguard/gui/
H A DExtensionFileFilter.java68 for (int index = 0; index < extensions.length; index++)
70 if (fileName.endsWith(extensions[index]))
/external/proguard/src/proguard/io/
H A DDirectoryPump.java72 for (int index = 0; index < files.length; index++)
74 readFiles(files[index], dataEntryReader);
/external/proguard/src/proguard/obfuscate/
H A DAttributeShrinker.java105 for (int index = 0; index < length; index++)
107 if (AttributeUsageMarker.isUsed(array[index]))
109 array[counter++] = array[index];
114 for (int index = counter; index < length; index++)
116 array[index] = null;
H A DNameAndTypeShrinker.java48 // index map.
74 // Create a new index map, if necessary.
85 for (int index = 1; index < length; index++)
87 constantIndexMap[index] = counter;
89 Constant constant = constantPool[index];
105 for (int index = counter; index < length; index
[all...]
H A DUtf8Shrinker.java48 // index map.
73 // Create a new index map, if necessary.
83 for (int index = 1; index < length; index++)
85 constantIndexMap[index] = counter;
87 Constant constant = constantPool[index];
103 for (int index = counter; index < length; index
[all...]
/external/proguard/src/proguard/util/
H A DListParser.java71 for (int index = regularExpressions.size()-1; index >=0; index--)
73 String regularExpression = (String)regularExpressions.get(index);
125 for (int index = 1; index < args.length; index++)
127 String string = args[index];
129 System.out.println(" -> match = "+matcher.matches(args[index]));
/external/skia/legacy/src/animator/
H A DSkDisplayNumber.h18 virtual bool getProperty(int index, SkScriptValue* value) const;
/external/skia/src/animator/
H A DSkDisplayNumber.h18 virtual bool getProperty(int index, SkScriptValue* value) const;
/external/skia/src/gpu/
H A DGrTBSearch.h25 int index = (low + high) >> 1; local
26 if (LT(array[index], target)) {
27 low = index + 1;
29 high = index;
/external/v8/test/mjsunit/regress/
H A Dregress-1323.js31 function get(a, index) {
32 return a[index];
43 function set(a, index, value) {
44 a[index] = value;
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLSelectElementCustom.h36 void selectIndexSetter(HTMLSelectElement*, JSC::ExecState*, unsigned index, JSC::JSValue);
/external/webkit/Source/WebCore/html/
H A DHTMLOptionsCollection.cpp45 void HTMLOptionsCollection::add(PassRefPtr<HTMLOptionElement> element, int index, ExceptionCode &ec) argument
54 if (index < -1) {
62 if (index == -1 || unsigned(index) >= length())
65 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
70 void HTMLOptionsCollection::remove(int index) argument
72 static_cast<HTMLSelectElement*>(base())->remove(index);
80 void HTMLOptionsCollection::setSelectedIndex(int index) argument
82 static_cast<HTMLSelectElement*>(base())->setSelectedIndex(index);

Completed in 675 milliseconds

1234567891011>>