Searched refs:index (Results 151 - 175 of 8871) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DCharArrayWrapper.java35 public char getChar(int index){ argument
36 return m_char[index];
H A DIntArrayWrapper.java35 public int getInt(int index){ argument
36 return m_int[index];
H A DLongArrayWrapper.java35 public long getLong(int index){ argument
36 return m_long[index];
/external/chromium_org/base/i18n/
H A Dstring_search_unittest.cc29 size_t index = 0; local
33 ASCIIToUTF16("hello"), ASCIIToUTF16("hello world"), &index, &length));
34 EXPECT_EQ(0U, index);
39 &index, &length));
42 ASCIIToUTF16("aabaaa"), ASCIIToUTF16("aaabaabaaa"), &index, &length));
43 EXPECT_EQ(4U, index);
48 &index, &length));
51 string16(), ASCIIToUTF16("searching for empty string"), &index, &length));
52 EXPECT_EQ(0U, index);
57 &index,
90 size_t index = 0; local
208 size_t index = 0; local
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dpreferences_helper.h18 PrefService* GetPrefs(int index);
24 // profile with index |index|. Also inverts its value in |verifier| if
26 void ChangeBooleanPref(int index, const char* pref_name);
29 // profile with index |index| to |new_value|. Also changes its value in
31 void ChangeIntegerPref(int index, const char* pref_name, int new_value);
34 // profile with index |index| to |new_value|. Also changes its value in
36 void ChangeInt64Pref(int index, cons
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_strip_observer.cc7 void TabStripObserver::TabStripAddedTabAt(TabStrip* tab_strip, int index) { argument
15 void TabStripObserver::TabStripRemovedTabAt(TabStrip* tab_strip, int index) { argument
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadDispatcher.cpp33 void GamepadDispatcher::didConnectGamepad(unsigned index, const WebGamepad& gamepad) argument
35 dispatchDidConnectOrDisconnectGamepad(index, gamepad, true);
38 void GamepadDispatcher::didDisconnectGamepad(unsigned index, const WebGamepad& gamepad) argument
40 dispatchDidConnectOrDisconnectGamepad(index, gamepad, false);
43 void GamepadDispatcher::dispatchDidConnectOrDisconnectGamepad(unsigned index, const WebGamepad& gamepad, bool connected) argument
45 ASSERT(index < WebGamepads::itemsLengthCap);
49 m_latestChange.index = index;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebExternalPopupMenuClient.h42 virtual void didChangeSelection(int index) = 0;
44 // Should be called when an index has been accepted.
47 virtual void didAcceptIndex(int index) = 0;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayList.cpp41 for (int index = 0; index < fDrawList.count(); index++) {
42 SkDrawable* draw = fDrawList[index];
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
77 return index;
81 return index;
100 SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
127 int index = fActiveList.find(active); local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsDQuadTest.cpp40 for (size_t index = 0; index < tests_count; ++index) {
41 const SkDQuad& quad = tests[index];
43 bool result = quad.pointInHull(inPoint[index]);
45 SkDebugf("%s [%d] expected in hull\n", __FUNCTION__, index);
48 result = quad.pointInHull(outPoint[index]);
50 SkDebugf("%s [%d] expected outside hull\n", __FUNCTION__, index);
/external/chromium_org/ui/base/models/
H A Dlist_selection_model.h18 // active: the index of the currently visible tab in the tab strip.
19 // anchor: the index of the last tab the user clicked on. Extending the
20 // selection extends it from this index.
23 // active index correspond to the same thing.
48 // Increments all indices >= |index|. For example, if the selection consists
52 void IncrementFrom(int index);
54 // Shifts all indices > |index| down by 1. If |index| is selected, it is
58 void DecrementFrom(int index);
60 // Sets the anchor, active and selection to |index|
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1439135.js35 var index = substring.indexOf('Y');
36 assertEquals(34, index);
H A Dregress-crbug-350867.js8 function f2(a, b, c, index) {
9 return f1(arguments, index);
/external/clang/test/Index/
H A Dfix-its.c1 // RUN: c-index-test -test-load-source all -fspell-checking %s 2> %t
23 unsigned long index; local
26 MACRO(printf("%d", index));
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dheap-overflow-large.cc15 int index = atoi(argv[1]); local
16 int res = x[index];
/external/proguard/src/proguard/classfile/util/
H A DClassSubHierarchyInitializer.java43 for (int index = 0; index < programClass.u2interfacesCount; index++)
45 addSubclass(programClass, programClass.getInterface(index));
59 for (int index = 0; index < interfaceClasses.length; index++)
62 addSubclass(libraryClass, interfaceClasses[index]);
/external/proguard/src/proguard/classfile/visitor/
H A DConcreteClassDownTraveler.java63 for (int index = 0; index < subClasses.length; index++)
65 subClasses[index].accept(this);
88 for (int index = 0; index < subClasses.length; index++)
90 subClasses[index].accept(this);
H A DMultiClassVisitor.java83 for (int index = 0; index < classVisitorCount; index++)
85 classVisitors[index].visitProgramClass(programClass);
92 for (int index = 0; index < classVisitorCount; index++)
94 classVisitors[index].visitLibraryClass(libraryClass);
/external/skia/src/animator/
H A DSkDisplayList.cpp41 for (int index = 0; index < fDrawList.count(); index++) {
42 SkDrawable* draw = fDrawList[index];
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
77 return index;
81 return index;
100 SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
127 int index = fActiveList.find(active); local
[all...]
/external/skia/tests/
H A DPathOpsDQuadTest.cpp40 for (size_t index = 0; index < tests_count; ++index) {
41 const SkDQuad& quad = tests[index];
43 bool result = quad.pointInHull(inPoint[index]);
45 SkDebugf("%s [%d] expected in hull\n", __FUNCTION__, index);
48 result = quad.pointInHull(outPoint[index]);
50 SkDebugf("%s [%d] expected outside hull\n", __FUNCTION__, index);
/external/smali/util/src/main/java/org/jf/util/
H A DBitSetUtils.java39 for (int index: indexes) {
40 bitSet.set(index);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java30 /** Marks an array index step */
62 * @param index the index of the segment to return
65 public XMPPathSegment getSegment(int index) argument
67 return (XMPPathSegment) segments.get(index);
87 int index = 1;
88 while (index < size())
90 result.append(getSegment(index));
91 if (index < size() - 1)
93 int kind = getSegment(index
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_strip_model_order_controller.cc39 // Get the index of the next item opened by this tab, and insert after
41 int index = tabstrip_->GetIndexOfLastWebContentsOpenedBy( local
43 if (index != TabStripModel::kNoTab)
44 return index + 1;
58 // First see if the index being removed has any "child" tabs. If it does, we
65 int index = tabstrip_->GetIndexOfNextWebContentsOpenedBy(removed_contents, local
68 if (index != TabStripModel::kNoTab)
69 return GetValidIndex(index, removing_index);
73 int index = tabstrip_->GetIndexOfNextWebContentsOpenedBy(parent_opener, local
76 if (index !
95 ActiveTabChanged( content::WebContents* old_contents, content::WebContents* new_contents, int index, int reason) argument
102 int index = tabstrip_->GetIndexOfWebContents(old_contents); local
126 GetValidIndex( int index, int removing_index) const argument
[all...]
/external/chromium_org/base/threading/
H A Dthread_local_storage_unittest.cc98 // Create a TLS index with a destructor. Create a set of
109 for (int index = 0; index < kNumThreads; index++) {
110 values[index] = kInitialTlsValue;
111 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
112 threads[index] = new DelegateSimpleThread(thread_delegates[index],
114 threads[index]
[all...]
/external/chromium_org/cc/quads/
H A Drender_pass_id.cc12 return reinterpret_cast<void*>(base::HashPair(layer_id, index));

Completed in 2388 milliseconds

1234567891011>>