HomeSort by relevance Sort by last modified time
    Searched refs:Identifier (Results 301 - 325 of 354) sorted by null

<<1112131415

  /external/clang/lib/Parse/
ParseTemplate.cpp 416 case tok::identifier:
448 // If we have an identifier, skip over it.
449 if (Next.getKind() == tok::identifier)
472 /// 'class' ...[opt] identifier[opt]
473 /// 'class' identifier[opt] '=' type-id
474 /// 'typename' ...[opt] identifier[opt]
475 /// 'typename' identifier[opt] '=' type-id
477 /// 'class' ...[opt] identifier[opt]
478 /// 'template' '<' template-parameter-list '>' 'class' identifier[opt]
498 /// 'class' ...[opt][C++0x] identifier[opt
530 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok
627 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 317 case DeclarationName::Identifier:
836 // The identifier in a sizeof... expression shall name a parameter pack.
    [all...]
SemaTemplate.cpp 153 TName = DeclarationName(Name.Identifier);
162 TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
296 // immediately followed by an identifier followed by a <, the
297 // identifier must be looked up to determine whether the < is the
299 // The identifier is first looked up in the class of the object
300 // expression. If the identifier is not found, it is then looked up in
770 // If the template template parameter has a name, then link the identifier
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmParser.cpp 401 if (Tok.isNot(AsmToken::Identifier))
485 Parser.Lex(); // Eat identifier token.
    [all...]
  /external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/
GeneratedJavaParser.java 492 case IDENTIFIER:
562 case IDENTIFIER:
609 case IDENTIFIER:
795 case IDENTIFIER:
842 case IDENTIFIER:
904 case IDENTIFIER:
949 case IDENTIFIER:
1081 case IDENTIFIER:
1139 case IDENTIFIER:
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrSyntax.g 277 INT8 *Identifier = NULL;
285 "," ID:StringIdentifier << Identifier = ID->getText(); >>
290 << mCVfrVarDataTypeDB.Pack (LineNum, PackAction, Identifier, PackNumber); >>
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 521 // FIXME: Check whether this identifier was referenced anywhere in the
754 /// \brief Whether the given identifier is "interesting".
796 // Build the IdentifierInfo and link the identifier ID with it.
808 // the reader that we've finished loading this identifier.
    [all...]
ASTWriterStmt.cpp 391 nk == DeclarationName::Identifier) {
512 case OffsetOfNode::Identifier:
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp     [all...]
  /external/v8/src/asmjs/
asm-parser.cc 439 FAIL("Expected identifier");
890 FAIL("Expected local variable identifier");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
InfClassObject.py 507 print UserExtension.UserID, UserExtension.Identifier, UserExtension.Content
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h 726 } Identifier;
    [all...]
  /external/v8/src/parsing/
parser.h 121 typedef const AstRawString* Identifier;
571 V8_INLINE bool IsEval(const AstRawString* identifier) const {
572 return identifier == ast_value_factory()->eval_string();
575 V8_INLINE bool IsArguments(const AstRawString* identifier) const {
576 return identifier == ast_value_factory()->arguments_string();
579 V8_INLINE bool IsEvalOrArguments(const AstRawString* identifier) const {
580 return IsEval(identifier) || IsArguments(identifier);
610 V8_INLINE bool IsConstructor(const AstRawString* identifier) const {
611 return identifier == ast_value_factory()->constructor_string()
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrUtilityLib.cpp 918 IN CHAR8 *Identifier,
933 if ((pNew = new SVfrPackStackNode (Identifier, mPackAlign)) == NULL) {
948 if (pNode->Match (Identifier) == TRUE) {
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 805 case OffsetOfNode::Identifier:
    [all...]
ASTImporter.cpp     [all...]
MicrosoftMangle.cpp 383 // C++ functions and those whose names are not a simple identifier need
767 case DeclarationName::Identifier: {
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 562 // If pointing inside a macro definition, check if the token is an identifier
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
COFFObjectFile.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h 687 /// identifier, declared or undeclared
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp 186 TD(Identifier, 260, "identifier")
418 // '-'/'+' and following identifier - can be a predefined constant like:
421 // Collect all chars of an identifier:
693 // 1) A float constants (nan, inf, pi, etc) is a kind of identifier.
    [all...]

Completed in 4442 milliseconds

<<1112131415