HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1376 - 1400 of 2913) sorted by null

<<51525354555657585960>>

  /external/markdown/markdown/extensions/
toc.py 16 # Iterator wrapper to get parent and child all at once
19 for child in parent:
20 yield parent, child
  /external/skia/samplecode/
SampleApp.h 147 virtual void beforeChild(SkView* child, SkCanvas* canvas) SK_OVERRIDE;
148 virtual void afterChild(SkView* child, SkCanvas* canvas) SK_OVERRIDE;
  /external/skia/src/animator/
SkAnimateMaker.h 47 void childrenAdd(SkDisplayable* child) { *fChildren.append() = child; }
  /external/valgrind/main/coregrind/
m_libcproc.c 222 // when starting child processes, so they don't see that added stuff.
332 /* restore the DATA rlimit for the child */
345 child! */
355 /* child */
604 /* on success: wLO = child pid; wHI = 1 for child, 0 for parent */
606 return 0; /* this is child: return 0 instead of child pid */
671 vg_atfork_t child; member in struct:atfork
679 void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child)
    [all...]
  /external/valgrind/main/helgrind/tests/
tc17_sembar.c 156 void* child ( void* argV ) function
196 res = pthread_create( &thr[i], NULL, child, (void*)(i+2) );
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 132 Node child = rdfRdfNode.getChildNodes().item(i); local
134 if (!isWhitespaceNode(child))
136 rdf_NodeElement (xmp, xmpParent, child, true);
446 // or an emptyPropertyElt. Look at the child XML nodes to decide which.
583 // found second child element
585 "Invalid child of resource property element", BADRDF);
597 // didn't found any child elements
598 throw new XMPException("Missing child of resource property element", BADRDF);
651 Node child = xmlNode.getChildNodes().item(i); local
652 if (child.getNodeType() == Node.TEXT_NODE
1168 XMPNode child = (XMPNode) it.next(); local
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 475 protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
478 int l = child.getLeft();
479 int t = child.getTop();
486 + " w=" + child.getWidth());
494 int restoreTo = canvas.saveLayerAlpha(l, t, child.getWidth(), child.getHeight(), alpha,
496 boolean rv = super.drawChild(canvas, child, drawingTime);
509 return super.drawChild(canvas, child, drawingTime);
518 // Take requested dimensions from child, but apply default gravity.
  /frameworks/base/core/java/android/widget/
AdapterView.java 63 * The position of the first child displayed
107 * Sync based on the selected child
112 * Sync based on the first child displayed
415 * The child view for which the context menu is being displayed. This
450 * @param child Ignored.
455 public void addView(View child) {
462 * @param child Ignored.
468 public void addView(View child, int index) {
475 * @param child Ignored.
481 public void addView(View child, LayoutParams params)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarView.java 81 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
82 if (super.onRequestSendAccessibilityEvent(child, event)) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadGroupTest.java 136 ThreadGroup child = subgroups.elementAt(i); local
137 assertEquals("Destroyed child can't have children", 0, child.activeCount());
140 child.destroy();
144 assertTrue("Destroyed child can't be destroyed again", passed);
150 ThreadGroup child = new ThreadGroup(testRoot, "daemon child"); local
152 // If we destroy the last daemon's child, the daemon should get destroyed
154 child.destroy();
158 child.destroy()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
MockAbstractPreferences.java 176 for (String child : children) {
177 p.node(child).removeNode();
  /libcore/luni/src/main/java/java/util/prefs/
FilePreferencesImpl.java 101 throw new BackingStoreException("Cannot get child names for " + toString()
109 FilePreferencesImpl child = new FilePreferencesImpl(this, name); local
110 return child;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 415 Node child; local
416 while ((child = getFirstChild()) != null) {
417 removeChild(child);
530 * element. Since child elements can redefine prefixes, this check is
608 for (Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
609 values.add(child);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageScrollView.java 34 * A container that tries to play nice with an internally scrollable {@link Touchable} child view.
35 * The assumption is that the child view can scroll horizontally, but not vertically, so any
36 * touch events on that child view should ALSO be sent here so it can simultaneously vertically
39 * Touch events on any other child of this ScrollView are intercepted in the standard fashion.
60 * want to intercept a touch stream from any child OTHER than {@link #mTouchableChild}.
64 * The special child that we want to NOT intercept from in the normal way. Instead, this child
121 public void setInnerScrollableView(Touchable child) {
122 mTouchableChild = child;
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipProfileDb.java 64 for (File child : file.listFiles()) deleteProfile(child);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 73 def add_child(self, child):
74 self.children.append(child)
116 for child in self.children:
117 frees = child.get_free_vars()
120 child.force_global(name)
125 Some child of the current node had a free reference to name.
126 When the child was processed, it was labelled a free
129 walk back down the child chain and set the name to be global
132 Be careful to stop if a child does not think the name is
138 for child in self.children
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 73 def add_child(self, child):
74 self.children.append(child)
116 for child in self.children:
117 frees = child.get_free_vars()
120 child.force_global(name)
125 Some child of the current node had a free reference to name.
126 When the child was processed, it was labelled a free
129 walk back down the child chain and set the name to be global
132 Be careful to stop if a child does not think the name is
138 for child in self.children
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 340 // We found a child which name starts with the full name of the
577 * @param filter The child node to look for, either "enum" or "flag".
585 for (Node child = attrNode.getFirstChild(); child != null; child = child.getNextSibling()) {
586 if (child.getNodeType() == Node.ELEMENT_NODE && child.getNodeName().equals(filter)) {
587 Node nameNode = child.getAttributes().getNamedItem("name"); //$NON-NLS-1$
599 Node valueNode = child.getAttributes().getNamedItem("value"); //$NON-NLS-1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 100 for (UiElementNode child : node.getUiChildren()) {
101 UiElementNode result = findById(child, targetId);
  /sdk/emulator/opengl/shared/OpenglOsUtils/
Android.mk 5 # - child process creation and wait (probably not needed in guest)
  /sdk/emulator/opengl/tests/ut_renderer/
X11Windowing.cpp 40 Window child; local
42 XTranslateCoordinates( disp, win, DefaultRootWindow(disp), 0, 0, px, py, &child );
  /development/ndk/platforms/android-3/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
BlankDebugEventListener.cs 122 public virtual void AddChild(object root, object child) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 155 public virtual void AddChild( object root, object child )
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 194 Object child = adaptor.getChild(t, i); local
195 _index(child, m);
263 Object child = adaptor.getChild(t, i); local
264 _visit(child, t, i, ttype, visitor);

Completed in 1817 milliseconds

<<51525354555657585960>>