Home
last modified time | relevance | path

Searched refs:Role (Results 1 – 25 of 201) sorted by relevance

123456789

/external/llvm-project/clang/include/clang/Tooling/Syntax/
DNodes.td52 Role<"OpenParen", Token<"l_paren">>,
53 Role<"SubExpression", Expression>,
54 Role<"CloseParen", Token<"r_paren">>,
67 Role<"LiteralToken", Token<"numeric_constant">>,
79 Role<"LiteralToken", AnyCharacterLiteral>,
87 Role<"LiteralToken", Token<"numeric_constant">>,
102 Role<"LiteralToken", AnyStringLiteral>,
110 Role<"LiteralToken", AnyToken<["kw_false","kw_true"]>>,
118 Role<"LiteralToken", Keyword<"nullptr">>,
136 Role<"LiteralToken", Keyword<"numeric_constant">>,
[all …]
DTree.h97 NodeRole getRole() const { return static_cast<NodeRole>(Role); } in getRole()
151 unsigned Role : 8; variable
248 void appendChildLowLevel(Node *Child, NodeRole Role);
250 void prependChildLowLevel(Node *Child, NodeRole Role);
DSyntax.td14 // The concrete node defines a Role sequence which identifies the children.
66 class Role<string role_, Syntax syntax_> {
81 // Children must be Role or have a default role derived from the NodeType.
82 list<Role> children;
/external/openscreen/osp/public/
Dendpoint_request_ids_unittest.cc15 EndpointRequestIds request_ids_client(EndpointRequestIds::Role::kClient); in TEST()
24 EndpointRequestIds request_ids_server(EndpointRequestIds::Role::kServer); in TEST()
34 EndpointRequestIds request_ids_client(EndpointRequestIds::Role::kClient); in TEST()
49 EndpointRequestIds request_ids_server(EndpointRequestIds::Role::kServer); in TEST()
66 EndpointRequestIds request_ids_client(EndpointRequestIds::Role::kClient); in TEST()
76 EndpointRequestIds request_ids_server(EndpointRequestIds::Role::kServer); in TEST()
Dendpoint_request_ids.h23 enum class Role { enum
28 explicit EndpointRequestIds(Role role);
36 const Role role_;
Dendpoint_request_ids.cc10 EndpointRequestIds::EndpointRequestIds(Role role) : role_(role) {} in EndpointRequestIds()
15 uint64_t request_id = next_request_id + (role_ == Role::kServer); in GetNextRequestId()
/external/llvm-project/clang/lib/Tooling/Syntax/
DMutations.cpp31 static void addAfter(syntax::Node *Anchor, syntax::Node *New, NodeRole Role) { in addAfter() argument
38 assert(Role != NodeRole::Detached); in addAfter()
40 New->setRole(Role); in addAfter()
58 New->Role = Old->Role; in replace()
DTree.cpp57 Kind(static_cast<unsigned>(Kind)), Role(0), Original(false), in Node()
67 this->Role = static_cast<unsigned>(NR); in setRole()
70 void syntax::Tree::appendChildLowLevel(Node *Child, NodeRole Role) { in appendChildLowLevel() argument
72 assert(Role != NodeRole::Detached); in appendChildLowLevel()
74 Child->setRole(Role); in appendChildLowLevel()
94 void syntax::Tree::prependChildLowLevel(Node *Child, NodeRole Role) { in prependChildLowLevel() argument
96 assert(Role != NodeRole::Detached); in prependChildLowLevel()
98 Child->setRole(Role); in prependChildLowLevel()
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
DSoapFault12.java46 public Node Role; field in SoapFault12
87 this.Role = new Node(); in parseSelf()
88 this.Role.parse(parser); in parseSelf()
121 if (this.Role != null) { in write()
123 this.Role.write(xw); in write()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/misc/
DCaseInsensitiveDeserTest.java30 static class Role { class in CaseInsensitiveDeserTest
38 public Role role;
183 mapper.configOverride(Role.class) in testCaseInsensitiveViaConfigOverride()
186 Role role = mapper.readValue in testCaseInsensitiveViaConfigOverride()
188 Role.class); in testCaseInsensitiveViaConfigOverride()
/external/apache-commons-bcel/docs/
Dclassfile.mdl334 (object Role "$UNNAMED$1"
341 (object Role "$UNNAMED$2"
350 (object Role "$UNNAMED$4"
357 (object Role "$UNNAMED$5"
366 (object Role "$UNNAMED$7"
372 (object Role "$UNNAMED$8"
381 (object Role "$UNNAMED$10"
388 (object Role "$UNNAMED$11"
397 (object Role "$UNNAMED$13"
403 (object Role "$UNNAMED$14"
[all …]
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DTokenSource.pm3 use Moose::Role;
14 no Moose::Role;
DTokenStream.pm3 use Moose::Role;
14 no Moose::Role;
DStream.pm3 use Moose::Role;
21 no Moose::Role;
DIntStream.pm3 use Moose::Role;
23 no Moose::Role;
DCharStream.pm6 use Moose::Role;
20 no Moose::Role;
DToken.pm10 use Moose::Role;
79 no Moose::Role;
/external/boringssl/src/util/fipstools/acvp/acvptool/subprocess/
Dkas.go32 Role string `json:"kasRole"` member
90 switch group.Role {
94 return nil, fmt.Errorf("unknown role %q", group.Role)
Dkasdh.go31 Role string `json:"kasRole"` member
85 switch group.Role {
89 return nil, fmt.Errorf("unknown role %q", group.Role)
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliImplementsList.java78 @Override public Role getRole() { in getRole()
79 return Role.IMPLEMENTS_LIST; in getRole()
DSmaliExtendsList.java93 @Override public Role getRole() { in getRole()
94 return Role.EXTENDS_LIST; in getRole()
/external/libtextclassifier/native/utils/
Dtokenizer.fbs37 // Role of the codepoints in the range.
39 enum Role : int {
67 role:TokenizationCodepointRange_.Role;
/external/opencensus-java/contrib/spring_sleuth_v1x/src/main/java/io/opencensus/contrib/spring/sleuth/v1x/
DOpenCensusSleuthAutoConfiguration.java35 import org.springframework.context.annotation.Role;
45 @Role(BeanDefinition.ROLE_INFRASTRUCTURE)
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/struct/
DFormatFeatureAcceptSingleTest.java61 public Role[] roles;
66 public List<Role> roles;
69 static class Role { class in FormatFeatureAcceptSingleTest
/external/clang/lib/Index/
DIndexSymbol.cpp247 #define APPLY_FOR_ROLE(Role) \ in applyForEachSymbolRole() argument
248 if (Roles & (unsigned)SymbolRole::Role) \ in applyForEachSymbolRole()
249 Fn(SymbolRole::Role) in applyForEachSymbolRole()
271 applyForEachSymbolRole(Roles, [&](SymbolRole Role) { in printSymbolRoles() argument
276 switch (Role) { in printSymbolRoles()

123456789