HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 51 - 75 of 8262) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/test/407-arrays/src/
Main.java 33 int[] ints, Object[] objects, long[] longs, int index) {
35 assertEquals(false, bools[index]);
38 assertEquals(0, bytes[index]);
41 assertEquals(0, chars[index]);
44 assertEquals(0, shorts[index]);
47 assertEquals(0, ints[index]);
50 assertNull(objects[index]);
53 assertEquals(0, longs[index]);
57 int[] ints, Object[] objects, long[] longs, int index) {
61 assertEquals(true, bools[index]);
    [all...]
  /external/clang/test/Analysis/
region-store.c 8 int index = 0; local
9 for (index = 0; index < 2; index++) {
10 int thing = (int []){0, 1}[index];
17 int index = 0; local
18 for (index = 0; index < 3; index++) {
19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CstInsn.java 32 * {@code >= -1;} the constant pool index for {@link #constant}, or
35 private int index; field in class:CstInsn
38 * {@code >= -1;} the constant pool index for the class reference in
45 * initially unknown ({@code -1}) as is the constant pool index.
63 this.index = -1;
73 if (index >= 0) {
74 result.setIndex(index);
90 if (index >= 0) {
91 result.setIndex(index);
111 * Gets the constant's index. It is only valid to call this afte
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 32 * {@code >= -1;} the constant pool index for {@link #constant}, or
35 private int index; field in class:CstInsn
38 * {@code >= -1;} the constant pool index for the class reference in
45 * initially unknown ({@code -1}) as is the constant pool index.
63 this.index = -1;
73 if (index >= 0) {
74 result.setIndex(index);
90 if (index >= 0) {
91 result.setIndex(index);
111 * Gets the constant's index. It is only valid to call this afte
    [all...]
  /external/chromium_org/ui/views/
view_model.h 31 void Add(View* view, int index);
33 // Removes the view at the specified index. This does not actually remove the
35 void Remove(int index);
37 // Moves the view at |index| to |target_index|. |target_index| is in terms
38 // of the model *after* the view at |index| is removed.
39 void Move(int index, int target_index);
45 void MoveViewOnly(int index, int target_index);
53 // Returns the view at the specified index.
54 View* view_at(int index) const {
55 check_index(index);
    [all...]
view_model.cc 19 void ViewModel::Add(View* view, int index) {
20 DCHECK_LE(index, static_cast<int>(entries_.size()));
21 DCHECK_GE(index, 0);
24 entries_.insert(entries_.begin() + index, entry);
27 void ViewModel::Remove(int index) {
28 if (index == -1)
31 check_index(index);
32 entries_.erase(entries_.begin() + index);
35 void ViewModel::Move(int index, int target_index) {
36 DCHECK_LT(index, static_cast<int>(entries_.size()))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CstInsn.java 32 * {@code >= -1;} the constant pool index for {@link #constant}, or
35 private int index; field in class:CstInsn
38 * {@code >= -1;} the constant pool index for the class reference in
45 * initially unknown ({@code -1}) as is the constant pool index.
63 this.index = -1;
73 if (index >= 0) {
74 result.setIndex(index);
90 if (index >= 0) {
91 result.setIndex(index);
111 * Gets the constant's index. It is only valid to call this afte
    [all...]
  /external/chromium_org/v8/src/compiler/
code-generator-impl.h 31 Register InputRegister(int index) {
32 return ToRegister(instr_->InputAt(index));
35 DoubleRegister InputDoubleRegister(int index) {
36 return ToDoubleRegister(instr_->InputAt(index));
39 double InputDouble(int index) { return ToDouble(instr_->InputAt(index)); }
41 int32_t InputInt32(int index) {
42 return ToConstant(instr_->InputAt(index)).ToInt32();
45 int8_t InputInt8(int index) { return static_cast<int8_t>(InputInt32(index)); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.idl 31 [RaisesException] double start(unsigned long index);
32 [RaisesException] double end(unsigned long index);
  /external/chromium_org/ui/base/models/
menu_model_delegate.h 13 virtual void OnIconChanged(int index) = 0;
simple_combobox_model.cc 21 base::string16 SimpleComboboxModel::GetItemAt(int index) {
22 return items_[index];
25 bool SimpleComboboxModel::IsItemSeparatorAt(int index) {
26 return items_[index].empty();
tree_node_iterator.h 34 int index = 0; local
37 // This is to satisfy the iterator invariant that the current index in the
40 for (; index < node->child_count(); ++index)
41 if (prune.is_null() || !prune.Run(node->GetChild(index)))
44 if (index < node->child_count())
45 positions_.push(Position<NodeType>(node, index));
63 // There must always be a valid node in the current Position index.
64 NodeType* result = positions_.top().node->GetChild(positions_.top().index);
67 positions_.top().index++
96 int index; member in struct:ui::TreeNodeIterator::Position
    [all...]
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane_listener.h 13 // selected by the user at the specified index.
16 // Called when the tab at |index| is selected by the user.
17 virtual void TabSelectedAt(int index) = 0;
  /external/deqp/framework/common/
tcuFactoryRegistry.cpp 51 AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index)
53 DE_ASSERT(index < m_factories.size());
54 return m_factories[index];
57 const AbstractFactory* GenericFactoryRegistry::getFactoryByIndex (size_t index) const
59 DE_ASSERT(index < m_factories.size());
60 return m_factories[index];
65 for (size_t index = 0; index < m_factories.size(); index++)
67 if (name == m_factories[index]->getName()
    [all...]
  /external/eigen/bench/btl/generic_bench/init/
init_function.hh 23 double simple_function(int index)
25 return index;
33 double pseudo_random(int index)
44 double null_function(int index)
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp 18 MatrixXf::Index index; local
20 (m.colwise() - v).colwise().squaredNorm().minCoeff(&index);
22 cout << "Nearest neighbour is column " << index << ":" << endl;
23 cout << m.col(index) << endl;
  /external/libcxx/test/utilities/type.index/type.index.hash/
Android.mk 17 test_makefile := external/libcxx/test/utilities/type.index/type.index.hash/Android.mk
19 test_name := utilities/type.index/type.index.hash/hash
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicBezierClip_Test.cpp 12 for (size_t index = 0; index < tests_count; ++index) {
13 const Cubic& cubic1 = tests[index][0];
14 const Cubic& cubic2 = tests[index][1];
21 SkDebugf("%s [%d] cubic1 order=%d\n", __FUNCTION__, (int) index, order1);
24 SkDebugf("%s [%d] cubic2 order=%d\n", __FUNCTION__, (int) index, order2);
LineIntersection_Test.cpp 38 size_t index; local
39 for (index = firstLineIntersectionTest; index < tests_count; ++index) {
40 const _Line& line1 = tests[index][0];
41 const _Line& line2 = tests[index][1];
45 printf("%s [%zu] no intersection found\n", __FUNCTION__, index);
53 printf("%s [%zu] not equal\n", __FUNCTION__, index);
57 printf("%s [%zu] not equal\n", __FUNCTION__, index);
63 for (index = firstNoIntersectionTest; index < noIntersect_count; ++index)
    [all...]
QuadraticReduceOrder_Test.cpp 22 for (size_t index = 0; index < testSetCount; ++index) {
23 const Quadratic& quad = testSet[index];
31 size_t index; local
48 for (index = firstQuadraticLineTest; index < quadraticLines_count; ++index) {
49 const Quadratic& quad = quadraticLines[index];
52 printf("[%d] line quad order=%d\n", (int) index, order)
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
PSNRComparer.java 46 int index = indexFromXAndY(x, y, stride, offset); local
47 if (inspectRegion(ideal, index)) {
59 int index = indexFromXAndY(x, y, stride, offset); local
60 if (ideal[index] == given[index]) {
63 MSE += (Color.red(ideal[index]) - Color.red(given[index])) *
64 (Color.red(ideal[index]) - Color.red(given[index]));
65 MSE += (Color.blue(ideal[index]) - Color.blue(given[index]))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dual_blend.h 15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
get_hanning_window.c 61 int32_t index; local
66 index = (int32_t)-0x200000;
68 index = (int32_t)-0x100000;
73 index += factor;
74 (*vptr1++) = kHanningTable[index >> 22];
  /external/mesa3d/src/gallium/auxiliary/util/
u_dual_blend.h 15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/chromium_org/chrome/browser/ui/views/tabs/
fake_base_tab_strip_controller.h 19 void AddTab(int index, bool is_active);
20 void RemoveTab(int index);
27 virtual bool IsValidIndex(int index) const OVERRIDE;
28 virtual bool IsActiveTab(int index) const OVERRIDE;
30 virtual bool IsTabSelected(int index) const OVERRIDE;
31 virtual bool IsTabPinned(int index) const OVERRIDE;
32 virtual bool IsNewTabPage(int index) const OVERRIDE;
33 virtual void SelectTab(int index) OVERRIDE;
34 virtual void ExtendSelectionTo(int index) OVERRIDE;
35 virtual void ToggleSelected(int index) OVERRIDE
    [all...]

Completed in 1347 milliseconds

1 23 4 5 6 7 8 91011>>