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

1234567

/external/chromium_org/cloud_print/gcp20/prototype/
H A Dlocal_print_job.cc13 LocalPrintJob::Info::Info() : state(STATE_DRAFT), expires_in(-1) { function in class:LocalPrintJob::Info
16 LocalPrintJob::Info::~Info() {
H A Dlocal_print_job.h34 struct Info { struct in struct:LocalPrintJob
35 Info();
36 ~Info();
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
H A Dinfo.py9 def Info(manifest, bundle_names): function
/external/chromium_org/base/files/
H A Dfile.cc12 File::Info::Info() function in class:base::File::Info
18 File::Info::~Info() {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A DPrettyPatch_test.rb10 class Info class in class:PrettyPatch_test
50 description += " (" + info[Info::TITLE] + ")" unless info[Info::TITLE].nil?
57 assert_equal(info[Info::FILE], $last_prettify_file_count, "Wrong number of files changed in " + description)
58 assert_equal(info[Info::ADD], $last_prettify_part_count["add"], "Wrong number of 'add' parts in " + description)
59 assert_equal(info[Info::REMOVE], $last_prettify_part_count["remove"], "Wrong number of 'remove' parts in " + description)
60 assert_equal(info[Info::SHARED], $last_prettify_part_count["shared"], "Wrong number of 'shared' parts in " + description)
/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.cpp123 const Diagnostic &Info) {
125 DiagnosticConsumer::HandleDiagnostic(Level, Info);
128 if (MainFilename.empty() && Info.hasSourceManager()) {
129 const SourceManager &SM = Info.getSourceManager();
140 DE.DiagnosticID = Info.getID();
145 Info.FormatDiagnostic(MessageStr);
151 if (Info.getLocation().isValid() && Info.hasSourceManager()) {
152 const SourceManager &SM = Info.getSourceManager();
153 PresumedLoc PLoc = SM.getPresumedLoc(Info
122 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/chromium_org/ppapi/proxy/
H A Dinterface_proxy.h34 struct Info { struct in class:ppapi::proxy::InterfaceProxy
/external/chromium_org/third_party/skia/include/images/
H A DSkMovie.h55 struct Info { struct in class:SkMovie
62 virtual bool onGetInfo(Info*) = 0;
70 Info fInfo;
/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/skia/include/images/
H A DSkMovie.h55 struct Info { struct in class:SkMovie
62 virtual bool onGetInfo(Info*) = 0;
70 Info fInfo;
/external/chromium_org/base/win/
H A Dscoped_handle.cc16 struct Info { struct in namespace:__anon4093
22 typedef std::map<HANDLE, Info> HandleMap;
40 Info handle_info = { owner, pc1, pc2, thread_id };
41 std::pair<HANDLE, Info> item(handle, handle_info);
44 Info other = result.first->second;
58 Info other = i->second;
/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/lib/AST/
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 DCommentCommandTraits.cpp35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
36 return Info;
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
42 return Info;
95 CommandInfo *Info = new (Allocator) CommandInfo(); local
96 Info->Name = Name;
97 Info->ID = NextID++;
99 RegisteredCommands.push_back(Info);
101 return Info;
106 CommandInfo *Info local
112 CommandInfo *Info = createCommandInfoWithName(CommandName); local
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkImage.h61 typedef SkImageInfo Info; typedef in class:SkImage
63 static SkImage* NewRasterCopy(const Info&, const void* pixels, size_t rowBytes);
64 static SkImage* NewRasterData(const Info&, SkData* pixels, size_t rowBytes);
/external/clang/lib/CodeGen/
H A DTargetInfo.h44 ABIInfo *Info; member in class:clang::TargetCodeGenInfo
47 TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }
51 const ABIInfo& getABIInfo() const { return *Info; }
/external/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c13 } Info; typedef in typeref:struct:__anon16570
37 static void readILBM(IB *st, Info *pic) {
52 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/skia/include/core/
H A DSkImage.h61 typedef SkImageInfo Info; typedef in class:SkImage
63 static SkImage* NewRasterCopy(const Info&, const void* pixels, size_t rowBytes);
64 static SkImage* NewRasterData(const Info&, SkData* pixels, size_t rowBytes);
/external/valgrind/main/helgrind/tests/
H A Dtc19_shadowmem.c17 Info; typedef in typeref:struct:__anon28476
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/include/clang/Basic/
H A DBuiltins.h50 struct Info { struct in namespace:clang::Builtin
54 bool operator==(const Info &RHS) const {
59 bool operator!=(const Info &RHS) const { return !(*this == RHS); }
65 const Info *TSRecords;
173 const Info &GetRecord(unsigned ID) const;
176 bool BuiltinIsSupported(const Builtin::Info &BuiltinInfo,
/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/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc30 AddressInfo Info; local
31 if (!SymbolizeCode(Loc, &Info, 1) || !Info.module || !*Info.module)
34 if (!Info.file)
35 return ModuleLocation(Info.module, Info.module_offset);
37 return SourceLocation(Info.file, Info.line, Info
[all...]

Completed in 490 milliseconds

1234567