/external/skia/src/xml/ |
SkDOM.cpp | 85 const Node* child = node->fFirstChild; local 89 for (; child != nullptr; child = child->fNextSibling) 90 if (!strcmp(name, child->fName)) 93 return child; 270 SkDOM::Node* child = parent->fFirstChild; variable 272 while (child) 274 SkDOM::Node* next = child->fNextSibling; 275 child->fNextSibling = prev [all...] |
/external/valgrind/helgrind/tests/ |
tc07_hbl1.c | 6 /* Simple test program, no race. Parent and child both modify x and 137 pthread_t child; local 139 if (pthread_create(&child, NULL, child_fn, NULL)) { 146 if (pthread_join(child, NULL)) {
|
tc08_hbl2.c | 5 child: new value 6 6 child: new value 10 11 child: new value 10 21 whilst child reads it. When counter reaches a prearranged value, 22 child joins back to parent. Parent (writer) uses hardware bus lock; 23 child is only reading and so does not need to use a bus lock. */ 162 printf("child: new value %d\n", oldx); 173 pthread_t child; local 176 if (pthread_create(&child, NULL, child_fn, NULL)) { 183 if (i == 5) sleep(1); /* make sure child doesn't starve * [all...] |
/external/valgrind/perf/ |
many-loss-records.c | 43 struct Chunk* child; member in struct:Chunk 63 free_chunks ((&(*mem)->child)); 99 new->child = prev;
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_help_test.py | 94 child = gtest_test_utils.Subprocess(command) 95 return child.exit_code, child.output
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
Events.java | 144 View child = view.findChildViewUnder(mEvent.getX(), mEvent.getY()); local 145 mPosition = (child!= null) 146 ? view.getChildAdapterPosition(child)
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
OSUResponse.java | 55 for (XMLNode child : root.getChildren()) { 56 if (child.getTag().equals(errorTag)) { 57 error = OMAConstants.mapError(child.getAttributeValue("errorCode"));
|
SOAPParser.java | 72 for (XMLNode child : root.getChildren()) { 73 if (bodyTag.equalsIgnoreCase(child.getTag())) { 74 body = child; 149 <xsd:documentation>When this boolean is true, X509v3 certificates issued by providers identified in the providerIssuerName child element(s) are acceptable for mobile device authentication.</xsd:documentation> 187 <xsd:documentation>This command causes the update of an interior node and its child nodes (if any) at the location specified in the management tree URI attribute. The content of this element is the MO node XML.</xsd:documentation>
|
/frameworks/base/sax/java/android/sax/ |
RootElement.java | 129 // Look for a child to push onto the stack. 132 Element child = children.get(uri, localName); local 133 if (child != null) { 134 start(child, attributes);
|
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/ |
VectorDrawable01.java | 71 View child = vg.getChildAt(i); 72 if (child != buttonView) { 73 child.setEnabled(isChecked);
|
/frameworks/support/compat/jellybean/android/support/v4/view/ |
AccessibilityDelegateCompatJellyBean.java | 37 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, 70 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, 72 return bridge.onRequestSendAccessibilityEvent(host, child, event);
|
/frameworks/support/fragment/tests/java/android/support/v4/app/ |
NestedFragmentRestoreTest.java | 68 ChildFragment child = parent.getChildFragment(); local 72 child.setOnAttachListener(new OnAttachListener() { 91 assertNotSame("attached to new parent fragment", parent, child);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodeinsertbefore.java | 35 * child of the second employee and check the "newChild" 69 Node child; local 119 child = (Node) childList.item(indexN100DC); 120 childName = child.getNodeName();
|
nodeinsertbeforenewchildexists.java | 72 Node child; local 121 child = (Node) childList.item(indexN100DD); 122 childName = child.getNodeName();
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_help_test.py | 94 child = gtest_test_utils.Subprocess(command) 95 return child.exit_code, child.output
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
Serializer.cpp | 88 const xmlNode *child = root; local 89 if (!xmlStrcmp(child->name, (const xmlChar *)Trait::collectionTag)) { 90 child = child->xmlChildrenNode; 92 while (child != NULL) { 93 if (!xmlStrcmp(child->name, (const xmlChar *)Trait::tag)) { 95 status_t status = Trait::deserialize(doc, child, element, serializingContext); 104 child = child->next; 220 status_t MixPortTraits::deserialize(_xmlDoc *doc, const _xmlNode *child, PtrElement &mixPort 452 const xmlNode *child = children->xmlChildrenNode; local 557 const xmlNode *child = referenceName.empty() ? root->xmlChildrenNode : ref->xmlChildrenNode; local [all...] |
/packages/services/Car/car-ui-provider/src/android/car/ui/provider/ |
CarDrawerLayout.java | 59 * attribute on child views corresponding to which side of the view you want the drawer 170 * @param drawerView The child view that was moved 592 * @return the absolute gravity of the child drawerView, resolved according 615 final View child = getChildAt(i); local 616 final int childAbsGravity = getDrawerViewAbsoluteGravity(child); 618 mDrawerView = child; 619 return child; 635 final View child = getChildAt(i); local 636 if (isDrawerView(child)) { 639 mContentView = child; 1193 final View child = getChildAt(i); local 1230 final View child = getChildAt(i); local [all...] |
/frameworks/base/core/java/android/appwidget/ |
AppWidgetHostView.java | 252 View child = getErrorView(); local 253 prepareView(child); 254 addViewInLayout(child, 0, child.getLayoutParams()); 255 measureChild(child, MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY), 257 child.layout(0, 0, child.getMeasuredWidth() + mPaddingLeft + mPaddingRight, 258 child.getMeasuredHeight() + mPaddingTop + mPaddingBottom); 259 mView = child; 615 protected boolean drawChild(Canvas canvas, View child, long drawingTime) [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDelta.java | 147 * Get the {@link ValuesDelta} child marked as {@link Data#IS_PRIMARY}, 203 * Return the list of child {@link ValuesDelta} from our optimized map, 224 for (ValuesDelta child : mimeEntries) { 226 if (onlyVisible && !child.isVisible()) continue; 282 for (ValuesDelta child : mimeEntries) { 284 if (!other.containsEntry(child)) return false; 296 for (ValuesDelta child : mimeEntries) { 297 // Contained if we find any child that matches 298 if (child.equals(entry)) return true; 310 for (ValuesDelta child : mimeEntries) 467 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader); local [all...] |
/frameworks/base/core/java/android/widget/ |
Spinner.java | 51 * A view that displays one child at a time and lets the user pick among them. 536 View child = null; local 539 child = getChildAt(0); 541 child = makeView(0, false); 542 mRecycler.put(0, child); 545 if (child != null) { 546 final int childBaseline = child.getBaseline(); 547 return childBaseline >= 0 ? child.getTop() + childBaseline : -1; 685 * @param addChild true to add the child to the spinner, false to obtain and configure only. 689 View child; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | 337 * Returns the layout weight of of the given child of a LinearLayout, or 0.0 if it 361 for (Element child : DomUtilities.getChildren(linearLayout)) { 362 sum += getWeight(child); 380 // Baseline alignment. Find the tallest child and set it as the baseline reference. 383 for (Element child : DomUtilities.getChildren(layout)) { 384 View view = edgeList.getView(child); 405 Element child = children.get(index); local 407 View childView = edgeList.getView(child); 418 float weight = getWeight(child); 422 // child has a non-zero weight, and all children after it are pushe 683 Element child = (Element) node; local [all...] |