/third_party/skia/buildtools/checkdeps/ |
H A D | graphdeps.py | 74 different edge and node color. 76 different edge and node color. 164 # For every node, propagate its rules down to all its children. 174 # Check that this node does not explicitly override a rule from the 185 # 2) Populate a list of computed raw node attributes to be output as node 234 # Reformat the computed raw node attributes into a final DOT representation. 236 for (node, attrs) in node_props.items(): 241 nodes.append(' "%s" [%s];' % (node, ','.join(attr_strs))) 329 "or similar, with both source and target node regexp [all...] |
/third_party/rust/crates/syn/src/ |
H A D | parse.rs | 1 //! Parsing interface for parsing a token stream into a syntax tree node. 4 //! and produce a [`Result<T>`] where `T` is some syntax tree node. Underlying 95 //! obvious default way. These functions can return any syntax tree node that 458 /// Parses a syntax tree node of type `T`, advancing the position of our 464 /// Calls the given parser function to parse a syntax tree node of type `T` 1073 let (node, rest) = function(StepCursor { in step() 1079 Ok(node) in step() 1232 /// Parser that can parse Rust tokens into a particular syntax tree node. 1240 /// Parse a proc-macro2 token stream into the chosen syntax tree node. 1246 /// Parse tokens of source code into the chosen syntax tree node [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | 4xm.c | 694 int node, len = 0, bits = 0; in read_huffman_tables() local 696 for (node = j; up[node] != -1; node = up[node]) { in read_huffman_tables() 697 bits += flag[node] << len; in read_huffman_tables()
|
H A D | ylc.c | 64 Node *nodes, int node, in get_tree_codes() 69 s = nodes[node].sym; in get_tree_codes() 78 get_tree_codes(bits, lens, xlat, nodes, nodes[node].l, pfx, pl, in get_tree_codes() 81 get_tree_codes(bits, lens, xlat, nodes, nodes[node].r, pfx, pl, in get_tree_codes() 63 get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, Node *nodes, int node, uint32_t pfx, int pl, int *pos) get_tree_codes() argument
|
/third_party/gn/src/gn/ |
H A D | functions.cc | 37 // don't, this is used to verify that the given block node is null and will 61 bool EnsureNotReadingFromSameDeclareArgs(const ParseNode* node, in EnsureNotReadingFromSameDeclareArgs() argument 78 Err(node, in EnsureNotReadingFromSameDeclareArgs() 86 bool EnsureNotProcessingImport(const ParseNode* node, in EnsureNotProcessingImport() argument 91 Err(node, "Not valid from an import.", in EnsureNotProcessingImport() 100 bool EnsureNotProcessingBuildConfig(const ParseNode* node, in EnsureNotProcessingBuildConfig() argument 104 *err = Err(node, "Not valid from the build config.", in EnsureNotProcessingBuildConfig() 279 // origin node is inside our function call block. in RunAssert()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_nir_lower_tess.c | 855 nir_variable *dest = exec_node_data(nir_variable, dest_node, node); in copy_vars() 856 nir_variable *src = exec_node_data(nir_variable, src_node, node); in copy_vars() 964 exec_node_remove(&var->node); in ir3_nir_lower_gs() 965 exec_list_push_tail(&state.old_outputs, &var->node); in ir3_nir_lower_gs() 974 exec_list_push_tail(&state.new_outputs, &output->node); in ir3_nir_lower_gs() 985 exec_list_push_tail(&state.emit_outputs, &emit_output->node); in ir3_nir_lower_gs()
|
/third_party/node/src/ |
H A D | node_sockaddr.cc | 13 namespace node { namespace 525 void SocketAddressBlockList::MemoryInfo(node::MemoryTracker* tracker) const { in MemoryInfo() 530 node::MemoryTracker* tracker) const { in MemoryInfo() 535 node::MemoryTracker* tracker) const { in MemoryInfo() 541 node::MemoryTracker* tracker) const { in MemoryInfo() 887 } // namespace node 890 block_list, node::SocketAddressBlockListWrap::Initialize)
|
H A D | async_wrap.cc | 55 using TryCatchScope = node::errors::TryCatchScope; 57 namespace node { namespace 710 } // namespace node 712 NODE_BINDING_CONTEXT_AWARE_INTERNAL(async_wrap, node::AsyncWrap::Initialize) 714 node::AsyncWrap::RegisterExternalReferences)
|
H A D | node_blob.cc | 13 namespace node { namespace 497 } // namespace node 499 NODE_BINDING_CONTEXT_AWARE_INTERNAL(blob, node::Blob::Initialize) 500 NODE_BINDING_EXTERNAL_REFERENCE(blob, node::Blob::RegisterExternalReferences)
|
H A D | node_util.cc | 7 namespace node { namespace 489 } // namespace node 491 NODE_BINDING_CONTEXT_AWARE_INTERNAL(util, node::util::Initialize) 492 NODE_BINDING_EXTERNAL_REFERENCE(util, node::util::RegisterExternalReferences)
|
H A D | string_search.h | 15 namespace node { namespace 589 } // namespace node 591 namespace node { namespace 617 size_t pos = node::stringsearch::SearchString( in SearchString() 634 } // namespace node
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | symbol.c | 459 static unsigned int implicit_array_size(struct symbol *node, unsigned int count) in implicit_array_size() argument 461 struct symbol *arr_ori = node->ctype.base_type; in implicit_array_size() 462 struct symbol *arr_new = alloc_symbol(node->pos, SYM_ARRAY); in implicit_array_size() 464 struct expression *size = alloc_const_expression(node->pos, count); in implicit_array_size() 470 node->array_size = size; in implicit_array_size() 471 node->ctype.base_type = arr_new; in implicit_array_size() 482 /* SYM_NODE - figure out what the type of the node was.. */ in examine_node_type() 491 /* Pick up signedness information into the node */ in examine_node_type() 623 [SYM_NODE] = "node", in get_type_name()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir.c | 668 foreach_list_typed(nir_cf_node, node, node, list) { in emit_cf_list() 669 switch (node->type) { in emit_cf_list() 671 emit_block(c, nir_cf_node_as_block(node)); in emit_cf_list() 674 emit_if(c, nir_cf_node_as_if(node)); in emit_cf_list() 677 emit_cf_list(c, &nir_cf_node_as_loop(node)->body); in emit_cf_list() 680 compile_error(c, "Unknown NIR node type\n"); in emit_cf_list()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingPipelineLibraryTests.cpp | 116 // Each node represents a pipeline. 136 for (auto& node : m_children) in calcOffsetRecursively() 137 newOffset = node->calcOffsetRecursively(newOffset); in calcOffsetRecursively() 142 const int64_t m_parent; // Parent pipeline (-1 for the root node). 179 for (auto& node : m_nodes) in freeze() 180 node->freeze(); in freeze() 199 for (const auto& node : m_nodes) in getGroupOffsets() 200 offsets.push_back(node->getOffset()); in getGroupOffsets()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.cpp | 546 throw std::invalid_argument(expectNode ? "Empty node name" : "Missing node separator"); in parseCaseTrie() 568 throw std::invalid_argument("Illegal character in node name"); in parseCaseTrie() 1233 const CaseTreeNode* node = findNode(root, groupPath); in checkTestGroupName() local 1234 return node && node->hasChildren(); in checkTestGroupName() 1239 const CaseTreeNode* node = findNode(root, casePath); in checkTestCaseName() local 1240 return node && !node->hasChildren(); in checkTestCaseName()
|
/third_party/curl/lib/ |
H A D | multi.c | 470 multi->easylp = data; /* the new last node */ in link_easy() 473 /* first node, make prev NULL! */ in link_easy() 483 /* make the previous node point to our next */ in unlink_easy() 487 multi->easyp = data->next; /* point to first node */ in unlink_easy() 489 /* make our next point to our previous node */ in unlink_easy() 493 multi->easylp = data->prev; /* point to last node */ in unlink_easy() 596 /* increase the node-counter */ in curl_multi_add_handle() 2772 /* the current node might be unlinked in multi_runsingle(), get the next 3140 * timeout to use (skip the already expired ones) and add this node back to 3143 * The splay tree only has each sessionhandle as a single node an 3153 struct time_node *node = NULL; global() local 3560 struct time_node *node; global() local [all...] |
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | resolver.cc | 151 for (auto* node : builder_->ASTNodes().Objects()) { in ResolveInternal() 152 if (marked_.count(node) == 0) { in ResolveInternal() 153 TINT_ICE(Resolver, diagnostics_) << "AST node '" << node->TypeInfo().name in ResolveInternal() 155 << "At: " << node->source << "\n" in ResolveInternal() 156 << "Pointer: " << node; in ResolveInternal() 1163 TINT_ICE(Resolver, diagnostics_) << "Expression() did not find root node"; 2589 bool Resolver::Mark(const ast::Node* node) { 2590 if (node == nullptr) { 2594 if (marked_.emplace(node) [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-builder.cc | 222 // TODO(victorgomes): We could create an Int32Add node that receives in VisitBinarySmiOperation() 607 // The undefined constant node has to be created before the call node. in BuildCallFromRegisterList() 634 // The undefined constant node has to be created before the call node. in BuildCallFromRegisters() 794 void MaglevGraphBuilder::BuildBranchIfTrue(ValueNode* node, int true_target, in BuildBranchIfTrue() argument 796 BasicBlock* block = FinishBlock<BranchIfTrue>(next_offset(), {node}, in BuildBranchIfTrue() 801 void MaglevGraphBuilder::BuildBranchIfToBooleanTrue(ValueNode* node, in BuildBranchIfToBooleanTrue() argument 805 next_offset(), {node}, &jump_targets_[true_target], in BuildBranchIfToBooleanTrue()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ParseContext.h | 127 bool checkCanBeLValue(const TSourceLoc &line, const char *op, TIntermTyped *node); 128 void checkIsConst(TIntermTyped *node); 129 void checkIsScalarInteger(TIntermTyped *node, const char *token); 516 void markStaticReadIfSymbol(TIntermNode *node); 637 // folded node will validate the same way during subsequent parsing.
|
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
H A D | nir_to_tgsi.c | 1058 foreach_list_typed(nir_register, nir_reg, node, list) { in ntt_setup_registers() 1071 foreach_list_typed(nir_register, nir_reg, node, list) { in ntt_setup_registers() 2887 foreach_list_typed(nir_cf_node, node, node, list) { in ntt_emit_cf_list() 2888 switch (node->type) { in ntt_emit_cf_list() 2890 ntt_emit_block(c, nir_cf_node_as_block(node)); in ntt_emit_cf_list() 2894 ntt_emit_if(c, nir_cf_node_as_if(node)); in ntt_emit_cf_list() 2898 ntt_emit_loop(c, nir_cf_node_as_loop(node)); in ntt_emit_cf_list() 2994 foreach_list_typed(nir_cf_node, node, node, lis in ntt_emit_cf_list_ureg() [all...] |
/third_party/PyYAML/lib/yaml/ |
H A D | parser.py | 305 raise ParserError("while parsing a node", start_mark, 312 # raise ParserError("while parsing a node", start_mark, 365 node = 'block' 367 node = 'flow' 369 raise ParserError("while parsing a %s node" % node, start_mark, 370 "expected the node content, but found %r" % token.id,
|
/third_party/libcoap/examples/ |
H A D | oscore-interop-server.c | 434 get_context(const char *node, const char *port) { in get_context() argument 450 s = getaddrinfo(node, port, &hints, &result); in get_context() 484 fprintf(stderr, "no context available for interface '%s'\n", node); in get_context()
|
/third_party/node/test/parallel/ |
H A D | test-fs-realpath.js | 319 // /tmp/node-test-realpath-f1 -> $tmpDir/node-test-realpath-d1/foo 320 // /tmp/node-test-realpath-d1 -> $tmpDir/node-test-realpath-d2 321 // /tmp/node-test-realpath-d2/foo -> $tmpDir/node-test-realpath-f2 322 // /tmp/node-test-realpath-f2 329 const entry = tmp('node-test-realpath-f1'); 330 try { fs.unlinkSync(tmp('node-test-realpath-d2/foo')); } catch { 333 try { fs.rmdirSync(tmp('node [all...] |
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | x509_vfy.h | 621 const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node); 625 *node); variable 627 *node);
|
/third_party/skia/third_party/externals/freetype/src/type42/ |
H A D | t42objs.c | 567 FT_ListNode node; in T42_Size_Done() local 570 node = FT_List_Find( &t42face->ttf_face->sizes_list, size->ttsize ); in T42_Size_Done() 571 if ( node ) in T42_Size_Done()
|