HomeSort by relevance Sort by last modified time
    Searched refs:childIndex (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /external/skia/src/gpu/glsl/
GrGLSLFragmentProcessor.cpp 23 void GrGLSLFragmentProcessor::emitChild(int childIndex, const char* inputColor, EmitArgs& args) {
24 this->internalEmitChild(childIndex, inputColor, args.fOutputColor, args);
27 void GrGLSLFragmentProcessor::emitChild(int childIndex, const char* inputColor,
34 this->internalEmitChild(childIndex, inputColor, outputColor->c_str(), args);
37 void GrGLSLFragmentProcessor::internalEmitChild(int childIndex, const char* inputColor,
43 const GrFragmentProcessor& childProc = args.fFp.childProcessor(childIndex);
79 for (int i = 0; i < childIndex; ++i) {
94 fragBuilder->codeAppendf("// Child Index %d (mangle: %s): %s\n", childIndex,
104 this->childProcessor(childIndex)->emitCode(childArgs);
GrGLSLFragmentProcessor.h 101 void emitChild(int childIndex, const char* inputColor, SkString* outputColor,
105 void emitChild(int childIndex, const char* inputColor, EmitArgs& parentArgs);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
FixtureProxy.java 36 int childIndex;
Fixture.java 242 public boolean raycast(RayCastOutput output, RayCastInput input, int childIndex) {
243 return m_shape.raycast(output, input, m_body.m_xf, childIndex);
299 public AABB getAABB(int childIndex) {
300 assert (childIndex >= 0 && childIndex < m_proxyCount);
301 return m_proxies[childIndex].aabb;
310 public float computeDistance(Vec2 p, int childIndex, Vec2 normalOut) {
311 return m_shape.computeDistanceToOut(m_body.getTransform(), p, childIndex, normalOut);
386 proxy.childIndex = i;
429 m_shape.computeAABB(aabb1, transform1, proxy.childIndex);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
BaseMenuPresenter.java 87 int childIndex = 0;
94 if (shouldIncludeItem(childIndex, item)) {
95 final View convertView = parent.getChildAt(childIndex);
105 addItemView(itemView, childIndex);
107 childIndex++;
113 while (childIndex < parent.getChildCount()) {
114 if (!filterLeftoverView(parent, childIndex)) {
115 childIndex++;
124 * @param childIndex Index within the parent to insert at
126 protected void addItemView(View itemView, int childIndex) {
    [all...]
IconMenuPresenter.java 72 public boolean shouldIncludeItem(int childIndex, MenuItemImpl item) {
74 boolean fits = (itemsToShow.size() == mMaxItems && childIndex < mMaxItems) ||
75 childIndex < mMaxItems - 1;
80 protected void addItemView(View itemView, int childIndex) {
87 super.addItemView(itemView, childIndex);
126 protected boolean filterLeftoverView(ViewGroup parent, int childIndex) {
127 if (parent.getChildAt(childIndex) != mMoreView) {
128 return super.filterLeftoverView(parent, childIndex);
  /frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
BaseMenuPresenter.java 93 int childIndex = 0;
100 if (shouldIncludeItem(childIndex, item)) {
101 final View convertView = parent.getChildAt(childIndex);
111 addItemView(itemView, childIndex);
113 childIndex++;
119 while (childIndex < parent.getChildCount()) {
120 if (!filterLeftoverView(parent, childIndex)) {
121 childIndex++;
130 * @param childIndex Index within the parent to insert at
132 protected void addItemView(View itemView, int childIndex) {
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorPadViewPager.java 59 for (int childIndex = 0; childIndex < viewGroup.getChildCount(); ++childIndex) {
60 recursivelySetEnabled(viewGroup.getChildAt(childIndex), enabled);
70 for (int childIndex = 0; childIndex < getChildCount(); ++childIndex) {
72 recursivelySetEnabled(getChildAt(childIndex), childIndex == position);
CalculatorNumericPadLayout.java 56 for (int childIndex = getChildCount() - 1; childIndex >= 0; --childIndex) {
57 final View v = getChildAt(childIndex);
CalculatorPadLayout.java 72 for (int childIndex = 0; childIndex < getChildCount(); ++childIndex) {
73 final View childView = getChildAt(childIndex);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
Shape.java 100 int childIndex);
109 public abstract void computeAABB(final AABB aabb, final Transform xf, int childIndex);
129 public abstract float computeDistanceToOut(Transform xf, Vec2 p, int childIndex, Vec2 normalOut);
ChainShape.java 103 public float computeDistanceToOut(Transform xf, Vec2 p, int childIndex, Vec2 normalOut) {
105 getChildEdge(edge, childIndex);
115 public boolean raycast(RayCastOutput output, RayCastInput input, Transform xf, int childIndex) {
116 assert (childIndex < m_count);
120 int i1 = childIndex;
121 int i2 = childIndex + 1;
136 public void computeAABB(AABB aabb, Transform xf, int childIndex) {
137 assert (childIndex < m_count);
141 int i1 = childIndex;
142 int i2 = childIndex + 1
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.h 98 int32 childIndex;
162 bool RayCast(b2RayCastOutput* output, const b2RayCastInput& input, int32 childIndex) const;
193 const b2AABB& GetAABB(int32 childIndex) const;
329 inline bool b2Fixture::RayCast(b2RayCastOutput* output, const b2RayCastInput& input, int32 childIndex) const
331 return m_shape->RayCast(output, input, m_body->GetTransform(), childIndex);
339 inline const b2AABB& b2Fixture::GetAABB(int32 childIndex) const
341 b2Assert(0 <= childIndex && childIndex < m_proxyCount);
342 return m_proxies[childIndex].aabb;
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListTester.java 102 for (int childIndex = 0; childIndex < childrenCount; childIndex++) {
105 menuListener.expectChildContextMenu(groupIndex, childIndex);
179 for (int childIndex = 0; childIndex < childrenCount; childIndex++) {
180 int expectedFlatPosition = headerCount + groupIndex + 1 + childIndex;
181 long childPos = ExpandableListView.getPackedPositionForChild(groupIndex, childIndex);
233 for (int childIndex = 0; childIndex < childrenCount; childIndex++)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
b2ChainShape.cpp 150 const b2Transform& xf, int32 childIndex) const
152 b2Assert(childIndex < m_count);
156 int32 i1 = childIndex;
157 int32 i2 = childIndex + 1;
169 void b2ChainShape::ComputeAABB(b2AABB* aabb, const b2Transform& xf, int32 childIndex) const
171 b2Assert(childIndex < m_count);
173 int32 i1 = childIndex;
174 int32 i2 = childIndex + 1;
b2EdgeShape.h 46 const b2Transform& transform, int32 childIndex) const;
49 void ComputeAABB(b2AABB* aabb, const b2Transform& transform, int32 childIndex) const;
b2Shape.h 76 /// @param childIndex the child shape index
78 const b2Transform& transform, int32 childIndex) const = 0;
83 /// @param childIndex the child shape
84 virtual void ComputeAABB(b2AABB* aabb, const b2Transform& xf, int32 childIndex) const = 0;
b2CircleShape.cpp 48 const b2Transform& transform, int32 childIndex) const
50 B2_NOT_USED(childIndex);
84 void b2CircleShape::ComputeAABB(b2AABB* aabb, const b2Transform& transform, int32 childIndex) const
86 B2_NOT_USED(childIndex);
b2EdgeShape.cpp 56 const b2Transform& xf, int32 childIndex) const
58 B2_NOT_USED(childIndex);
117 void b2EdgeShape::ComputeAABB(b2AABB* aabb, const b2Transform& xf, int32 childIndex) const
119 B2_NOT_USED(childIndex);
b2ChainShape.h 76 const b2Transform& transform, int32 childIndex) const;
79 void ComputeAABB(b2AABB* aabb, const b2Transform& transform, int32 childIndex) const;
b2CircleShape.h 41 const b2Transform& transform, int32 childIndex) const;
44 void ComputeAABB(b2AABB* aabb, const b2Transform& transform, int32 childIndex) const;
b2PolygonShape.h 63 const b2Transform& transform, int32 childIndex) const;
66 void ComputeAABB(b2AABB* aabb, const b2Transform& transform, int32 childIndex) const;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary_utils.cpp 78 for (int childIndex = 0; childIndex < childDicNodes.getSizeAndLock(); ++childIndex) {
79 DicNode *const childDicNode = childDicNodes[childIndex];
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 72 final int childIndex = row * mColumnCount + col;
74 if (childIndex >= childCount) {
78 View child = getChildAt(childIndex);
137 final int childIndex = row * mColumnCount + col;
139 if (childIndex >= childCount) {
143 View child = getChildAt(childIndex);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Trie.java 99 int childIndex = 0;
104 childMap[childIndex] = lastCh;
105 children[childIndex++] = new Trie(
111 childMap[childIndex] = lastCh;
112 children[childIndex++] = new Trie(elements, depth + 1, childStart, end);

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 9