/external/ImageMagick/MagickCore/ |
segment.c | 170 *child; 167 *child; member in struct:_IntervalTree 1302 *child; local [all...] |
/external/boringssl/src/crypto/bytestring/ |
bytestring_test.cc | 262 CBS cbs, child; local 264 ASSERT_EQ(t.ok, !!CBS_get_any_asn1(&cbs, &child, &tag)); 267 EXPECT_EQ(0u, CBS_len(&child)); 274 EXPECT_TRUE(CBS_get_asn1(&cbs, &child, t.tag)); 275 EXPECT_EQ(0u, CBS_len(&child)); 279 EXPECT_FALSE(CBS_get_asn1(&cbs, &child, t.tag + 1)); 365 // Test that calling CBB_finish on a child does nothing. 367 CBB child; local 373 ASSERT_TRUE(CBB_add_u8_length_prefixed(cbb.get(), &child)); 375 EXPECT_FALSE(CBB_finish(&child, &out_buf, &out_size)) 460 CBB child, contents; local 789 CBB child; local 1023 CBB child; local 1049 CBB child; local [all...] |
/external/python/cpython3/Lib/test/ |
test_minidom.py | 265 child = dom.appendChild(dom.createElement("abc")) 267 child.setAttribute("def", "ghi") 268 self.confirm(child.getAttribute("def") == "ghi") 269 self.confirm(child.attributes["def"].value == "ghi") 271 child.setAttribute("jkl", "mno") 272 self.confirm(child.getAttribute("jkl") == "mno") 273 self.confirm(child.attributes["jkl"].value == "mno") 275 self.confirm(len(child.attributes) == 2) 277 child.setAttribute("def", "newval") 278 self.confirm(child.getAttribute("def") == "newval" [all...] |
/external/antlr/runtime/Python/antlr3/ |
tree.py | 108 even use Token objects as trees if you add a child list to your tokens. 123 """Tree tracks parent and child index now > 3.0""" 128 """Tree tracks parent and child index now > 3.0""" 154 """This node is what child index? 0..n-1""" 159 """This node is what child index? 0..n-1""" 165 """Set the parent and child index values for all children""" 172 Add t as a child to this node. If t is null, do nothing. If t 180 """Set ith child (0..n-1) to t; t must be non-null and non-nil node""" 193 For huge child lists, inserting children can force walking rest of 343 """Is tree considered a nil node used to make lists of child nodes?"" [all...] |
/external/antlr/runtime/Python3/antlr3/ |
tree.py | 108 even use Token objects as trees if you add a child list to your tokens. 123 """Tree tracks parent and child index now > 3.0""" 128 """Tree tracks parent and child index now > 3.0""" 154 """This node is what child index? 0..n-1""" 159 """This node is what child index? 0..n-1""" 165 """Set the parent and child index values for all children""" 172 Add t as a child to this node. If t is null, do nothing. If t 180 """Set ith child (0..n-1) to t; t must be non-null and non-nil node""" 193 For huge child lists, inserting children can force walking rest of 343 """Is tree considered a nil node used to make lists of child nodes?"" [all...] |
/external/boringssl/src/ssl/ |
handshake_client.cc | 222 CBB child; local 223 if (!CBB_add_u16_length_prefixed(out, &child)) { 229 !CBB_add_u16(&child, ssl_get_grease_value(hs, ssl_grease_cipher))) { 237 !CBB_add_u16(&child, TLS1_CK_CHACHA20_POLY1305_SHA256 & 0xffff)) { 240 if (!CBB_add_u16(&child, TLS1_CK_AES_128_GCM_SHA256 & 0xffff) || 241 !CBB_add_u16(&child, TLS1_CK_AES_256_GCM_SHA384 & 0xffff)) { 245 !CBB_add_u16(&child, TLS1_CK_CHACHA20_POLY1305_SHA256 & 0xffff)) { 263 if (!CBB_add_u16(&child, ssl_cipher_get_value(cipher))) { 276 if (!CBB_add_u16(&child, SSL3_CK_FALLBACK_SCSV & 0xffff)) { 292 CBB child; local 1301 CBB child; local 1341 CBB child; local 1377 CBB child; local 1416 CBB body, child; local 1493 CBB body, child; local [all...] |
/cts/tools/utils/ |
DescriptionGenerator.java | 329 Node child = suiteChildren.iterator().next(); local 333 + getAttribute(child, ATTRIBUTE_NAME); 334 setAttribute(child, ATTRIBUTE_NAME, newName); 339 parentNode.appendChild(child); 341 mergeEmptySuites(child); 346 * Get the unmuatable child nodes for specified node. 349 * @return A collection of copied child node. 376 for (Node child : children) { 377 String childName = child.getAttributes().getNamedItem(ATTRIBUTE_NAME) 383 appendTestCases(child, testSuite.mCases) 408 Node child = children.item(i); local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
btm_matcher.py | 105 for child in current_ast_node.children:
107 if isinstance(child, pytree.Leaf) and child.value == u";":
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
PCCTSAST.cpp | 98 register PCCTS_AST *child, *sibling=NULL, *tail=NULL /*MR23*/, *w;
local 106 child = va_arg(ap, PCCTS_AST *);
107 while ( child != NULL )
109 /* find end of child */
110 for (w=child; w->right()!=NULL; w=w->right()) {;}
111 if ( sibling == NULL ) {sibling = child; tail = w;}
112 else {tail->setRight(child); tail = w;}
113 child = va_arg(ap, PCCTS_AST *);
294 /* find end of b's child list */
305 /* find end of child list */ 544 ScanAST *t=NULL, *root, *child, *last=NULL \/*MR23*\/; local [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
PCCTSAST.cpp | 98 register PCCTS_AST *child, *sibling=NULL, *tail, *w;
local 106 child = va_arg(ap, PCCTS_AST *);
107 while ( child != NULL )
109 /* find end of child */
110 for (w=child; w->right()!=NULL; w=w->right()) {;}
111 if ( sibling == NULL ) {sibling = child; tail = w;}
112 else {tail->setRight(child); tail = w;}
113 child = va_arg(ap, PCCTS_AST *);
280 /* find end of b's child list */
291 /* find end of child list */ 532 ScanAST *t=NULL, *root, *child, *last; local [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/ |
astlib.c | 148 register SORAST *child, *sibling=NULL, *tail = NULL, *w;
local 161 child = va_arg(ap, SORAST *);
162 while ( child != NULL )
164 /* find end of child */
165 for (w=child; w->ast_right!=NULL; w=w->ast_right) {;}
166 if ( sibling == NULL ) {sibling = child; tail = w;}
167 else {tail->ast_right = child; tail = w;}
168 child = va_arg(ap, SORAST *);
370 /* find end of b's child list */
386 /* find end of child list */ 685 ScanAST *t=NULL, *root, *child, *last = NULL; local [all...] |
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreePatternParser.cs | 79 object child = ParseNode(); 80 if (child == null) { 83 adaptor.AddChild(root, child);
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreePatternParser.cs | 93 object child = ParseNode(); 94 if ( child == null ) 98 adaptor.AddChild( root, child );
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreePatternParser.java | 79 Object child = parseNode(); local 80 if ( child==null ) { 83 adaptor.addChild(root, child);
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
CheckChildren.java | 84 CLDRFile child = getFactory().make(locale.getBaseName(), true); local 85 if (child == null) { 91 iChildren.add(child);
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
ShowChildren.java | 51 for (String child : children) { 52 CLDRFile file = (CLDRFile) cldrFactory.make(child, false); 73 value2locales.put(childValue, child);
|
/external/compiler-rt/lib/asan/tests/ |
asan_mac_test.cc | 29 pthread_t child; local 30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL); 31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached. 159 // Call malloc in the child process to make sure we won't deadlock. 172 // TODO(glider): need to detect that none of the child processes deadlocked.
|
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 309 const xe::TestNode* child = group.getChild(childNdx); local 310 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; 311 const string fullPath = child->getFullPath(); 318 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); 322 DE_ASSERT(child->getNodeType() == xe::TESTNODETYPE_TEST_CASE); 323 testSet.add(child); 333 const xe::TestNode* child = group.getChild(childNdx); local 334 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; 335 const string fullPath = child->getFullPath(); 342 removeMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter) [all...] |
/external/e2fsprogs/lib/ss/ |
help.c | 44 int fd, child; local 106 switch (child = fork()) { 116 while (wait(NULL) != child) {
|
/external/elfutils/tests/ |
dwarf-die-addr-die.c | 69 Dwarf_Die child; local 70 if (dwarf_child (die, &child) == 0) 71 res |= check_die (&child);
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
method_params.cc | 88 for (grpc_json* sub_field = field->child; sub_field != nullptr; 127 for (grpc_json* element = sub_field->child; element != nullptr; 154 for (grpc_json* field = json->child; field != nullptr; field = field->next) {
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
ContextPropagationToken.cs | 28 /// Token for propagating context of server side handlers to child calls. 31 /// token of the server call to the child call. 123 /// <param name="propagateDeadline">If set to <c>true</c> parent call's deadline will be propagated to the child call.</param> 124 /// <param name="propagateCancellation">If set to <c>true</c> parent call's cancellation token will be propagated to the child call.</param> 131 /// <summary><c>true</c> if parent call's deadline should be propagated to the child call.</summary> 137 /// <summary><c>true</c> if parent call's cancellation token should be propagated to the child call.</summary>
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLCoverageWriter.java | 33 * Creates a child element with a name attribute. 38 * name of the child tag 41 * @return child element 48 final XMLElement child = parent.element(tagname); local 49 child.attr("name", name); 50 return child;
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
NewHdfParser.java | 79 Data child = data.createChild(name); local 85 child.setAttribute(key, value); 88 return child; 532 Data child = handleNodeCreation(state.currentNode, element); local 534 state.currentNode = child; 543 Data child = handleNodeCreation(state.currentNode, element); local 544 child.setValue(value); 548 Data child = handleNodeCreation(state.currentNode, element); local 551 child.setValue(src.getValue()); 553 child.setValue("") 558 Data child = handleNodeCreation(state.currentNode, element); local [all...] |
/external/libchrome/base/files/ |
file_path_watcher_linux.cc | 117 // watch that fired, |child| indicates what has changed, and is relative to 124 const FilePath::StringType& child, 131 const FilePath::StringType& child, 330 FilePath::StringType child(event->len ? event->name : FILE_PATH_LITERAL("")); 337 child, 354 const FilePath::StringType& child, 366 weak_ptr_, fired_watch, child, created, deleted, is_dir)); 371 const FilePath::StringType& child, 390 child.empty() || 391 (child == watch_entry.linkname) | [all...] |