HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 376 - 400 of 1841) sorted by null

<<11121314151617181920>>

  /art/runtime/
subtype_check_test.cc 154 for (MockClass* child : children_) {
155 MockClass* visit_res = child->Visit(visitor);
192 for (MockClass* child : children_) {
193 os << " '" << path_to_root_ << "' -> '" << child->path_to_root_ << "';" << std::endl;
194 child->ToDotGraphImpl(os);
332 MockClass* child = CreateClassFor(parent, i, parent->y_ + 1); local
333 CreateTreeFor(child, width, levels - 1);
377 MockClass* child = root_->GetChild(i); local
378 SCTree child_tree = SCTree::Lookup(child);
402 MockClass* child = root_->GetChild(i) local
427 MockClass* child = root_->GetChild(i); local
477 MockClass* child = root_->GetChild(i); local
642 MockClass* child = klass->GetChild(i); local
673 MockClass* child = klass->GetChild(i); local
872 MockClass* child = root_->FindChildAt(\/*x=*\/0, kTargetDepth - 1u); local
917 MockClass* child = root_->FindChildAt(\/*x=*\/0, kTargetDepth - 1); local
1038 MockClass* child = root_->FindChildAt(\/*x=*\/0, kTargetDepth - 1u); local
    [all...]
  /external/clang/tools/scan-build-py/tests/functional/cases/
__init__.py 42 child = subprocess.Popen(analyzer_cmd + ['-v'] + build_cmd,
49 for line in child.stdout.readlines():
54 child.stdout.close()
55 child.wait()
57 return (child.returncode, directory)
  /external/dexmaker/dexmaker-mockito-tests/src/main/java/com/android/dx/mockito/tests/
BlacklistedApis.java 72 FrameLayout child = new FrameLayout(targetContext); local
85 parent.addView(child);
88 parent.addView(child);
103 FrameLayout child = new FrameLayout(targetContext); local
106 parent.addView(child);
  /external/grpc-grpc/test/core/json/
json_test.cc 177 GPR_ASSERT(json->child);
178 brother = json->child->next;
179 grpc_json_destroy(json->child);
180 GPR_ASSERT(json->child == brother);
181 grpc_json_destroy(json->child->next);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AEachCommand.java 163 void removeChild(@SuppressWarnings("unused") Node child)
165 // Remove child
166 if(this._position_ == child)
172 if(this._variable_ == child)
178 if(this._expression_ == child)
184 if(this._command_ == child)
190 throw new RuntimeException("Not a child.");
196 // Replace child
221 throw new RuntimeException("Not a child.");
AIfCommand.java 163 void removeChild(@SuppressWarnings("unused") Node child)
165 // Remove child
166 if(this._position_ == child)
172 if(this._expression_ == child)
178 if(this._block_ == child)
184 if(this._otherwise_ == child)
190 throw new RuntimeException("Not a child.");
196 // Replace child
221 throw new RuntimeException("Not a child.");
ALoopToCommand.java 163 void removeChild(@SuppressWarnings("unused") Node child)
165 // Remove child
166 if(this._position_ == child)
172 if(this._variable_ == child)
178 if(this._expression_ == child)
184 if(this._command_ == child)
190 throw new RuntimeException("Not a child.");
196 // Replace child
221 throw new RuntimeException("Not a child.");
AWithCommand.java 163 void removeChild(@SuppressWarnings("unused") Node child)
165 // Remove child
166 if(this._position_ == child)
172 if(this._variable_ == child)
178 if(this._expression_ == child)
184 if(this._command_ == child)
190 throw new RuntimeException("Not a child.");
196 // Replace child
221 throw new RuntimeException("Not a child.");
ALoopIncCommand.java 225 void removeChild(@SuppressWarnings("unused") Node child)
227 // Remove child
228 if(this._position_ == child)
234 if(this._variable_ == child)
240 if(this._start_ == child)
246 if(this._end_ == child)
252 if(this._increment_ == child)
258 if(this._command_ == child)
264 throw new RuntimeException("Not a child.");
270 // Replace child
    [all...]
  /external/linux-kselftest/tools/testing/selftests/x86/
ioperm.c 126 pid_t child = fork(); local
127 if (child == -1)
130 if (child == 0) {
137 if (waitpid(child, &status, 0) != child ||
  /external/webrtc/webrtc/base/
win32window.cc 104 for (HWND child = ::GetWindow(hwnd, GW_CHILD); child;
105 child = ::GetWindow(child, GW_HWNDNEXT)) {
106 LOG(LS_INFO) << "Child window: " << static_cast<void*>(child);
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.cc 313 XmlElement* child = FirstNamed(name); local
314 if (!child) {
315 child = new XmlElement(name);
316 AddElement(child);
319 return child;
415 void XmlElement::AddElement(XmlElement *child) {
416 if (child == NULL)
420 *pprev = child;
421 last_child_ = child;
422 child->next_child_ = NULL
436 XmlChild* child; local
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 82 // walk the tree and emit create and add child events
89 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
94 object child = adaptor.GetChild(t, i);
95 SimulateTreeConstruction(child);
96 dbg.AddChild(t, child);
116 public virtual void AddChild(object t, object child) {
117 if (t == null || child == null) {
120 adaptor.AddChild(t, child);
121 dbg.AddChild(t, child);
134 public virtual void AddChild(object t, IToken child) {
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 81 // walk the tree and emit create and add child events
88 /** ^(A B C): emit create A, create B, add child, ...*/
93 Object child = adaptor.getChild(t, i); local
94 simulateTreeConstruction(child);
95 dbg.addChild(t, child);
119 public void addChild(Object t, Object child) {
120 if ( t==null || child==null ) {
123 adaptor.addChild(t,child);
124 dbg.addChild(t, child);
139 public void addChild(Object t, Token child) {
    [all...]
  /external/markdown/markdown/extensions/
footnotes.py 83 for child in element:
84 if child.text:
85 if child.text.find(self.getConfig("PLACE_MARKER")) > -1:
86 return child, True
87 if child.tail:
88 if child.tail.find(self.getConfig("PLACE_MARKER")) > -1:
89 return (child, element), False
90 finder(child)
289 child, element = node
290 ind = element.getchildren().find(child)
    [all...]
  /cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
Helper.java 119 final TextView child = new TextView(context); local
120 child.setText(text);
121 Log.v(TAG, "newImportantView(text=" + text + ", id=" + child.getAutofillId() + ")");
122 return child;
130 final TextView child = newImportantView(context, text); local
131 child.setContentCaptureSession(session);
132 return child;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
ASTBase.cpp 54 /* add a child node to the current sibling list */
134 register ASTBase *child, *sibling=NULL, *tail, *w; local
143 child = va_arg(ap, ASTBase *);
144 while ( child != NULL )
146 for (w=child; w->_right!=NULL; w=w->_right) {;} /* find end of child */
147 if ( sibling == NULL ) {sibling = child; tail = w;}
148 else {tail->_right = child; tail = w;}
149 child = va_arg(ap, ASTBase *);
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 132 // must have already dumped as child from previous
140 // for each child, do a "<unique-name> [label=text]" node def
143 object child = adaptor.GetChild( tree, i );
144 yield return GetNodeText( adaptor, child );
145 foreach ( var t in DefineNodes( child, adaptor ) )
158 // must have already dumped as child from previous
165 // for each child, do a parent -> child edge using unique node names
169 object child = adaptor.GetChild( tree, i );
170 string childText = adaptor.GetNodeText(child);
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 126 // must have already dumped as child from previous
134 // for each child, do a "<unique-name> [label=text]" node def
136 object child = adaptor.GetChild(tree, i);
137 yield return GetNodeText(adaptor, child);
138 foreach (var t in DefineNodes(child, adaptor))
149 // must have already dumped as child from previous
156 // for each child, do a parent -> child edge using unique node names
159 object child = adaptor.GetChild(tree, i);
160 string childText = adaptor.GetText(child);
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 132 // must have already dumped as child from previous
140 // for each child, do a "<unique-name> [label=text]" node def
143 object child = adaptor.GetChild( tree, i );
144 yield return GetNodeText( adaptor, child );
145 foreach ( var t in DefineNodes( child, adaptor ) )
158 // must have already dumped as child from previous
165 // for each child, do a parent -> child edge using unique node names
169 object child = adaptor.GetChild( tree, i );
170 string childText = adaptor.GetText( child );
    [all...]
  /external/antlr/runtime/Cpp/include/
antlr3commontreeadaptor.hpp 57 void addChild( TreeType* t, TreeType* child);
58 void addChildToken( TreeType* t, CommonTokenType* child);
59 void setParent( TreeType* child, TreeType* parent);
60 TreeType* getParent( TreeType* child);
80 void setChild( TreeType* t, ANTLR_UINT32 i, TreeType* child);
100 /// Replace from start to stop child index of parent with t, which might
143 void addChild(TreeType* t, TreeType* child);
144 void addChildToken(TreeType* t, CommonTokenType* child);
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 71 new StringTemplate("$parent$ -> $child$ // \"$parentText$\" -> \"$childText$\"\n");
134 // must have already dumped as child from previous
143 // for each child, do a "<unique-name> [label=text]" node def
145 Object child = adaptor.getChild(tree, i); local
146 StringTemplate nodeST = getNodeST(adaptor, child);
148 toDOTDefineNodes(child, adaptor, treeST);
161 // must have already dumped as child from previous
168 // for each child, do a parent -> child edge using unique node names
171 Object child = adaptor.getChild(tree, i) local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_nir_lower_builtin.c 81 if (tail->child->deref_type == nir_deref_type_array)
82 tail = tail->child;
85 if (!tail->child)
88 if (tail->child->deref_type != nir_deref_type_struct)
91 nir_deref_struct *deref_struct = nir_deref_as_struct(tail->child);
107 if (deref->deref.child->deref_type == nir_deref_type_array) {
108 nir_deref_array *darr = nir_deref_as_array(deref->deref.child);
  /external/toybox/kconfig/
mconf.c 429 struct menu *child; local
476 for (child = menu->list; child; child = child->next) {
477 if (menu_is_visible(child) && child->sym == def_sym)
478 def_menu = child;
578 for (child = menu->list; child; child = child->next
719 struct menu *child; local
    [all...]
  /external/blktrace/
rbtree.c 224 struct rb_node *child, *parent; local
228 child = node->rb_right;
230 child = node->rb_left;
238 child = node->rb_right;
242 if (child)
243 rb_set_parent(child, parent);
245 parent->rb_right = child;
248 parent->rb_left = child;
272 if (child)
273 rb_set_parent(child, parent)
    [all...]

Completed in 2709 milliseconds

<<11121314151617181920>>