Searched defs:Info (Results 1 - 25 of 109) sorted by relevance

12345

/external/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp23 const Diagnostic &Info) {
25 DiagnosticConsumer::HandleDiagnostic(Level, Info);
28 Info.FormatDiagnostic(Buf);
33 Notes.push_back(std::make_pair(Info.getLocation(), Buf.str()));
36 Warnings.push_back(std::make_pair(Info.getLocation(), Buf.str()));
40 Errors.push_back(std::make_pair(Info.getLocation(), Buf.str()));
22 HandleDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info) argument
H A DLogDiagnosticPrinter.cpp122 const Diagnostic &Info) {
124 DiagnosticConsumer::HandleDiagnostic(Level, Info);
127 if (MainFilename.empty() && Info.hasSourceManager()) {
128 const SourceManager &SM = Info.getSourceManager();
139 DE.DiagnosticID = Info.getID();
144 Info.FormatDiagnostic(MessageStr);
150 if (Info.getLocation().isValid() && Info.hasSourceManager()) {
151 const SourceManager &SM = Info.getSourceManager();
152 PresumedLoc PLoc = SM.getPresumedLoc(Info
121 HandleDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info) argument
[all...]
H A DTextDiagnosticPrinter.cpp56 const Diagnostic &Info,
61 if (Info.getID() == diag::fatal_too_many_errors) {
76 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) &&
77 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) {
82 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
92 DiagnosticIDs::getCategoryNumberForDiag(Info.getID());
109 const Diagnostic &Info) {
111 DiagnosticConsumer::HandleDiagnostic(Level, Info);
116 Info.FormatDiagnostic(OutStr);
119 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpt
54 printDiagnosticOptions(raw_ostream &OS, DiagnosticsEngine::Level Level, const Diagnostic &Info, const DiagnosticOptions &DiagOpts) argument
108 HandleDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info) argument
[all...]
/external/clang/lib/AST/
H A DCommentCommandTraits.cpp23 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
24 return Info;
29 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
30 return Info;
40 CommandInfo *Info = new (Allocator) CommandInfo(); local
41 Info->Name = Name;
42 Info->ID = NextID++;
44 RegisteredCommands.push_back(Info);
46 return Info;
H A DCommentBriefParser.cpp82 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); local
83 if (Info->IsBriefCommand) {
89 if (Info->IsReturnsCommand) {
98 if (Info->IsBlockCommand) {
H A DCommentDumper.cpp66 const CommandInfo *Info = CommandTraits::getBuiltinCommandInfo(CommandID); local
67 if (Info)
68 return Info->Name;
H A DCommentLexer.cpp363 const CommandInfo *Info = Traits.getCommandInfoOrNULL(CommandName);
364 if (!Info) {
369 if (Info->IsVerbatimBlockCommand) {
370 setupAndLexVerbatimBlock(T, TokenPtr, *BufferPtr, Info);
373 if (Info->IsVerbatimLineCommand) {
374 setupAndLexVerbatimLine(T, TokenPtr, Info);
378 T.setCommandID(Info->getID());
431 char Marker, const CommandInfo *Info) {
432 assert(Info->IsVerbatimBlockCommand);
436 VerbatimBlockEndCommandName.append(Info
312 assert(TokenPtr < CommentEnd); while (TokenPtr != CommentEnd) { switch(*TokenPtr) { case Ã: case Ã: { TokenPtr++; if (TokenPtr == CommentEnd) { formTextToken(T, TokenPtr); return; } char C = *TokenPtr; switch (C) { default: break; case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: case Ã: TokenPtr++; if (C == Ã && TokenPtr != CommentEnd && *TokenPtr == Ã) { TokenPtr++; } StringRef UnescapedText(BufferPtr + 1, TokenPtr - (BufferPtr + 1)); formTokenWithChars(T, TokenPtr, tok::text); T.setText(UnescapedText); return; } if (!isCommandNameCharacter(*TokenPtr)) { formTextToken(T, TokenPtr); return; } TokenPtr = skipCommandName(TokenPtr, CommentEnd); unsigned Length = TokenPtr - (BufferPtr + 1); if (Length == 1 && TokenPtr[-1] == Ã && TokenPtr != CommentEnd) { C = *TokenPtr; if (C == Ã || C == Ã || C == Ã || C == Ã || C == Ã) { TokenPtr++; Length++; } } const StringRef CommandName(BufferPtr + 1, Length); const CommandInfo *Info = Traits.getCommandInfoOrNULL(CommandName); if (!Info) { formTokenWithChars(T, TokenPtr, tok::unknown_command); T.setUnknownCommandName(CommandName); return; } if (Info->IsVerbatimBlockCommand) argument
[all...]
H A DTemplateBase.cpp567 const TemplateArgumentListInfo &Info) {
568 LAngleLoc = Info.getLAngleLoc();
569 RAngleLoc = Info.getRAngleLoc();
570 NumTemplateArgs = Info.size();
574 new (&ArgBuffer[i]) TemplateArgumentLoc(Info[i]);
578 const TemplateArgumentListInfo &Info,
582 LAngleLoc = Info.getLAngleLoc();
583 RAngleLoc = Info.getRAngleLoc();
584 NumTemplateArgs = Info.size();
588 Dependent = Dependent || Info[
566 initializeFrom( const TemplateArgumentListInfo &Info) argument
577 initializeFrom( const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
613 initializeFrom(SourceLocation TemplateKWLoc, const TemplateArgumentListInfo &Info) argument
621 initializeFrom(SourceLocation TemplateKWLoc, const TemplateArgumentListInfo &Info, bool &Dependent, bool &InstantiationDependent, bool &ContainsUnexpandedParameterPack) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h24 const MCInstrInfo *Info; member in class:llvm::MCInstrAnalysis
27 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {} argument
32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isConditionalBranch();
40 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
48 return Info->get(Inst.getOpcode()).isCall();
52 return Info
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.h65 void setModuleInfo(MachineModuleInfo* Info) { argument
66 MMI = Info;
/external/skia/include/images/
H A DSkMovie.h53 struct Info { struct in class:SkMovie
60 virtual bool onGetInfo(Info*) = 0;
68 Info fInfo;
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionCommon.js38 Info: "info",
/external/clang/include/clang/Frontend/
H A DChainedDiagnosticConsumer.h56 const Diagnostic &Info) {
58 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
60 Primary->HandleDiagnostic(DiagLevel, Info);
61 Secondary->HandleDiagnostic(DiagLevel, Info);
55 HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
/external/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c12 } Info; typedef in typeref:struct:__anon4001
36 static void readILBM(IB *st, Info *pic) {
51 Info pic;
/external/llvm/lib/Support/
H A DThreading.cpp81 ThreadInfo Info = { Fn, UserData }; local
96 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
/external/valgrind/main/helgrind/tests/
H A Dtc19_shadowmem.c17 Info; typedef in typeref:struct:__anon13955
25 Info* info = (Info*)infoV;
49 Info* info = (Info*)infoV;
73 Info* info = (Info*)infoV;
97 Info* info = (Info*)infoV;
139 Info inf
[all...]
/external/clang/lib/CodeGen/
H A DTargetInfo.h43 ABIInfo *Info; member in class:clang::TargetCodeGenInfo
46 TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }
50 const ABIInfo& getABIInfo() const { return *Info; }
/external/clang/include/clang/Basic/
H A DBuiltins.h48 struct Info { struct in namespace:clang::Builtin
52 bool operator==(const Info &RHS) const {
57 bool operator!=(const Info &RHS) const { return !(*this == RHS); }
63 const Info *TSRecords;
159 const Info &GetRecord(unsigned ID) const;
/external/clang/include/clang/Driver/
H A DOptTable.h33 struct Info { struct in class:clang::driver::OptTable
46 const Info *OptionInfos;
63 const Info &getInfo(OptSpecifier Opt) const {
72 OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
H A DOption.h72 const OptTable::Info *Info; member in class:clang::driver::Option
84 Option(const OptTable::Info *Info, OptSpecifier ID,
89 OptionClass getKind() const { return OptionClass(Info->Kind); }
90 StringRef getName() const { return Info->Name; }
94 unsigned getNumArgs() const { return Info->Param; }
96 bool isUnsupported() const { return Info->Flags & options::Unsupported; }
98 bool isLinkerInput() const { return Info->Flags & options::LinkerInput; }
100 bool hasNoOptAsInput() const { return Info
[all...]
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp223 struct debug_line_info const* Info) {
228 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info);
220 op_write_debug_line_info( void const* Code, size_t NumEntries, struct debug_line_info const* Info) argument
/external/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp118 const Diagnostic &Info) {
120 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
125 (DiagLevel > DiagnosticsEngine::Note && Info.getNumFixItHints())) {
126 Client->HandleDiagnostic(DiagLevel, Info);
144 for (unsigned Idx = 0, Last = Info.getNumFixItHints();
146 const FixItHint &Hint = Info.getFixItHint(Idx);
164 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable();
167 if (Info.getNumFixItHints() > 0)
168 Diag(Info.getLocation(), diag::note_fixit_in_macro);
173 Diag(Info
117 HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
[all...]
/external/regex-re2/re2/
H A Dprefilter.cc193 class Prefilter::Info { class in class:re2::Prefilter
195 Info();
196 ~Info();
198 // More constructors. They delete their Info* arguments.
199 static Info* Alt(Info* a, Info* b);
200 static Info* Concat(Info* a, Info*
240 Prefilter::Info::Info() function in class:re2::Prefilter::Info
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h104 BBInfo *Info = new (Allocator) BBInfo(BB, 0); local
105 BBMap[BB] = Info;
106 WorkList.push_back(Info);
113 Info = WorkList.pop_back_val();
115 Traits::FindPredecessorBlocks(Info->BB, &Preds);
116 Info->NumPreds = Preds.size();
117 if (Info->NumPreds == 0)
118 Info->Preds = 0;
120 Info->Preds = static_cast<BBInfo**>
121 (Allocator.Allocate(Info
233 BBInfo *Info = *I; local
287 BBInfo *Info = *I; local
323 BBInfo *Info = *I; local
342 BBInfo *Info = *I; local
[all...]
/external/llvm/lib/Object/
H A DMachOObject.cpp156 LoadCommandInfo &Info = LoadCommands[Index]; local
157 memcpy(&Info.Command, Buffer->getBuffer().data() + Offset,
160 SwapValue(Info.Command.Type);
161 SwapValue(Info.Command.Size);
163 Info.Offset = Offset;

Completed in 1083 milliseconds

12345