/external/webrtc/webrtc/libjingle/xmpp/ |
xmppengineimpl_iq.cc | 208 for (const XmlChild * child = element_original->FirstChild(); 209 child; 210 child = child->NextChild()) { 211 if (child->IsText()) { 212 error_element.AddText(child->AsText()->Text()); 214 error_element.AddElement(new XmlElement(*(child->AsElement())));
|
/frameworks/base/test-runner/src/android/test/ |
ViewAsserts.java | 327 * child should be non-null. 333 assertTrue("child count should be >= 0", count >= 0); 342 * Assert that the specified group contains a specific child once and only once. 345 * @param child The child that should belong to group 347 static public void assertGroupContains(ViewGroup parent, View child) { 349 assertTrue("Child count should be >= 0", count >= 0); 353 if (parent.getChildAt(i) == child) { 357 assertTrue("child " + child + " is duplicated in parent", false) [all...] |
/frameworks/support/core-ui/java/android/support/v4/widget/ |
ViewDragHelper.java | 147 * governing the range and draggability of child views. 174 * Called when a child view is captured for dragging or settling. The ID of the pointer 179 * @param capturedChild Child view that was captured 180 * @param activePointerId Pointer id tracking the child capture 185 * Called when the child view is no longer being actively dragged. 198 * @param releasedChild The captured child view now being released 206 * by the user while no child view is currently captured. 232 * of the subscribed edges in the parent view while no child view is currently captured. 244 * Called to determine the Z-order of child views. 254 * Return the magnitude of a draggable child view's horizontal range of motion in pixels 932 final View child = group.getChildAt(i); local 1481 final View child = mParentView.getChildAt(mCallback.getOrderedChildIndex(i)); local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/ |
cavl_impl.h | 526 AVL_HANDLE child; variable 565 ** leaf node, or a node with a single leaf as its child, to put 572 child = AVL_GET_LESS(h, 1); 576 child = AVL_GET_GREATER(h, 1); 584 if (child != AVL_NULL) { 589 h = child; 592 child = AVL_GET_LESS(h, 1); 595 child = AVL_GET_GREATER(h, 1); 601 } while (child != AVL_NULL); 610 /* Get the handle of the opposite child, which may not be null. * 795 AVL_HANDLE child; variable [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
OutlineDropListener.java | 101 for (UiElementNode child : parentNode.getUiChildren()) { 102 if (child == node) { 185 // Targeting the middle of an item means to add it as a new child 193 // Check that the drop target position is not a child or identical to 207 /** Returns true if the given parent node is an ancestor of the given child node */ 208 private boolean isAncestor(UiElementNode parent, UiElementNode child) { 209 while (child != null) { 210 if (child == parent) { 213 child = child.getUiParent() [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
BaseTree.as | 31 * instead of the child-sibling approach in v2. A flat tree (a list) is 76 /** Add t as child of this node. 78 * Warning: if t has no children, but child does 79 * and child isNil then this routine moves children to t via 80 * t.children = child.children; i.e., without copying the array. 89 throw new Error("attempt to add child list to itself"); 98 // handle double-link stuff for each child of nil root 111 else { // child is not nil (don't care about children) 134 throw new Error("Can't set single child to a list"); 149 // walk rest and decrement their child indexe [all...] |
BaseTreeAdaptor.as | 57 // ensure new subtree root has parent/child index set 62 var child:Object = getChild(t, i); 63 var newSubTree:Object = dupTreeWithParent(child, t); 69 /** Add a child to the tree t. If child is a flat tree (a list), make all 70 * in list children of t. Warning: if t has no children, but child does 71 * and child isNil then you can decide it is ok to move children to t via 72 * t.children = child.children; i.e., without copying the array. Just 76 public function addChild(t:Object, child:Object):void { 77 if ( t!=null && child!=null ) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TextTrieMap.java | 257 for (Node child : _children) { 258 if (ch < child._text[0]) { 261 if (ch == child._text[0]) { 262 if (child.matchFollowing(chitr)) { 263 match = child; 279 Node child = new Node(subArray(text, offset), addValue(null, value), null); local 280 _children.add(child); 305 // add a new child to this node 345 // add the Node representing after the offset as a child 346 Node child = new Node(childText, _values, _children) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TextTrieMap.java | 255 for (Node child : _children) { 256 if (ch < child._text[0]) { 259 if (ch == child._text[0]) { 260 if (child.matchFollowing(chitr)) { 261 match = child; 277 Node child = new Node(subArray(text, offset), addValue(null, value), null); local 278 _children.add(child); 303 // add a new child to this node 343 // add the Node representing after the offset as a child 344 Node child = new Node(childText, _values, _children) [all...] |
/frameworks/base/core/java/android/view/ |
GhostView.java | 185 View child = viewGroup.getChildAt(i); local 186 if (isGhostWrapper(child)) { 187 tempViews.add(child); 188 GhostView ghostView = (GhostView)((ViewGroup)child).getChildAt(0); 263 View child = frameLayout.getChildAt(0); local 264 return child instanceof GhostView; 328 final View child = (preorderedList == null) local 330 if (child == view) { 333 } else if (child == comparedWith) {
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ListViewCompat.java | 251 * @param widthMeasureSpec The width measure spec to be given to a child's 253 * @param startPosition The position of the first child to be shown. 254 * @param endPosition The (inclusive) position of the last child to be 255 * shown. Specify {@link #NO_POSITION} if the last child 256 * should be the last available child from the adapter. 298 View child = null; local 304 child = null; 307 child = adapter.getView(i, child, this); 309 // Compute child height spe [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/ |
StatePanelTrack.java | 159 StateView child = (StateView) getChildAt(i); local 160 child.resetPosition(); 161 if (!mAdapter.contains(child.getState())) { 162 removeView(child); 320 View child = getChildAt(i); local 321 child.getHitRect(frame); 323 return child; 331 View child = getChildAt(i); local 332 if (child == view) {
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/layout/ |
ScaledLayout.java | 134 View child = getChildAt(i); local 135 ViewGroup.LayoutParams params = child.getLayoutParams(); 139 "A child of ScaledLayout cannot have the UNSPECIFIED scale factors"); 146 throw new RuntimeException("A child of ScaledLayout should have a range of " 150 throw new RuntimeException("A child of ScaledLayout should have a range of " 154 throw new RuntimeException("A child of ScaledLayout should have a range of " 158 throw new RuntimeException("A child of ScaledLayout should have a range of " 162 Log.d(TAG, String.format("onMeasure child scaleStartRow: %f scaleEndRow: %f " 171 child.measure(childWidthSpec, childHeightSpec); 173 // If the height of the measured child view is bigger than the height of the calculate 245 View child = getChildAt(i); local [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
inspector_importer_unittest.py | 61 child for child in root_event.IterEventsInThisContainerRecrusively() 62 if child.name == 'DecodeImage'][0]
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/ |
_html5lib.py | 126 string_child = child = None 131 string_child = child = node 136 child = node 138 string_child = child = node.element 140 child = node.element 142 if not isinstance(child, basestring) and child.parent is not None: 157 child = self.soup.new_string(node) 168 child, parent=self.element, 241 # Set the first child's previous_element and previous_siblin [all...] |
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/membersinject/ |
MembersInjectTest.java | 83 NonRequestedChild child = new NonRequestedChild(); local 92 injector.injectMembers(child); 93 assertThat(child.t).isEqualTo("field!");
|
/external/deqp/framework/delibs/depool/ |
deMemPool.c | 91 int numChildren; /*!< Number of child pools. */ 92 deMemPool* firstChild; /*!< Pointer to first child pool in linked list. */ 295 * Frees all the memory allocated from the pool. Also destroyed any child 376 * \return The number of (immediate) child pools a memory pool has. 386 * \param recurse Is operation recursive to child pools? 387 * \return The number of bytes allocated by the pool (including child pools 400 deMemPool* child; local 401 for (child = pool->firstChild; child; child = child->nextPool 418 deMemPool* child; local [all...] |
/external/google-breakpad/src/testing/gtest/test/ |
gtest_help_test.py | 94 child = gtest_test_utils.Subprocess(command) 95 return child.exit_code, child.output
|
/external/gtest/test/ |
gtest_help_test.py | 94 child = gtest_test_utils.Subprocess(command) 95 return child.exit_code, child.output
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLElement.java | 88 * Adds the given child to this element. This will close all previous child 91 * @param child 92 * child element to add 96 protected void addChildElement(final XMLElement child) throws IOException { 104 child.beginOpenTag(); 105 lastchild = child; 133 * Adds an attribute to this element. May only be called before an child 166 * Adds an attribute to this element. May only be called before an child 185 * Adds an attribute to this element. May only be called before an child [all...] |
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/ |
MultiReportVisitorTest.java | 81 MockGroupVisitor child = new MockGroupVisitor(name); local 82 children.add(child); 83 return child;
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
HandlerWrapper.java | 173 Handler child=getHandler(); local 174 if (child!=null) 177 child.destroy();
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/ |
btCompoundShape.cpp | 56 btCompoundShapeChild child; local 57 child.m_node = 0; 58 child.m_transform = localTransform; 59 child.m_childShape = shape; 60 child.m_childShapeType = shape->getShapeType(); 61 child.m_childMargin = shape->getMargin(); 83 child.m_node = m_dynamicAabbTree->insert(bounds,reinterpret_cast<void*>(index) ); 86 m_children.push_back(child); 310 btCompoundShapeChild &child = m_children[index]; local 314 child.m_childShape->getAabb(child.m_transform,localAabbMin,localAabbMax) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
UBJsonWriter.java | 352 for (JsonValue child = value.child; child != null; child = child.next) 353 value(child); 360 for (JsonValue child = value.child; child != null; child = child.next [all...] |
/external/protobuf/gtest/test/ |
gtest_help_test.py | 92 child = gtest_test_utils.Subprocess(command) 93 return child.exit_code, child.output
|