Home
last modified time | relevance | path

Searched refs:DotLoc (Results 1 – 6 of 6) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDesignator.h48 SourceLocation DotLoc; member
82 return FieldInfo.DotLoc; in getDotLoc()
127 static Designator getField(const IdentifierInfo *II, SourceLocation DotLoc, in getField() argument
133 D.FieldInfo.DotLoc = DotLoc; in getField()
/netbsd/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseInit.cpp200 SourceLocation DotLoc = ConsumeToken(); in ParseInitializerWithPotentialDesignator() local
213 Desig.AddDesignator(Designator::getField(Tok.getIdentifierInfo(), DotLoc, in ParseInitializerWithPotentialDesignator()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h2311 OffsetOfNode(SourceLocation DotLoc, FieldDecl *Field, SourceLocation NameLoc) in OffsetOfNode() argument
2312 : Range(DotLoc.isValid() ? DotLoc : NameLoc, NameLoc), in OffsetOfNode()
2316 OffsetOfNode(SourceLocation DotLoc, IdentifierInfo *Name, in OffsetOfNode() argument
2318 : Range(DotLoc.isValid() ? DotLoc : NameLoc, NameLoc), in OffsetOfNode()
4999 SourceLocation DotLoc; member
5045 Designator(const IdentifierInfo *FieldName, SourceLocation DotLoc, in Designator() argument
5050 Field.DotLoc = DotLoc; in Designator()
5097 return Field.DotLoc; in getDotLoc()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1529 SMLoc DotLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Dot); in ParseInstruction() local
1533 PPCOperand::CreateTokenWithStringCopy(DotStr, DotLoc, isPPC64())); in ParseInstruction()
1535 Operands.push_back(PPCOperand::CreateToken(DotStr, DotLoc, isPPC64())); in ParseInstruction()
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1216 SourceLocation DotLoc = readSourceLocation(); in VisitDesignatedInitExpr() local
1218 Designators.push_back(Designator(Field->getIdentifier(), DotLoc, in VisitDesignatedInitExpr()
1226 SourceLocation DotLoc = readSourceLocation(); in VisitDesignatedInitExpr() local
1228 Designators.push_back(Designator(Name, DotLoc, FieldLoc)); in VisitDesignatedInitExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp4294 StartLoc = GNUSyntax ? First.Field.FieldLoc : First.Field.DotLoc; in getBeginLoc()