Searched refs:getRawEncoding (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/include/clang/Sema/
H A DDesignator.h131 D.FieldInfo.DotLoc = DotLoc.getRawEncoding();
132 D.FieldInfo.NameLoc = NameLoc.getRawEncoding();
141 D.ArrayInfo.LBracketLoc = LBracketLoc.getRawEncoding();
154 D.ArrayRangeInfo.LBracketLoc = LBracketLoc.getRawEncoding();
155 D.ArrayRangeInfo.EllipsisLoc = EllipsisLoc.getRawEncoding();
164 ArrayInfo.RBracketLoc = RBracketLoc.getRawEncoding();
166 ArrayRangeInfo.RBracketLoc = RBracketLoc.getRawEncoding();
H A DInitialization.h175 LocAndNRVO.Location = Loc.getRawEncoding();
194 Capture.Location = Loc.getRawEncoding();
H A DDeclSpec.h1454 I.Ptr.ConstQualLoc = ConstQualLoc.getRawEncoding();
1455 I.Ptr.VolatileQualLoc = VolatileQualLoc.getRawEncoding();
1456 I.Ptr.RestrictQualLoc = RestrictQualLoc.getRawEncoding();
1457 I.Ptr.AtomicQualLoc = AtomicQualLoc.getRawEncoding();
/external/clang/tools/libclang/
H A DCXSourceLocation.h36 Loc.getRawEncoding() };
/external/clang/include/clang/Basic/
H A DSourceLocation.h146 unsigned getRawEncoding() const { return ID; } function
151 /// \see getRawEncoding.
166 return (void*)(uintptr_t)getRawEncoding();
181 return LHS.getRawEncoding() == RHS.getRawEncoding();
189 return LHS.getRawEncoding() < RHS.getRawEncoding();
338 return LHS.getRawEncoding() == RHS.getRawEncoding() &&
H A DSourceManager.h268 X.IncludeLoc = IL.getRawEncoding();
358 X.SpellingLoc = SpellingLoc.getRawEncoding();
359 X.ExpansionLocStart = Start.getRawEncoding();
360 X.ExpansionLocEnd = End.getRawEncoding();
/external/clang/include/clang/Lex/
H A DToken.h132 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); }
144 UintData = L.getRawEncoding();
174 Loc = SourceLocation().getRawEncoding();
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp88 unsigned RawLoc = Loc.getRawEncoding();
210 if (!MigrateCtx.RemovedAttrSet.count(Attr.Loc.getRawEncoding()))
269 MigrateCtx.AtPropsWeak.insert(AtLoc.getRawEncoding());
295 MigrateCtx.RemovedAttrSet.insert(Loc.getRawEncoding());
312 unsigned RawAt = AtLoc.getRawEncoding();
H A DTransProperties.cpp82 unsigned RawLoc = Prop->getAtLoc().getRawEncoding();
117 unsigned rawAtLoc = propD->getAtLoc().getRawEncoding();
339 return MigrateCtx.AtPropsWeak.count(atLoc.getRawEncoding());
/external/clang/include/clang/Serialization/
H A DASTBitCodes.h175 : Begin(R.getBegin().getRawEncoding()),
176 End(R.getEnd().getRawEncoding()),
189 : Loc(Loc.getRawEncoding()),
192 Loc = L.getRawEncoding();
H A DASTWriter.h325 : Kind(Kind), Loc(Loc.getRawEncoding()) {}
393 : ID(ID), Offset(Offset), Loc(Loc.getRawEncoding()) {}
/external/clang/lib/Sema/
H A DDeclSpec.cpp191 I.Fun.LParenLoc = LParenLoc.getRawEncoding();
192 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding();
193 I.Fun.RParenLoc = RParenLoc.getRawEncoding();
199 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
200 I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding();
201 I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding();
202 I.Fun.RestrictQualifierLoc = RestrictQualifierLoc.getRawEncoding();
203 I.Fun.MutableLoc = MutableLoc.getRawEncoding();
205 I.Fun.ExceptionSpecLocBeg = ESpecRange.getBegin().getRawEncoding();
206 I.Fun.ExceptionSpecLocEnd = ESpecRange.getEnd().getRawEncoding();
[all...]
H A DSemaLambda.cpp383 = IntroducerRange.getBegin().getRawEncoding();
385 = IntroducerRange.getEnd().getRawEncoding();
/external/clang/include/clang/AST/
H A DDeclarationName.h494 LocInfo.CXXOperatorName.BeginOpNameLoc = R.getBegin().getRawEncoding();
495 LocInfo.CXXOperatorName.EndOpNameLoc = R.getEnd().getRawEncoding();
511 LocInfo.CXXLiteralOperatorName.OpNameLoc = Loc.getRawEncoding();
H A DDependentDiagnostic.h49 DD->AccessData.Loc = Loc.getRawEncoding();
H A DTemplateBase.h392 Template.TemplateNameLoc = TemplateNameLoc.getRawEncoding();
393 Template.EllipsisLoc = EllipsisLoc.getRawEncoding();
H A DExpr.h4117 Field.DotLoc = DotLoc.getRawEncoding();
4118 Field.FieldLoc = FieldLoc.getRawEncoding();
4126 ArrayOrRange.LBracketLoc = LBracketLoc.getRawEncoding();
4127 ArrayOrRange.EllipsisLoc = SourceLocation().getRawEncoding();
4128 ArrayOrRange.RBracketLoc = RBracketLoc.getRawEncoding();
4136 ArrayOrRange.LBracketLoc = LBracketLoc.getRawEncoding();
4137 ArrayOrRange.EllipsisLoc = EllipsisLoc.getRawEncoding();
4138 ArrayOrRange.RBracketLoc = RBracketLoc.getRawEncoding();
/external/clang/lib/AST/
H A DDeclarationName.cpp461 CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
462 CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
465 CXXLiteralOperatorName.OpNameLoc = SourceLocation().getRawEncoding();
H A DNestedNameSpecifier.cpp462 unsigned Raw = Loc.getRawEncoding();
H A DDeclObjC.cpp1318 Brackets.Begin = lAngleLoc.getRawEncoding();
1319 Brackets.End = rAngleLoc.getRawEncoding();
/external/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp152 LastInclusionLocation.getRawEncoding(), IncludedFile(Id, NewFileType)));
187 std::make_pair(HashLoc.getRawEncoding(), Imported));
198 const auto I = FileIncludes.find(Loc.getRawEncoding());
208 const auto I = ModuleIncludes.find(Loc.getRawEncoding());
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp1062 ID.AddInteger(Range.getBegin().getRawEncoding());
1063 ID.AddInteger(Range.getEnd().getRawEncoding());
1064 ID.AddInteger(Loc.getRawEncoding());
1076 ID.AddInteger(I->getBegin().getRawEncoding());
1077 ID.AddInteger(I->getEnd().getRawEncoding());
/external/clang/lib/Edit/
H A DEditedSource.cpp48 auto &ArgNames = ExpansionToArgMap[ExpLoc.getRawEncoding()];
72 auto I = ExpansionToArgMap.find(ExpLoc.getRawEncoding());
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1716 CGF.Int32Ty, Str->getLocStart().getRawEncoding())));
1731 llvm::ConstantInt::get(CGF.Int32Ty, LineLoc.getRawEncoding())));
2032 auto Loc = llvm::ConstantInt::get(Int32Ty, S.getAsmLoc().getRawEncoding());
/external/clang/lib/Serialization/
H A DASTReader.cpp2733 ReadSourceLocation(F, Record, I).getRawEncoding());
2777 getRawEncoding());
2939 ReadSourceLocation(F, Record, Idx).getRawEncoding());
2958 ReadSourceLocation(F, Record, I).getRawEncoding());
3136 ReadSourceLocation(F, Record, I).getRawEncoding());
3145 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding());
3591 M->ImportLoc.getRawEncoding());
7673 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
7675 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
7680 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
[all...]

Completed in 500 milliseconds

12