Home
last modified time | relevance | path

Searched refs:node (Results 1301 - 1325 of 2502) sorted by relevance

1...<<51525354555657585960>>...101

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dinput.py188 def CheckNode(node, keypath):
189 if isinstance(node, ast.Dict):
191 for key, value in zip(node.keys, node.values):
204 kp = list(keypath) # Make a copy of the list for descending this node.
208 elif isinstance(node, ast.List):
210 for index, child in enumerate(node.elts):
215 elif isinstance(node, ast.Str):
216 return node.s
219 "Unknown AST node a
[all...]
/third_party/node/deps/v8/src/torque/
H A Dast.h119 static bool IsInstanceOf(AstNode* node);
125 static T* cast(AstNode* node) { \
126 DCHECK_EQ(node->kind, kKind); \
127 return static_cast<T*>(node); \
129 static T* DynamicCast(AstNode* node) { \
130 if (!node) return nullptr; \
131 if (node->kind != kKind) return nullptr; \
132 return static_cast<T*>(node); \
137 static T* cast(AstNode* node) { \
138 DCHECK(AstNodeClassCheck::IsInstanceOf<T>(node)); \
217 AddNode(std::unique_ptr<T> node) AddNode() argument
1256 IsInstanceOf(AstNode* node) IsInstanceOf() argument
[all...]
/third_party/selinux/libsepol/src/
H A Dservices.c918 avtab_ptr_t node; in context_struct_compute_av() local
952 for (node = in context_struct_compute_av()
954 node != NULL; in context_struct_compute_av()
955 node = in context_struct_compute_av()
956 avtab_search_node_next(node, avkey.specified)) { in context_struct_compute_av()
957 if (node->key.specified == AVTAB_ALLOWED) in context_struct_compute_av()
958 avd->allowed |= node->datum.data; in context_struct_compute_av()
959 else if (node->key.specified == in context_struct_compute_av()
961 avd->auditallow |= node->datum.data; in context_struct_compute_av()
962 else if (node in context_struct_compute_av()
1339 avtab_ptr_t node; sepol_compute_sid() local
[all...]
H A Dkernel_to_conf.c1021 struct ebitmap_node *node; in cats_ebitmap_len() local
1026 ebitmap_for_each_positive_bit(cats, node, i) { in cats_ebitmap_len()
1048 struct ebitmap_node *node; in cats_ebitmap_to_str() local
1067 ebitmap_for_each_positive_bit(cats, node, i) { in cats_ebitmap_to_str()
1172 struct ebitmap_node *node; in write_polcap_rules_to_conf() local
1182 ebitmap_for_each_positive_bit(&pdb->policycaps, node, i) { in write_polcap_rules_to_conf()
1644 struct ebitmap_node *node; in write_type_permissive_rules_to_conf() local
1653 ebitmap_for_each_positive_bit(&pdb->permissive_map, node, i) { in write_type_permissive_rules_to_conf()
1860 struct ebitmap_node *node; in map_filename_trans_to_str() local
1870 ebitmap_for_each_positive_bit(&datum->stypes, node, bi in map_filename_trans_to_str()
2032 avtab_ptr_t node; write_cond_av_list_to_conf() local
2701 struct ocontext *node; write_selinux_node_rules_to_conf() local
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dwasm-compiler.cc36 #include "src/compiler/node-matchers.h"
37 #include "src/compiler/node-origin-table.h"
38 #include "src/compiler/node-properties.h"
203 void MergeControlToEnd(Node* node) { in MergeControlToEnd() argument
204 NodeProperties::MergeControlToEnd(graph(), mcgraph()->common(), node); in MergeControlToEnd()
224 // Returns the Branch node. Does not change control().
552 // Initialize instance node. in Start()
563 // We need an instance node anyway, because FromJS() needs to pass it to in Start()
622 bool WasmGraphBuilder::ThrowsException(Node* node, Node** if_success, in ThrowsException() argument
624 if (node in ThrowsException()
1498 Node* node = SetControl(graph()->NewNode(mcgraph()->common()->TrapIf(trap_id), TrapIfTrue() local
1506 Node* node = SetControl(graph()->NewNode( TrapIfFalse() local
1512 TrapIfEq32(wasm::TrapReason reason, Node* node, int32_t val, wasm::WasmCodePosition position) TrapIfEq32() argument
1525 ZeroCheck32(wasm::TrapReason reason, Node* node, wasm::WasmCodePosition position) ZeroCheck32() argument
1531 TrapIfEq64(wasm::TrapReason reason, Node* node, int64_t val, wasm::WasmCodePosition position) TrapIfEq64() argument
1540 ZeroCheck64(wasm::TrapReason reason, Node* node, wasm::WasmCodePosition position) ZeroCheck64() argument
1587 MaskShiftCount32(Node* node) MaskShiftCount32() argument
1602 MaskShiftCount64(Node* node) MaskShiftCount64() argument
1634 BuildChangeEndiannessStore( Node* node, MachineRepresentation mem_rep, wasm::ValueType wasmtype) BuildChangeEndiannessStore() argument
1751 BuildChangeEndiannessLoad(Node* node, MachineType memtype, wasm::ValueType wasmtype) BuildChangeEndiannessLoad() argument
3434 Invert(Node* node) Invert() argument
3453 BuildChangeUint32ToUintPtr(Node* node) BuildChangeUint32ToUintPtr() argument
3613 SetEffect(Node* node) SetEffect() argument
3618 SetControl(Node* node) SetControl() argument
3619 SetEffectControl(effect(), node); SetControl() local
4344 PrintDebugName(Node* node) PrintDebugName() argument
4429 SetSourcePosition(Node* node, wasm::WasmCodePosition position) SetSourcePosition() argument
[all...]
/third_party/eudev/src/ata_id/
H A Data_id.c426 const char *node = NULL; in main() local
462 node = argv[optind]; in main()
463 if (node == NULL) { in main()
464 log_error("no node specified"); in main()
468 fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC); in main()
470 log_error("unable to open '%s'", node); in main()
505 log_debug_errno(errno, "HDIO_GET_IDENTITY failed for '%s': %m", node); in main()
/third_party/mesa3d/src/compiler/glsl/
H A Dlink_varyings.cpp593 foreach_in_list(ir_instruction, node, sh->ir) { in validate_first_and_last_interface_explicit_locations()
594 ir_variable *const var = node->as_variable(); in validate_first_and_last_interface_explicit_locations()
663 foreach_in_list(ir_instruction, node, producer->ir) { in cross_validate_outputs_to_inputs()
664 ir_variable *const var = node->as_variable(); in cross_validate_outputs_to_inputs()
693 foreach_in_list(ir_instruction, node, consumer->ir) { in cross_validate_outputs_to_inputs()
694 ir_variable *const input = node->as_variable(); in cross_validate_outputs_to_inputs()
/third_party/node/src/
H A Dheap_utils.cc8 // Copied from https://github.com/nodejs/node/blob/b07dc4d19fdbc15b4f76557dc45b3ce3a43ad0c3/src/util.cc#L36-L41.
41 namespace node { namespace
93 Node* AddNode(std::unique_ptr<Node> node) override {
94 Node* n = node.get();
95 nodes_.emplace(std::move(node));
464 } // namespace node
466 NODE_BINDING_CONTEXT_AWARE_INTERNAL(heap_utils, node::heap::Initialize)
468 node::heap::RegisterExternalReferences)
H A Dnode_sockaddr.h9 #include "node.h"
19 namespace node { namespace
285 void MemoryInfo(node::MemoryTracker* tracker) const override;
301 void MemoryInfo(node::MemoryTracker* tracker) const override;
317 void MemoryInfo(node::MemoryTracker* tracker) const override;
322 void MemoryInfo(node::MemoryTracker* tracker) const override;
366 void MemoryInfo(node::MemoryTracker* tracker) const override;
401 } // namespace node
H A Dprocess_wrap.cc31 namespace node { namespace
185 node::Utf8Value file(env->isolate(), file_v); in Spawn()
199 node::Utf8Value arg(env->isolate(), in Spawn()
210 node::Utf8Value cwd(env->isolate(), in Spawn()
225 node::Utf8Value pair(env->isolate(), in Spawn()
322 } // namespace node
324 NODE_BINDING_CONTEXT_AWARE_INTERNAL(process_wrap, node::ProcessWrap::Initialize)
H A Dnode_env_var.cc10 namespace node { namespace
126 node::Utf8Value key(isolate, property); in Get()
143 node::Utf8Value key(isolate, property); in Set()
144 node::Utf8Value val(isolate, value); in Set()
176 node::Utf8Value key(isolate, property); in Query()
183 node::Utf8Value key(isolate, property); in Delete()
488 } // namespace node
490 NODE_BINDING_EXTERNAL_REFERENCE(env_var, node::RegisterEnvVarExternalReferences)
H A Dnode_serdes.cc8 namespace node { namespace
230 return node::THROW_ERR_INVALID_ARG_TYPE( in TransferArrayBuffer()
277 return node::THROW_ERR_INVALID_ARG_TYPE( in WriteRawBytes()
333 return node::THROW_ERR_INVALID_ARG_TYPE( in New()
378 return node::THROW_ERR_INVALID_ARG_TYPE( in TransferArrayBuffer()
541 } // namespace node
543 NODE_BINDING_CONTEXT_AWARE_INTERNAL(serdes, node::serdes::Initialize)
545 node::serdes::RegisterExternalReferences)
/third_party/node/deps/cares/src/lib/
H A Dares__socket.c254 ares__llist_node_t *node; in ares__open_connection() local
365 node = ares__llist_insert_last(server->connections, conn); in ares__open_connection()
367 node = ares__llist_insert_first(server->connections, conn); in ares__open_connection()
369 if (node == NULL) { in ares__open_connection()
377 * node object */ in ares__open_connection()
378 if (!ares__htable_asvp_insert(channel->connnode_by_socket, s, node)) { in ares__open_connection()
381 ares__llist_node_claim(node); in ares__open_connection()
H A Dares_sysconfig_files.c223 ares__llist_node_t *node = NULL; in ares__parse_sortlist() local
249 for (node = ares__llist_node_first(list); node != NULL; in ares__parse_sortlist()
250 node = ares__llist_node_next(node)) { in ares__parse_sortlist()
251 ares__buf_t *entry = ares__llist_node_val(node); in ares__parse_sortlist()
H A Dares_dns_name.c90 ares__llist_node_t *node; in ares__nameoffset_find() local
97 for (node = ares__llist_node_first(list); node != NULL; in ares__nameoffset_find()
98 node = ares__llist_node_next(node)) { in ares__nameoffset_find()
99 const ares_nameoffset_t *val = ares__llist_node_val(node); in ares__nameoffset_find()
/third_party/f2fs-tools/include/
H A Df2fs_fs.h680 CURSEG_HOT_NODE, /* direct node blocks of directory files */
681 CURSEG_WARM_NODE, /* direct node blocks of normal files */
682 CURSEG_COLD_NODE, /* indirect node blocks */
722 /* This flag is used by node and meta inodes, and by recovery */
826 __le32 node_ino; /* node inode number */
879 /* information of current node segments */
890 __le32 next_free_nid; /* Next free node number */
978 #define MAX_INLINE_DATA(node) (sizeof(__le32) * \
980 get_inline_xattr_addrs(&node->i) - \
981 get_extra_isize(node)
[all...]
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
H A DStableAPI.java156 System.out.println("read " + setC.size() + " C. Setting node:"); in run()
304 // System.err.println("Gotta node: " + name); in setVer()
453 static String getAttr(Node node, String attrName) { in getAttr() argument
454 if (node.getAttributes() == null && node.getNodeType() == 3) { in getAttr()
455 // return "(text node 3)"; in getAttr()
456 return "(Node: " + node.toString() + " )"; in getAttr()
458 // node.getFirstChild().getAttributes().getNamedItem(attrName).getNodeValue(); in getAttr()
462 return node.getAttributes().getNamedItem(attrName).getNodeValue(); in getAttr()
464 if (node in getAttr()
879 nodeToSet(Node node) nodeToSet() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineLibraryTests.cpp127 for (const auto& node: pipelineTreeConfiguration) in getTestName()
129 if (level != node.parentIndex) in getTestName()
131 DE_ASSERT(level < node.parentIndex); in getTestName()
135 level = node.parentIndex; in getTestName()
138 result += de::toString(node.shaderCount); in getTestName()
884 for (deInt32 nodeNdx = nodeNdxLast; nodeNdx >= 0 ; --nodeNdx) // We expect only backward node reference, thus build pipielines from end is safe in runTest()
886 RuntimePipelineTreeNode& node = runtimePipelineTreeConfiguration[nodeNdx]; in runTest() local
889 const VkGraphicsPipelineLibraryFlagsEXT subtreeGraphicsPipelineLibraryFlags = node.subtreeGraphicsPipelineLibraryFlags | node.graphicsPipelineLibraryFlags; in runTest()
911 const VkRenderPass renderPassHandle = getRenderPass(node in runTest()
1148 RuntimePipelineTreeNode& node = runtimePipelineTreeConfiguration[nodeNdx]; iterate() local
1180 const RuntimePipelineTreeNode& node = runtimePipelineTreeConfiguration[nodeNdx]; iterate() local
[all...]
/third_party/lame/libmp3lame/
H A Dutil.c77 FrameDataNode *node = gfc->tag_spec.v2_head; in free_id3tag() local
79 void *p = node->dsc.ptr.b; in free_id3tag()
80 void *q = node->txt.ptr.b; in free_id3tag()
81 void *r = node; in free_id3tag()
82 node = node->nxt; in free_id3tag()
86 } while (node != 0); in free_id3tag()
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
H A Dsegment.c237 * get_node() -- fetch numa node id of page at vaddr
242 int rc, node; in get_node() local
244 rc = get_mempolicy(&node, NULL, 0, vaddr, MPOL_F_NODE | MPOL_F_ADDR); in get_node()
248 return node; in get_node()
870 * segment_location() - report node location of specified range of segment
943 int node; in segment_location() local
945 node = get_node(apage); in segment_location()
946 if (node < 0) { in segment_location()
948 "failed to get node for segment %s, offset 0x%x\n", in segment_location()
960 printf(" %3d", node); in segment_location()
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dprofile-generator.h382 void EnqueueNode(const ProfileNode* node) { pending_nodes_.push_back(node); } in EnqueueNode() argument
407 ProfileNode* node; member
604 void SerializePositionTicks(const v8::CpuProfileNode* node, int lineCount);
605 void SerializeCallFrame(const v8::CpuProfileNode* node);
606 void SerializeChildren(const v8::CpuProfileNode* node, int childrenCount);
607 void SerializeNode(const v8::CpuProfileNode* node);
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDescriptorMessageInfoFactory.java159 StronglyConnectedComponent component; // null if the node is still on stack.
184 // Unexplored node in dfs()
200 Node node = stack.pop(); in dfs()
201 node.component = component; in dfs()
202 component.messages.add(node.descriptor); in dfs()
203 if (node == result) { in dfs()
233 Node node = nodeCache.get(field.getMessageType()); in analyze()
234 if (node.component != component) { in analyze()
235 if (node.component.needsIsInitializedCheck) { in analyze()
/third_party/python/Lib/
H A Dinspect.py1030 def visit_FunctionDef(self, node):
1031 self.stack.append(node.name)
1033 self.generic_visit(node)
1039 def visit_ClassDef(self, node):
1040 self.stack.append(node.name)
1043 if node.decorator_list:
1044 line_number = node.decorator_list[0].lineno
1046 line_number = node.lineno
1051 self.generic_visit(node)
2207 def parse_name(node)
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_shader_calls.c638 for (nir_cf_node *node = resume_instr->block->cf_node.parent; in duplicate_loop_bodies()
639 node->type != nir_cf_node_function; node = node->parent) { in duplicate_loop_bodies()
640 if (node->type != nir_cf_node_loop) in duplicate_loop_bodies()
643 nir_loop *loop = nir_cf_node_as_loop(node); in duplicate_loop_bodies()
700 cf_node_contains_block(nir_cf_node *node, nir_block *block) in cf_node_contains_block() argument
703 if (n == node) in cf_node_contains_block()
829 foreach_list_typed_safe(nir_cf_node, child, node, child_list) { in flatten_resume_if_ladder()
951 unreachable("Unsupported CF node typ in flatten_resume_if_ladder()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_shader.cpp257 node* shader::create_node(node_type nt, node_subtype nst, node_flags flags) { in create_node()
258 node *n = new (pool.allocate(sizeof(node))) node(nt, nst, flags); in create_node()
353 (*I)->~node(); in ~shader()
449 void shader::simplify_dep_rep(node* dr) { in simplify_dep_rep()
528 node *k = *I; in create_bbs()
590 sched_queue_id shader::get_queue_id(node* n) { in get_queue_id()
613 void shader_stats::collect(node *n) { in collect()

Completed in 38 milliseconds

1...<<51525354555657585960>>...101