Searched defs:Range (Results 126 - 150 of 165) sorted by relevance

1234567

/external/llvm/lib/MC/
H A DMCDwarf.cpp46 // Range of line offsets in a special line info. opcode.
1155 // Range Start
1158 if (VerboseAsm) Streamer.AddComment("Range Start");
1161 // Range Length
1162 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin, local
1164 if (VerboseAsm) Streamer.AddComment("Range Length");
1165 Streamer.EmitAbsValue(Range, 4);
1349 // PC Range
1350 const MCExpr *Range = MakeStartMinusEndExpr(streamer, *frame.Begin, local
1353 streamer.EmitAbsValue(Range, PCSiz
[all...]
/external/llvm/lib/Support/
H A DYAMLParser.cpp128 StringRef Range; member in struct:llvm::yaml::Token
198 static UTF8Decoded decodeUTF8(StringRef Range) { argument
199 StringRef::iterator Position= Range.begin();
200 StringRef::iterator End = Range.end();
611 OS << T.Range << "\n";
953 , i->Tok->Range.begin());
973 T.Range = StringRef(Current, 1);
992 T.Range = StringRef(Current, 0);
1037 T.Range = StringRef(Current, EI.second);
1056 T.Range
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp448 ProfileBitsInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range) { argument
449 ID.AddInteger(Range.size());
451 for (ArrayRef<Init *>::iterator i = Range.begin(),
452 iend = Range.end();
458 BitsInit *BitsInit::get(ArrayRef<Init *> Range) { argument
463 ProfileBitsInit(ID, Range);
469 BitsInit *I = new BitsInit(Range);
598 ArrayRef<Init *> Range,
600 ID.AddInteger(Range.size());
603 for (ArrayRef<Init *>::iterator i = Range
597 ProfileListInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range, RecTy *EltTy) argument
610 get(ArrayRef<Init *> Range, RecTy *EltTy) argument
[all...]
/external/clang/include/clang/Lex/
H A DPreprocessor.h302 SourceRange Range; member in struct:clang::Preprocessor::MacroExpandsInfo
303 MacroExpandsInfo(Token Tok, MacroDirective *MD, SourceRange Range) argument
304 : Tok(Tok), MD(MD), Range(Range) { }
/external/clang/include/clang/Parse/
H A DParser.h1118 SourceRange Range; member in struct:clang::Parser::ParsedAttributesWithRange
1384 TypeResult ParseTrailingReturnType(SourceRange &Range);
1836 TypeResult ParseTypeName(SourceRange *Range = 0,
1868 if (!attrs.Range.isValid()) return;
1957 VersionTuple ParseVersionTuple(SourceRange &Range);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.h504 SourceRange Range; member in class:clang::CodeGen::CodeGenFunction::LexicalScope
513 explicit LexicalScope(CodeGenFunction &CGF, SourceRange Range) argument
514 : RunCleanupsScope(CGF), Range(Range), ParentScope(CGF.CurLexicalScope) {
517 DI->EmitLexicalBlockStart(CGF.Builder, Range.getBegin());
529 DI->EmitLexicalBlockEnd(CGF.Builder, Range.getEnd());
/external/clang/lib/Parse/
H A DParseDecl.cpp39 TypeResult Parser::ParseTypeName(SourceRange *Range, argument
59 if (Range)
60 *Range = DeclaratorInfo.getSourceRange();
692 VersionTuple Parser::ParseVersionTuple(SourceRange &Range) { argument
693 Range = Tok.getLocation();
1302 CharSourceRange AttrRange(SourceRange(Loc, Attrs.Range.getEnd()), true);
1310 Diag(attrs.Range.getBegin(), diag::err_attributes_not_allowed)
1311 << attrs.Range;
2398 attrs.Range = SourceRange();
3557 SourceRange Range; local
5091 SourceRange Range; local
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1840 SourceRange Range = ReadSourceRange(F, Record, Idx); local
H A DASTReaderStmt.cpp921 E->Range = ReadSourceRange(Record, Idx);
932 E->Range = ReadSourceRange(Record, Idx);
952 E->Range = ReadSourceRange(Record, Idx);
1177 E->Range = Reader.ReadSourceRange(F, Record, Idx);
1349 E->Range = ReadSourceRange(Record, Idx);
1482 SourceRange Range = ReadSourceRange(Record, Idx); local
1483 E->Loc = Range.getBegin();
1484 E->RParen = Range.getEnd();
1492 SourceRange Range = ReadSourceRange(Record, Idx); local
1493 E->Loc = Range
1514 SourceRange Range = ReadSourceRange(Record, Idx); local
1524 SourceRange Range = ReadSourceRange(Record, Idx); local
[all...]
/external/llvm/include/llvm/TableGen/
H A DRecord.h654 BitsInit(ArrayRef<Init *> Range)
655 : Init(IK_BitsInit), Bits(Range.begin(), Range.end()) {}
664 static BitsInit *get(ArrayRef<Init *> Range);
786 explicit ListInit(ArrayRef<Init *> Range, RecTy *EltTy) argument
788 Values(Range.begin(), Range.end()) {}
797 static ListInit *get(ArrayRef<Init *> Range, RecTy *EltTy);
1527 void addSuperClass(Record *R, SMRange Range) { argument
1530 SuperClassRanges.push_back(Range);
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp619 ImportedEntityMap::const_iterator> Range = std::equal_range( local
623 if (Children.empty() && Range.first == Range.second)
626 for (ImportedEntityMap::const_iterator i = Range.first; i != Range.second;
/external/chromium_org/v8/src/
H A Djsregexp.h270 static inline CharacterRange Range(uc16 from, uc16 to) { function in class:v8::internal::CharacterRange
/external/clang/include/clang/AST/
H A DDeclCXX.h162 SourceRange Range; member in class:clang::CXXBaseSpecifier
198 : Range(R), EllipsisLoc(EllipsisLoc), Virtual(V), BaseOfClass(BC),
202 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
203 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
204 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
H A DExpr.h1771 SourceRange Range; member in class:clang::StringLiteral::OffsetOfExpr::OffsetOfNode
1788 : Range(LBracketLoc, RBracketLoc), Data((Index << 2) | Array) { }
1793 : Range(DotLoc.isValid()? DotLoc : NameLoc, NameLoc),
1799 : Range(DotLoc.isValid()? DotLoc : NameLoc, NameLoc),
1804 : Range(), Data(reinterpret_cast<uintptr_t>(Base) | OffsetOfNode::Base) {}
1840 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
1841 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
1842 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
/external/clang/lib/AST/
H A DASTImporter.cpp1885 SourceRange Range = From.getCXXOperatorNameRange(); local
1886 To.setCXXOperatorNameRange(Importer.Import(Range));
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2029 static bool checkAvailabilityAttr(Sema &S, SourceRange Range, argument
2043 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2051 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2059 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2086 AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range, argument
2155 Diag(Range.getBegin(), diag::note_overridden_method);
2158 Diag(Range.getBegin(), diag::note_previous_attribute);
2200 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
2203 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2265 VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range, argument
2272 mergeTypeVisibilityAttr(Decl *D, SourceRange Range, TypeVisibilityAttr::VisibilityType Vis, unsigned AttrSpellingListIndex) argument
2776 mergeSectionAttr(Decl *D, SourceRange Range, StringRef Name, unsigned AttrSpellingListIndex) argument
3070 mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format, int FormatIdx, int FirstArg, unsigned AttrSpellingListIndex) argument
[all...]
H A DSemaExprCXX.cpp1086 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, argument
1098 SourceLocation StartLoc = Range.getBegin();
1486 Range, DirectInitRange));
1542 bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, argument
1583 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, Record,
1593 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, TUDecl,
1605 if (FindAllocationOverload(StartLoc, Range, NewName, AllocArgs, TUDecl,
1738 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
1748 bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, argument
1759 << Name << Range;
1826 << Name << Range; local
1834 << Name << Range; local
[all...]
H A DSemaStmt.cpp1835 Stmt *First, SourceLocation ColonLoc, Expr *Range,
1837 if (!First || !Range)
1840 if (ObjCEnumerationCollection(Range))
1841 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
1853 if (DiagnoseUnexpandedParameterPack(Range, UPPC_Expression))
1857 SourceLocation RangeLoc = Range->getLocStart();
1861 if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLoc,
1969 Expr *Range,
1978 AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
1994 << Range
1834 ActOnCXXForRangeStmt(SourceLocation ForLoc, Stmt *First, SourceLocation ColonLoc, Expr *Range, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
1965 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
2042 Expr *Range = RangeVar->getInit(); local
2123 Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get(); local
[all...]
H A DSemaType.cpp2390 SourceRange Range = FTI.ArgInfo[0].Param->getSourceRange(); local
2391 SourceLocation B = Range.getBegin();
2392 SourceLocation E = S.PP.getLocForEndOfToken(Range.getEnd());
2926 DynamicExceptionRanges.push_back(FTI.Exceptions[I].Range);
H A DSemaTemplate.cpp2491 SourceRange Range(TemplateNameLoc, RAngleLoc);
2493 << Name << Range; local
3458 SourceRange Range; local
3460 Range = SourceRange(TemplateArgs[NumParams].getLocation(),
3467 << Template << Range; local
5985 SourceRange Range(TemplateNameLoc, RAngleLoc);
5987 << Context.getTypeDeclType(Specialization) << Range;
6004 SourceRange Range(TemplateNameLoc, RAngleLoc);
6006 << Context.getTypeDeclType(Specialization) << Range;
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2084 SourceRange Range) {
2085 SourceRange ExpansionRange(SM.getExpansionLoc(Range.getBegin()),
2086 SM.getExpansionRange(Range.getEnd()).second);
2083 getLengthOnSingleLine(SourceManager &SM, SourceRange Range) argument
/external/v8/src/
H A Dhydrogen-instructions.h223 class Range: public ZoneObject { class in namespace:v8::internal
225 Range() function in class:v8::internal::Range
231 Range(int32_t lower, int32_t upper) function in class:v8::internal::Range
239 Range* next() const { return next_; }
240 Range* CopyClearLower(Zone* zone) const {
241 return new(zone) Range(kMinInt, upper_);
243 Range* CopyClearUpper(Zone* zone) const {
244 return new(zone) Range(lower_, kMaxInt);
246 Range* Copy(Zone* zone) const {
247 Range* resul
[all...]
H A Djsregexp.h278 static inline CharacterRange Range(uc16 from, uc16 to) { function in class:v8::internal::CharacterRange
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_usb.h893 } Range; member in union:_HIDP_VALUE_CAPS::__anon11497
/external/clang/include/clang/Sema/
H A DDeclSpec.h67 SourceRange Range; member in class:clang::CXXScopeSpec
71 const SourceRange &getRange() const { return Range; }
72 void setRange(const SourceRange &R) { Range = R; }
73 void setBeginLoc(SourceLocation Loc) { Range.setBegin(Loc); }
74 void setEndLoc(SourceLocation Loc) { Range.setEnd(Loc); }
75 SourceLocation getBeginLoc() const { return Range.getBegin(); }
76 SourceLocation getEndLoc() const { return Range.getEnd(); }
176 bool isEmpty() const { return !Range.isValid(); }
188 if (Range.getBegin().isInvalid())
189 Range
372 SourceRange Range; member in class:clang::DeclSpec
1119 SourceRange Range; member in struct:clang::DeclaratorChunk::TypeAndRange
1516 SourceRange Range; member in class:clang::Declarator
2139 SourceRange Range; member in struct:LambdaIntroducer
[all...]

Completed in 706 milliseconds

1234567