/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RBBITableBuilder.java | 145 // Appears as a cat-node, left child being the original tree, in buildForwardTable() 226 // These are non-empty leaf node types. in calcNullable() 232 // Lookahead marker node. It's a leaf, so no recursion on children. in calcNullable() 239 // The node is not a leaf. in calcNullable() 275 // These are non-empty leaf node types. in calcFirstPos() 280 // The node is not a leaf. in calcFirstPos() 318 // These are non-empty leaf node types. in calcLastPos() 323 // The node is not a leaf. in calcLastPos() 385 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) { in addRuleRootNodes() argument 386 if (node in addRuleRootNodes() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RBBITableBuilder.java | 138 // Appears as a cat-node, left child being the original tree, in buildForwardTable() 219 // These are non-empty leaf node types. in calcNullable() 225 // Lookahead marker node. It's a leaf, so no recursion on children. in calcNullable() 232 // The node is not a leaf. in calcNullable() 268 // These are non-empty leaf node types. in calcFirstPos() 273 // The node is not a leaf. in calcFirstPos() 311 // These are non-empty leaf node types. in calcLastPos() 316 // The node is not a leaf. in calcLastPos() 378 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) { in addRuleRootNodes() argument 379 if (node in addRuleRootNodes() [all...] |
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | vir_register_allocate.c | 48 node_to_temp(uint32_t node) in node_to_temp() argument 50 assert(node >= ACC_COUNT); in node_to_temp() 51 return node - ACC_COUNT; in node_to_temp() 336 /* Creates the interference node for a new temp. We use this to keep the node 344 int node = ra_add_node(c->g, choose_reg_class(c, class_bits)); in add_node() local 345 assert(node == temp + ACC_COUNT); in add_node() 347 /* We fill the node priority after we are done inserting spills */ in add_node() 348 c->nodes.info[node].class_bits = class_bits; in add_node() 349 c->nodes.info[node] in add_node() 1025 uint32_t node = temp_to_node(inst->dst.index); update_graph_and_reg_classes_for_inst() local 1171 int node = v3d_choose_spill_node(c); v3d_register_allocate() local 1183 int node = v3d_choose_spill_node(c); v3d_register_allocate() local [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | simplified-operator.h | 16 #include "src/compiler/node-properties.h" 328 // Parameter for CheckClosure node. 680 // A single FastApiCall node can represent multiple overloaded functions. 1059 // Abort if the value does not match the node's computed type after 1082 explicit constexpr SimplifiedNodeWrapperBase(Node* node) in SimplifiedNodeWrapperBase() argument 1083 : NodeWrapper(node) {} in SimplifiedNodeWrapperBase() 1085 // Valid iff this node has a context input. 1089 NodeProperties::GetContextInput(node())); in context() 1092 // Valid iff this node has exactly one effect input. 1094 DCHECK_EQ(node() in effect() 1119 FastApiCallNode(Node* node) FastApiCallNode() argument [all...] |
H A D | verifier.h | 21 // each node, etc. 36 // Verifies consistency of node inputs and uses: 37 // - node inputs should agree with the input count computed from 38 // the node's operator. 42 // - if the node has control uses, it should produce control. 43 // - if the node has effect uses, it should produce effect. 44 // - if the node has frame state uses, it must be a frame state. 45 static void VerifyNode(Node* node); 52 static void VerifyNode(Node* node) {} in VerifyNode() argument
|
/third_party/node/test/parallel/ |
H A D | test-process-exit-code.js | 44 const node = process.execPath; 49 spawn(node, [f, arg], option).on('exit', (code) => {
|
/third_party/node/src/ |
H A D | node_api_internals.h | 30 inline node::Environment* node_env() const { in node_env() 31 return node::Environment::GetCurrent(context()); in node_env()
|
H A D | node_config.cc | 3 #include "node.h" 9 namespace node { namespace 21 // has been the practice previously in node.cc. 87 } // namespace node 89 NODE_BINDING_CONTEXT_AWARE_INTERNAL(config, node::Initialize)
|
/third_party/node/test/abort/ |
H A D | test-abort-uncaught-exception.js | 7 const node = process.execPath; 12 // Refs: https://github.com/nodejs/node/issues/13258 27 const child = spawn(node, args);
|
/third_party/node/test/addons/register-signal-handler/ |
H A D | binding.cc | 2 #include <node.h> 29 node::RegisterSignalHandler(signo, Handler, reset_handler); in RegisterSignalHandler()
|
/third_party/node/test/addons/uv-handle-leak/ |
H A D | binding.cc | 1 #include <node.h> 32 uv_loop_t* loop = node::GetCurrentEventLoop(isolate); in LeakHandle()
|
/third_party/node/test/addons/worker-buffer-callback/ |
H A D | binding.cc | 1 #include <node.h> 29 node::Buffer::New( in Initialize()
|
/third_party/node/test/cctest/ |
H A D | test_node_api.cc | 28 node::Environment* env = *test_env; in TEST_F() 29 node::LoadEnvironment(env, ""); in TEST_F()
|
/third_party/ninja/src/ |
H A D | dyndep.h | 48 /// Load a dyndep file from the given node's path and update the 52 bool LoadDyndeps(Node* node, std::string* err) const; 53 bool LoadDyndeps(Node* node, DyndepFile* ddf, std::string* err) const;
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | download.js | 10 'User-Agent': `node-gyp v${gyp.version} (node ${process.version})`,
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-node.cc | 5 #include "src/interpreter/bytecode-node.h" 50 std::ostream& operator<<(std::ostream& os, const BytecodeNode& node) { in operator <<() argument 51 node.Print(os); in operator <<()
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-compilation-unit.cc | 45 void MaglevCompilationUnit::RegisterNodeInGraphLabeller(const Node* node) { in RegisterNodeInGraphLabeller() argument 47 graph_labeller()->RegisterNode(node); in RegisterNodeInGraphLabeller()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_throw.py | 26 def transform(self, node, results): 31 self.cannot_convert(node, "Python 3 does not support string exceptions")
|
H A D | fix_isinstance.py | 29 def transform(self, node, results): 52 node.changed()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | AnalyzeCallDepth.h | 39 FunctionNode(TIntermAggregate *node); 49 TIntermAggregate *const node; member in AnalyzeCallDepth::FunctionNode
|
/third_party/skia/src/pdf/ |
H A D | SkPDFTag.h | 26 // tree node, via a page entry in the parent tree. Returns -1 if no 30 // tree node, via the struct parent tree. Returns -1 if no struct parent 38 // An entry in a map from a node ID to an indirect reference to its 39 // corresponding structure element node. 45 static void Copy(SkPDF::StructureElementNode& node, 50 SkPDFTagNode* node,
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/mutation_finders/ |
H A D | replace_identifiers.cc | 39 for (const auto* node : program.SemNodes().Objects()) { in FindMutations() 40 const auto* sem_variable = tint::As<sem::Variable>(node); in FindMutations()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_print.c | 1433 if (&src->node != exec_list_get_head(&instr->srcs)) in print_phi_instr() 1446 if (&entry->node != exec_list_get_head(&instr->entries)) in print_parallel_copy_instr() 1508 static void print_cf_node(nir_cf_node *node, print_state *state, 1554 foreach_list_typed(nir_cf_node, node, node, &if_stmt->then_list) { in print_if() 1555 print_cf_node(node, state, tabs + 1); in print_if() 1559 foreach_list_typed(nir_cf_node, node, node, &if_stmt->else_list) { in print_if() 1560 print_cf_node(node, state, tabs + 1); in print_if() 1573 foreach_list_typed(nir_cf_node, node, nod in print_loop() 1581 print_cf_node(nir_cf_node *node, print_state *state, unsigned int tabs) print_cf_node() argument [all...] |
/third_party/python/PC/ |
H A D | launcher2.c | 1325 addEnvironmentInfo(EnvironmentInfo **root, EnvironmentInfo* parent, EnvironmentInfo *node) in addEnvironmentInfo() argument 1329 *root = node; in addEnvironmentInfo() 1330 node->parent = parent; in addEnvironmentInfo() 1334 switch (_compareCompany(node->company, r->company)) { in addEnvironmentInfo() 1336 return addEnvironmentInfo(&r->prev, r, node); in addEnvironmentInfo() 1338 return addEnvironmentInfo(&r->next, r, node); in addEnvironmentInfo() 1343 switch (_compareTag(node->tag, r->tag)) { in addEnvironmentInfo() 1345 return addEnvironmentInfo(&r->next, r, node); in addEnvironmentInfo() 1347 return addEnvironmentInfo(&r->prev, r, node); in addEnvironmentInfo() 1352 if (node in addEnvironmentInfo() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 2408 Node* AddNode(std::unique_ptr<Node> node) final { 2409 Node* result = node.get(); 2410 nodes_.push_back(std::move(node)); 2444 EmbedderGraphImpl::Node* node) { in EmbedderGraphNodeName() 2445 const char* prefix = node->NamePrefix(); in EmbedderGraphNodeName() 2446 return prefix ? names->GetFormatted("%s %s", prefix, node->Name()) in EmbedderGraphNodeName() 2447 : names->GetCopy(node->Name()); in EmbedderGraphNodeName() 2450 HeapEntry::Type EmbedderGraphNodeType(EmbedderGraphImpl::Node* node) { in EmbedderGraphNodeType() argument 2451 return node->IsRootNode() ? HeapEntry::kSynthetic : HeapEntry::kNative; in EmbedderGraphNodeType() 2454 // Merges the names of an embedder node an 2443 EmbedderGraphNodeName(StringsStorage* names, EmbedderGraphImpl::Node* node) EmbedderGraphNodeName() argument 2468 EmbedderGraphImpl::Node* node = AllocateEntry() local 2527 EntryForEmbedderGraphNode( EmbedderGraphImpl::Node* node) EntryForEmbedderGraphNode() argument 2995 SerializeTraceNode(AllocationTraceNode* node) SerializeTraceNode() argument [all...] |