/external/deqp/executor/tools/ |
xeExtractSampleLists.cpp | 82 const xe::ri::Item& child = items.getItem(itemNdx); local 84 if (child.getType() == xe::ri::TYPE_SECTION) 85 extractSampleLists(casePath, listNdx, static_cast<const xe::ri::Section&>(child).items); 86 else if (child.getType() == xe::ri::TYPE_SAMPLELIST) 88 writeSampleList(casePath, *listNdx, static_cast<const xe::ri::SampleList&>(child));
|
/external/jemalloc/src/ |
rtree.c | 73 rtree_node_elm_t *child = node[i].child; local 74 if (child != NULL) 75 rtree_delete_subtree(rtree, child, level + 1); 131 return (rtree_node_init(rtree, level+1, &elm->child));
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
ADefCommand.java | 154 void removeChild(@SuppressWarnings("unused") Node child) 156 // Remove child 157 if(this._position_ == child) 163 if(this._macro_.remove(child)) 168 if(this._arguments_.remove(child)) 173 if(this._command_ == child) 179 throw new RuntimeException("Not a child."); 185 // Replace child 234 throw new RuntimeException("Not a child.");
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/ |
SoapEnvelope.java | 162 Element child = headers.getElement(i); local 163 if (child != null) { 170 Element child = headers.getElement(i); local 171 if (child != null) { 172 headerIn[count++] = child;
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
HtmlPolicyBuilderFuzzerTest.java | 156 for (Node child = node.getFirstChild(); child != null; 157 child = child.getNextSibling()) { 158 checkSafe(child, html);
|
/external/tensorflow/tensorflow/compiler/xla/ |
parse_flags_from_env_test.cc | 131 tensorflow::SubProcess child; local 138 child.SetProgram(binary_name, argv); 139 child.SetChannelAction(tensorflow::CHAN_STDOUT, tensorflow::ACTION_PIPE); 140 CHECK(child.Start()) << "test " << i; 142 int child_status = child.Communicate(nullptr, &stdout_str, nullptr);
|
/external/v8/src/compiler/ |
loop-analysis.h | 139 void SetParent(Loop* parent, Loop* child) { 141 parent->children_.push_back(child); 142 child->parent_ = parent; 143 child->depth_ = parent->depth_ + 1; 145 outer_loops_.push_back(child);
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
dot.rb | 88 | <%= @parent %> -> <%= @child %>; // "<%= @parent_text %>" -> "<%= @child_text %>" 124 parent_node_template = node_template_for( adaptor, child ) 130 child = adaptor.child_of( tree, index ) 131 number = @node_to_number_map[ child ] 133 node_template = node_template_for( adaptor, child ) 138 define_nodes( child, adaptor, tree_template, edge_template ) 151 child = adaptor.child_of( tree, index ) 152 child_text = adaptor.text_of( child ) 155 :parent => parent_name, :child => child_name, 159 define_edges( child, adaptor, tree_template, edge_template [all...] |
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
TestCLDRUtils.java | 235 for (CLDRLocale child : row) { 237 if (child == parent) { 240 checkChild(child, parent, false); 241 checkChild(parent, child, true); 247 for (CLDRLocale child : notSub) { 248 checkChild(ml, child, false); 259 private boolean checkChild(CLDRLocale parent, CLDRLocale child, 261 boolean got = child.childOf(parent); 262 String message = child + ".childOf(" + parent + ") " + "[" 263 + child.getDisplayName() + ", " + parent.getDisplayName( [all...] |
/external/u-boot/scripts/kconfig/ |
gconf.c | 1091 struct menu *child; local 1097 for (child = menu->list; child; child = child->next) { 1098 if (menu_is_visible(child) 1099 && child->sym == def_sym) 1100 def_menu = child; 1218 GtkTreeIter *child = &iter; local 1222 valid = gtk_tree_model_iter_children(model2, child, parent) 1338 struct menu *child; local 1428 struct menu *child; local [all...] |
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
Serializer.cpp | 192 // Need to call deserialize on each child 282 for (const xmlNode *child = cur->children; child != NULL; child = child->next) { 283 if ((!xmlStrcmp(child->name, 285 std::string name = getXmlAttribute(child, Trait::Attributes::referenceName); 287 return child; 302 const xmlNode *child = NULL; local 304 child = cur->xmlChildrenNode [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
XLIFF2ICUConverter.java | 576 // as the child of <trans-unit> but the attributes of the [all...] |
/external/skia/src/gpu/effects/ |
GrXfermodeFragmentProcessor.cpp | 265 enum Child { 271 SkBlendMode mode, Child child) { 276 new ComposeOneFragmentProcessor(std::move(fp), mode, child)); 285 str.appendf("Mode: %s, Child: %s", 300 Child child() const { return fChild; } function in class:ComposeOneFragmentProcessor 303 OptimizationFlags OptFlags(const GrFragmentProcessor* fp, SkBlendMode mode, Child child) { 312 SkASSERT(child == kSrc_Child) 439 ComposeOneFragmentProcessor::Child child = variable 470 ComposeOneFragmentProcessor::Child child; local [all...] |
/external/skqp/src/gpu/effects/ |
GrXfermodeFragmentProcessor.cpp | 265 enum Child { 271 SkBlendMode mode, Child child) { 276 new ComposeOneFragmentProcessor(std::move(fp), mode, child)); 285 str.appendf("Mode: %s, Child: %s", 300 Child child() const { return fChild; } function in class:ComposeOneFragmentProcessor 303 OptimizationFlags OptFlags(const GrFragmentProcessor* fp, SkBlendMode mode, Child child) { 312 SkASSERT(child == kSrc_Child) 448 ComposeOneFragmentProcessor::Child child = variable 479 ComposeOneFragmentProcessor::Child child; local [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
ViewGroupTest.java | 141 // Child is focusable. 157 // Both parent and child are focusable. 181 // A cluster and a non-cluster child. 476 MockViewGroup child = new MockViewGroup(mContext); local 477 child.setAnimation(new MockAnimation()); 478 mMockViewGroup.addView(child); 481 assertNotNull(child.getAnimation()); 485 child.setAnimation(new MockAnimation()); 492 child.setAnimation(new MockAnimation()); 756 // test whether child's draw method is called 798 MockView child = new MockView(mContext); local 810 MockView child = new MockView(mContext); local 1260 MockView child = new MockView(mContext); local 1304 MockView child = new MockView(mContext); local 1372 MockViewGroup child = new MockViewGroup(mContext); local 1404 MockViewGroup child = new MockViewGroup(mContext); local 1478 MockViewGroup child = new MockViewGroup(mContext); local 1517 MockViewGroup child = new MockViewGroup(mContext); local 1534 MockViewGroup child = new MockViewGroup(mContext); local 1559 MockViewGroup child = new MockViewGroup(mContext); local 1669 MockView child = new MockView(mContext); local 2178 MockViewGroup child = new MockViewGroup(mContext); local 2302 MockViewGroup child = new MockViewGroup(mContext); local 2313 MockViewGroup child = new MockViewGroup(mContext); local 2337 MockViewGroup child = new MockViewGroup(mContext); local 2351 MockViewGroup child = new MockViewGroup(mContext); local [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
StepPattern.java | 437 for (int child = traverser.first(context); DTM.NULL != child; 438 child = traverser.next(context, child)) 442 xctxt.pushCurrentNode(child); 444 if (NodeTest.SCORE_NONE != super.execute(xctxt, child)) 534 DTMAxisTraverser traverser = dtm.getAxisTraverser(Axis.CHILD); 536 for (int child = traverser.first(parent); DTM.NULL != child; 537 child = traverser.next(parent, child) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
rbtree.c | 218 struct rb_node *child, *parent; local 222 child = node->rb_right; 224 child = node->rb_left; 241 child = node->rb_right; 248 if (child) 249 ext2fs_rb_set_parent(child, parent); 250 parent->rb_left = child; 266 if (child) 267 ext2fs_rb_set_parent(child, parent); 271 parent->rb_left = child; [all...] |
/external/wpa_supplicant_8/src/utils/ |
json.c | 195 if (json_check_tree_state(token->child) < 0 || 262 token->child = json_alloc_token(&tokens); 263 if (!token->child) 265 curr_token = token->child; 287 if (curr_token->child->state == JSON_EMPTY && 288 !curr_token->child->child && 289 !curr_token->child->sibling) { 290 /* Remove pending child token since the 292 json_free(curr_token->child); [all...] |
/external/skia/tools/bookmaker/ |
definition.cpp | 416 // if method returns a value, look for a return child 417 // for each parameter, look for a corresponding child 435 for (auto& child : fChildren) { 436 foundPopulate |= MarkType::kPopulate == child->fMarkType; 437 if (MarkType::kReturn != child->fMarkType) { 438 if (MarkType::kParam == child->fMarkType) { 439 child->fVisited = false; 467 for (auto& child : fChildren) { 468 if (MarkType::kParam != child->fMarkType) { 471 if (paramName != child->fName) [all...] |
/external/skqp/tools/bookmaker/ |
definition.cpp | 416 // if method returns a value, look for a return child 417 // for each parameter, look for a corresponding child 435 for (auto& child : fChildren) { 436 foundPopulate |= MarkType::kPopulate == child->fMarkType; 437 if (MarkType::kReturn != child->fMarkType) { 438 if (MarkType::kParam == child->fMarkType) { 439 child->fVisited = false; 467 for (auto& child : fChildren) { 468 if (MarkType::kParam != child->fMarkType) { 471 if (paramName != child->fName) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMHelper.java | 357 * @param child1 Must be the child of parent and not equal to child2. 358 * @param child2 Must be the child of parent and not equal to child1. 359 * @return true if child 2 is after child1 in document order. 392 Node child = children.item(i); local 394 if (child1 == child || isNodeTheSame(child1, child)) 405 else if (child2 == child || isNodeTheSame(child2, child)) 431 Node child = parent.getFirstChild(); local 434 while (null != child) [all...] |
/build/blueprint/bootstrap/bpdoc/ |
bpdoc.go | 268 child := &parent.Properties[j] 269 if len(child.Properties) > 0 { 270 collapseNestedProperties(&child.Properties) 279 child := parent.Properties[j] 280 child.Name = parent.Name + "." + child.Name 281 n = append(n, child) 297 for _, child := range *p { 298 if len(child.Properties) > 0 { 299 combineDuplicateSubProperties(&child.Properties [all...] |
/cts/suite/audio_quality/lib/src/task/ |
ModelBuilder.cpp | 124 const XMLElement* child = self.FirstChildElement(); local 125 while (child != NULL) { 130 if (strcmp(child->Value(), mParsingTable[i].name) == 0) { 135 LOGE("ModelBuilder::parseGeneric unknown element %s", child->Value()); 140 // check if the type is allowed as child 150 LOGE("ModelBuilder::parseGeneric unsupported child type %d for type %d", childType, 154 std::unique_ptr<TaskGeneric> taskChild(parseGeneric(*child, i)); 156 LOGE("ModelBuilder::parseGeneric failed in parsing child type %d for type %d", 161 LOGE("ModelBuilder::parseGeneric cannot add child type %d to type %d", childType, 167 child = child->NextSiblingElement() [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
ASTBase.cpp | 54 /* add a child node to the current sibling list */
134 register ASTBase *child, *sibling=NULL, *tail=NULL /*MR23*/, *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 *);
|
ast.c | 69 /* add a child node to the current sibling list */
126 * example: print tree in child-sibling LISP-format (AST has token field)
258 register AST *child, *sibling=NULL, *tail=NULL /* MR20 */, *w;
local 271 child = va_arg(ap, AST *);
272 while ( child != NULL )
274 for (w=child; w->right!=NULL; w=w->right) {;} /* find end of child */
275 if ( sibling == NULL ) {sibling = child; tail = w;}
276 else {tail->right = child; tail = w;}
277 child = va_arg(ap, AST *); [all...] |