/third_party/typescript_eslint/packages/types/src/ |
D | ts-estree.ts | 26 export interface BaseNode { interface 56 interface BaseToken extends BaseNode { 571 interface BinaryExpressionBase extends BaseNode { 577 interface CallExpressionBase extends BaseNode { 584 interface ClassDeclarationBase extends BaseNode { 597 interface ClassPropertyBase extends BaseNode { 621 interface FunctionDeclarationBase extends BaseNode { 633 interface FunctionSignatureBase extends BaseNode { 639 interface LiteralBase extends BaseNode { 649 interface MemberExpressionBase extends BaseNode { [all …]
|
/third_party/grpc/src/core/lib/channel/ |
D | channelz_registry.cc | 58 void ChannelzRegistry::InternalRegister(BaseNode* node) { in InternalRegister() 71 RefCountedPtr<BaseNode> ChannelzRegistry::InternalGet(intptr_t uuid) { in InternalGet() 80 BaseNode* node = it->second; in InternalGet() 86 absl::InlinedVector<RefCountedPtr<BaseNode>, 10> top_level_channels; in InternalGetTopChannels() 87 RefCountedPtr<BaseNode> node_after_pagination_limit; in InternalGetTopChannels() 92 BaseNode* node = it->second; in InternalGetTopChannels() 93 RefCountedPtr<BaseNode> node_ref; in InternalGetTopChannels() 94 if (node->type() == BaseNode::EntityType::kTopLevelChannel && in InternalGetTopChannels() 125 absl::InlinedVector<RefCountedPtr<BaseNode>, 10> servers; in InternalGetServers() 126 RefCountedPtr<BaseNode> node_after_pagination_limit; in InternalGetServers() [all …]
|
D | channelz_registry.h | 46 static void Register(BaseNode* node) { in Register() 50 static RefCountedPtr<BaseNode> Get(intptr_t uuid) { in Get() 75 void InternalRegister(BaseNode* node); 83 RefCountedPtr<BaseNode> InternalGet(intptr_t uuid); 92 std::map<intptr_t, BaseNode*> node_map_;
|
D | channelz.h | 72 class BaseNode : public RefCounted<BaseNode> { 86 BaseNode(EntityType type, std::string name); 89 ~BaseNode() override; 173 class ChannelNode : public BaseNode { 190 RefCountedPtr<BaseNode> referenced_channel) { in AddTraceEventWithReference() 230 class ServerNode : public BaseNode { 255 RefCountedPtr<BaseNode> referenced_channel) { in AddTraceEventWithReference() 272 class SocketNode : public BaseNode { 311 class ListenSocketNode : public BaseNode {
|
D | channel_trace.h | 37 class BaseNode; variable 76 RefCountedPtr<BaseNode> referenced_entity); 91 RefCountedPtr<BaseNode> referenced_entity_); 115 RefCountedPtr<BaseNode> referenced_entity_;
|
D | channel_trace.cc | 45 RefCountedPtr<BaseNode> referenced_entity) in TraceEvent() 122 RefCountedPtr<BaseNode> referenced_entity) { in AddTraceEventWithReference() 159 (referenced_entity_->type() == BaseNode::EntityType::kTopLevelChannel || in RenderTraceEvent() 160 referenced_entity_->type() == BaseNode::EntityType::kInternalChannel); in RenderTraceEvent()
|
D | channelz.cc | 57 BaseNode::BaseNode(EntityType type, std::string name) in BaseNode() function in grpc_core::channelz::BaseNode 63 BaseNode::~BaseNode() { ChannelzRegistry::Unregister(uuid_); } in ~BaseNode() 65 std::string BaseNode::RenderJsonString() { in RenderJsonString() 143 : BaseNode(is_internal_channel ? EntityType::kInternalChannel in ChannelNode() 254 : BaseNode(EntityType::kServer, ""), trace_(channel_tracer_max_nodes) {} in ServerNode() 380 : BaseNode(EntityType::kSocket, std::move(name)), in SocketNode() 480 : BaseNode(EntityType::kSocket, std::move(name)), in ListenSocketNode()
|
/third_party/grpc/test/core/channel/ |
D | channelz_registry_test.cc | 54 static RefCountedPtr<BaseNode> CreateTestNode() { in CreateTestNode() 59 RefCountedPtr<BaseNode> channelz_channel = CreateTestNode(); in TEST_F() 68 std::vector<RefCountedPtr<BaseNode>> channelz_channels; in TEST_F() 80 RefCountedPtr<BaseNode> channelz_channel = CreateTestNode(); in TEST_F() 81 RefCountedPtr<BaseNode> retrieved = in TEST_F() 87 std::vector<RefCountedPtr<BaseNode>> channelz_channels; in TEST_F() 90 RefCountedPtr<BaseNode> retrieved = in TEST_F() 97 RefCountedPtr<BaseNode> channelz_channel = CreateTestNode(); in TEST_F() 99 RefCountedPtr<BaseNode> nonexistant = in TEST_F() 102 RefCountedPtr<BaseNode> retrieved = in TEST_F() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Verifier.h | 62 MDNode *getFieldNodeFromTBAABaseNode(Instruction &I, const MDNode *BaseNode, 65 const MDNode *BaseNode, 68 const MDNode *BaseNode,
|
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint-scope/ |
D | Options.ts | 17 visitChildren<T extends TSESTree.BaseNode | undefined | null>(node?: T): void; 18 visit<T extends TSESTree.BaseNode | undefined | null>(node?: T): void;
|
D | PatternVisitor.ts | 30 rootPattern: TSESTree.BaseNode,
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | client_channel_channelz.h | 34 class SubchannelNode : public BaseNode { 55 RefCountedPtr<BaseNode> referenced_channel) { in AddTraceEventWithReference()
|
D | client_channel_channelz.cc | 35 : BaseNode(EntityType::kSubchannel, target_address), in SubchannelNode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Verifier.cpp | 5191 TBAAVerifier::verifyTBAABaseNode(Instruction &I, const MDNode *BaseNode, in verifyTBAABaseNode() argument 5193 if (BaseNode->getNumOperands() < 2) { in verifyTBAABaseNode() 5194 CheckFailed("Base nodes must have at least two operands", &I, BaseNode); in verifyTBAABaseNode() 5198 auto Itr = TBAABaseNodes.find(BaseNode); in verifyTBAABaseNode() 5202 auto Result = verifyTBAABaseNodeImpl(I, BaseNode, IsNewFormat); in verifyTBAABaseNode() 5203 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); in verifyTBAABaseNode() 5210 TBAAVerifier::verifyTBAABaseNodeImpl(Instruction &I, const MDNode *BaseNode, in verifyTBAABaseNodeImpl() argument 5214 if (BaseNode->getNumOperands() == 2) { in verifyTBAABaseNodeImpl() 5216 return isValidScalarTBAANode(BaseNode) in verifyTBAABaseNodeImpl() 5222 if (BaseNode->getNumOperands() % 3 != 0) { in verifyTBAABaseNodeImpl() [all …]
|
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint/ |
D | Rule.ts | 245 type RuleFunction<T extends TSESTree.BaseNode = never> = (node: T) => void;
|
/third_party/typescript_eslint/packages/typescript-estree/src/ |
D | convert.ts | 202 result: TSESTree.BaseNode | null, 632 result: TSESTree.BaseNode,
|