Home
last modified time | relevance | path

Searched refs:identifier (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DFeature.pm30 my ($class, $identifier, $spec) = @_;
33 identifier => $identifier,
47 sub identifier { $_[0]{identifier} } subroutine
/openbsd-src/gnu/llvm/clang/lib/Format/
H A DQualifierAlignmentFixer.cpp229 tok::identifier)) { in analyzeRight()
252 } else if (Tok->startsSequence(QualifierType, tok::identifier, in analyzeRight()
258 } else if (Tok->startsSequence(QualifierType, tok::identifier, in analyzeRight()
266 tok::identifier, TT_TemplateOpener)) { in analyzeRight()
272 } else if (Tok->startsSequence(QualifierType, tok::identifier) || in analyzeRight()
274 tok::identifier)) { in analyzeRight()
284 while (Next && Next->isOneOf(tok::identifier, tok::coloncolon) && in analyzeRight()
293 tok::identifier)) { in analyzeRight()
337 } else if (Tok->startsSequence(tok::identifier, QualifierType)) { in analyzeLeft()
338 if (Tok->Next->Next && Tok->Next->Next->isOneOf(tok::identifier, tok::star, in analyzeLeft()
[all …]
H A DTokenAnnotator.cpp86 if (AttrTok->startsSequence(tok::kw_using, tok::identifier, tok::colon)) in isCppAttribute()
88 if (AttrTok->isNot(tok::identifier)) in isCppAttribute()
95 AttrTok->startsSequence(tok::identifier, tok::identifier) || in isCppAttribute()
96 AttrTok->startsSequence(tok::r_paren, tok::identifier)) { in isCppAttribute()
297 (Line.startsWith(Keywords.kw_type, tok::identifier) || in parseParens()
299 tok::identifier))) { in parseParens()
312 (OpeningParen.Previous->endsSequence(tok::identifier, in parseParens()
331 !OpeningParen.Previous->is(tok::identifier))) { in parseParens()
400 if (PrevPrev && PrevPrev->is(tok::identifier) && in parseParens()
402 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { in parseParens()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dparse-scan.y202 %type <node> ID_TK identifier name simple_name qualified_name type
285 identifier /* Default rule */
289 name DOT_TK identifier
295 identifier:
368 modifiers CLASS_TK identifier super interfaces
374 | CLASS_TK identifier super interfaces
441 identifier
474 identifier OP_TK CP_TK
480 | identifier OP_TK formal_parameter_list CP_TK
607 INTERFACE_TK identifier
[all …]
/openbsd-src/gnu/llvm/libcxx/
H A D.clang-tidy21 readability-identifier-naming,
37 - key: readability-identifier-naming.GetConfigPerFile
39 - key: readability-identifier-naming.ParameterCase
41 - key: readability-identifier-naming.ParameterPrefix
43 - key: readability-identifier-naming.PrivateMemberCase
45 - key: readability-identifier-naming.PrivateMemberPrefix
47 - key: readability-identifier-naming.PrivateMemberSuffix
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/
H A DCmd.pm82 my $identifier = shift;
85 if ($identifier =~ /::/ || $identifier !~ /[^\w_]/) {
93 my $tm = $sources{$source}->($identifier);
97 die "Unable to find typemap for '$identifier': "
/openbsd-src/regress/sys/netinet/ipsec/
H A Dipsec.conf356 bundle identifier
362 bundle identifier
368 bundle identifier
373 bundle identifier
379 bundle identifier
385 bundle identifier
432 bundle identifier
438 bundle identifier
444 bundle identifier
449 bundle identifier
[all …]
/openbsd-src/gnu/llvm/lld/
H A D.clang-tidy3 - key: readability-identifier-naming.MemberCase
5 - key: readability-identifier-naming.ParameterCase
7 - key: readability-identifier-naming.VariableCase
/openbsd-src/gnu/llvm/llvm/utils/split-file/
H A D.clang-tidy3 - key: readability-identifier-naming.MemberCase
5 - key: readability-identifier-naming.ParameterCase
7 - key: readability-identifier-naming.VariableCase
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseHLSL.cpp56 if (!Tok.is(tok::identifier)) { in ParseHLSLBuffer()
57 Diag(Tok, diag::err_expected) << tok::identifier; in ParseHLSLBuffer()
131 else if (Tok.is(tok::identifier)) in ParseHLSLSemantics()
152 if (!Tok.is(tok::identifier)) { in ParseHLSLSemantics()
153 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLSemantics()
168 if (!Tok.is(tok::identifier)) { in ParseHLSLSemantics()
169 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLSemantics()
H A DParseTentative.cpp65 case tok::identifier: { in isCXXDeclarationStatement()
75 case tok::identifier: { in isCXXDeclarationStatement()
237 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier()
967 if (Tok.is(tok::identifier)) in TryParseOperatorId()
1060 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) || in TryParseDeclarator()
1061 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) || in TryParseDeclarator()
1072 } else if (Tok.is(tok::identifier)) { in TryParseDeclarator()
1160 tok::identifier, tok::comma); in TentativeParseCCC()
1306 tok::identifier, in isCXXDeclarationSpecifier()
1325 case tok::identifier: { in isCXXDeclarationSpecifier()
[all …]
H A DParseInit.cpp53 case tok::identifier: in MayBeDesignationStart()
67 case tok::identifier: // designation: identifier ':' in MayBeDesignationStart()
167 if (Tok.is(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
208 if (Tok.isNot(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
253 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super && in ParseInitializerWithPotentialDesignator()
284 } else if (getLangOpts().ObjC && Tok.is(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
H A DParseDecl.cpp325 assert(Tok.is(tok::identifier) && "expected an identifier"); in ParseIdentifierLoc()
375 Tok.setKind(tok::identifier); in ParseAttributeArgsCommon()
378 if (Tok.is(tok::identifier)) { in ParseAttributeArgsCommon()
421 Tok.setKind(tok::identifier); in ParseAttributeArgsCommon()
424 if (Tok.is(tok::identifier)) { in ParseAttributeArgsCommon()
628 if (!Tok.is(tok::identifier)) { in ParseMicrosoftDeclSpecArgs()
685 if (!Tok.is(tok::identifier)) { in ParseMicrosoftDeclSpecArgs()
771 if (!IsString && Tok.getKind() != tok::identifier && in ParseMicrosoftDeclSpecs()
1116 if (Tok.isNot(tok::identifier)) { in ParseAvailabilityAttribute()
1157 if (Tok.isNot(tok::identifier)) { in ParseAvailabilityAttribute()
[all …]
/openbsd-src/share/snmp/
H A DSNMPv2-CONF.txt109 -- identifier must start with uppercase letter
110 identifier ModuleIdentifier
169 NamedBit ::= identifier "(" number ")" -- number is nonnegative
221 -- identifier must start with uppercase letter
222 identifier ModuleIdentifier
276 NamedBit ::= identifier "(" number ")" -- number is nonnegative
316 BitName ::= identifier
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dmangle.c1047 write_source_name (identifier) in write_source_name() argument
1048 tree identifier; in write_source_name()
1050 MANGLE_TRACE_TREE ("source-name", identifier);
1054 if (IDENTIFIER_TEMPLATE (identifier))
1055 identifier = IDENTIFIER_TEMPLATE (identifier);
1057 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1058 write_identifier (IDENTIFIER_POINTER (identifier));
1261 write_identifier (identifier) in write_identifier() argument
1262 const char *identifier; in write_identifier()
1264 MANGLE_TRACE ("identifier", identifier);
[all …]
/openbsd-src/gnu/gcc/gcc/cp/
H A Dmangle.c1147 write_source_name (tree identifier) in write_source_name() argument
1149 MANGLE_TRACE_TREE ("source-name", identifier); in write_source_name()
1153 if (IDENTIFIER_TEMPLATE (identifier)) in write_source_name()
1154 identifier = IDENTIFIER_TEMPLATE (identifier); in write_source_name()
1156 write_unsigned_number (IDENTIFIER_LENGTH (identifier)); in write_source_name()
1157 write_identifier (IDENTIFIER_POINTER (identifier)); in write_source_name()
1353 write_identifier (const char *identifier) in write_identifier() argument
1355 MANGLE_TRACE ("identifier", identifier); in write_identifier()
1356 write_string (identifier); in write_identifier()
2109 if (operator_name_info[i].identifier == member) in write_expression()
[all …]
H A Dparser.c4780 tree identifier = NULL_TREE; in cp_parser_parenthesized_expression_list() local
4805 identifier = token->u.value; in cp_parser_parenthesized_expression_list()
4867 if (identifier) in cp_parser_parenthesized_expression_list()
4868 expression_list = tree_cons (NULL_TREE, identifier, expression_list); in cp_parser_parenthesized_expression_list()
5092 tree identifier; in cp_parser_unary_expression() local
5097 identifier = cp_parser_identifier (parser); in cp_parser_unary_expression()
5099 return finish_label_address_expr (identifier); in cp_parser_unary_expression()
8656 tree identifier; in cp_parser_type_parameter() local
8662 identifier = cp_parser_identifier (parser); in cp_parser_type_parameter()
8664 identifier = NULL_TREE; in cp_parser_type_parameter()
[all …]
/openbsd-src/gnu/llvm/clang/
H A D.clang-tidy1 # Note that the readability-identifier-naming check is disabled, there are too
4 Checks: '-readability-identifier-naming'
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp46 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in BuiltinTypeDeclBuilder()
92 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in addMemberVariable()
132 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier); in lookupBuiltinFunction()
253 IdentifierInfo &II = AST.Idents.get("Idx", tok::TokenKind::identifier); in addArraySubscriptOperator()
334 &AST.Idents.get(Name, tok::TokenKind::identifier), /* Typename */ false, in addTypeParameter()
383 IdentifierInfo &HLSL = AST.Idents.get("hlsl", tok::TokenKind::identifier); in InitializeSema()
421 &AST.Idents.get("element", tok::TokenKind::identifier), false, false); in defineHLSLVectorAlias()
428 &AST.Idents.get("element_count", tok::TokenKind::identifier), AST.IntTy, in defineHLSLVectorAlias()
440 IdentifierInfo &II = AST.Idents.get("vector", tok::TokenKind::identifier); in defineHLSLVectorAlias()
/openbsd-src/regress/usr.bin/mandoc/roff/cond/
H A Dregister.out_ascii10 tab after identifier: myreg is defined
12 escape sequence after identifier: -myreg is defined
H A Dstring.out_ascii18 identifier and tab: mystr is defined
20 escape sequence after identifier: -mystr is defined
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-parse.in187 %type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist
269 /* List of all the attributes applying to the identifier currently being
321 an identifier to an ObjC class, even if a class with that name
472 identifier:
531 | ANDAND identifier
733 | primary '.' identifier
742 | primary POINTSAT identifier
901 a typedef name is an identifier to redeclare (_ts or _nots).
1498 identifier
1543 | identifier ':'
[all …]
/openbsd-src/usr.bin/ssh/
H A DPROTOCOL.agent9 particular SSH session identifier as derived from the initial key
19 string session identifier
24 identifier' is the exchange hash derived from the initial key
26 identifier using the private hostkey, as sent in the final
33 a duplicate session identifier, or any attempt to bind a connection
/openbsd-src/gnu/llvm/libcxx/lib/abi/
H A DCMakeLists.txt2 # This function generates a "unique" identifier based on various properties
4 # in that identifier, so that we can store ABI information and associate it
7 # Right now, this is done by using the ABI identifier as the filename containing
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticLexKinds.td64 def ext_dollar_in_identifier : Extension<"'$' in identifier">,
65 InGroup<DiagGroup<"dollar-in-identifier-extension">>;
125 "character <U+%0> not allowed %select{in|at the start of}1 an identifier">;
130 "treating Unicode character <U+%0> as an identifier character rather than "
133 "identifier contains Unicode character <U+%0> that is invisible in "
136 "mathematical notation character <U+%0> in an identifier is a Clang extension">,
137 InGroup<DiagGroup<"mathematical-notation-identifier-extension">>;
166 "treating as '\\' followed by identifier">, InGroup<Unicode>;
171 "treating as '\\' '%0' '{' identifier">, InGroup<Unicode>;
177 "treating as '\\' followed by identifier">, InGroup<Unicode>;
[all …]

12345678910>>...18