HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1201 - 1225 of 3822) sorted by null

<<41424344454647484950>>

  /frameworks/base/services/core/java/com/android/server/updates/
SELinuxPolicyInstallReceiver.java 79 for (File child : fileOrDirectory.listFiles())
80 deleteRecursive(child);
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
XmlConfigTests.java 272 NetworkSecurityConfig child = appConfig.getConfigForHostname("developer.android.com"); local
273 MoreAsserts.assertNotEqual(parent, child);
275 MoreAsserts.assertNotEmpty(child.getPins().pins);
276 // Check that the child inherited the cleartext value and anchors.
277 assertFalse(child.isCleartextTrafficPermitted());
278 MoreAsserts.assertNotEmpty(child.getTrustAnchors());
290 NetworkSecurityConfig child = appConfig.getConfigForHostname("developer.android.com"); local
291 MoreAsserts.assertNotEqual(parent, child);
293 assertFalse(child.isCleartextTrafficPermitted());
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
MergedBinding.java 50 final Expr child = children.get(i); local
51 child.resolveListeners(parameters[i], expr);
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
LayoutFileParser.java 179 for (XMLParser.ElementContext child : XmlEditor.elements(ctx)) {
180 if ("include".equals(child.elmName.getText())) {
358 for (XMLParser.ElementContext child : XmlEditor.elements(root)) {
359 if (name.equals(child.elmName.getText())) {
360 result.add(child);
376 for (XMLParser.ElementContext child : XmlEditor.elements(root)) {
377 if (!name.equals(child.elmName.getText())) {
378 result.add(child);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
DrawableUtils.java 139 // If we have a DrawableContainer, let's traverse it's child array
144 for (final Drawable child : containerState.getChildren()) {
145 if (!canSafelyMutateDrawable(child)) {
  /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/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/StorageManager/src/com/android/storagemanager/deletionhelper/
CollapsibleCheckboxPreferenceGroup.java 98 View child = parent.findViewById(com.android.internal.R.id.checkbox); local
99 Checkable checkable = (Checkable) child;
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
SetupAnimationHelper.java 151 for (Animator child : ((AnimatorSet) animator).getChildAnimations()) {
152 applyAnimationTimeScale(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;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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);
  /bionic/libc/arch-x86/bionic/
__bionic_clone.S 22 # Copy 'fn' and 'arg' onto the child stack
  /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);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeAdaptor.h 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
ANTLRTreeAdaptor.h 70 /** Is tree considered a nil node used to make lists of child nodes? */
74 - (void) addChild:(id<ANTLRTree>)child toTree:(id<ANTLRTree>)aTree;
77 * If not a nil root, make oldRoot a child of newRoot.
82 * If newRoot is a nil-rooted single child tree, use the single
83 * child as the new root node.
94 * simple node or nil root with a single child node--it must be a root
133 /** Get a child 0..n-1 node */
135 /** Set ith child (0..n-1) to t; t must be non-null and non-nil node */
136 - (void) setChild:(id<ANTLRTree>)aTree At:(NSInteger)index Child:(id<ANTLRTree>)child;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeAdaptor.h 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;

Completed in 1000 milliseconds

<<41424344454647484950>>