Searched defs:Report (Results 1 - 21 of 21) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
H A Dreport.cpp27 IMPLEMENT_JS_CLASS(CJS_Report, Report)
29 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) function in class:Report
34 Report::~Report()
39 FX_BOOL Report::writeText(OBJ_METHOD_PARAMS)
45 FX_BOOL Report::save(OBJ_METHOD_PARAMS)
/external/pdfium/fpdfsdk/include/javascript/
H A Dreport.h10 class Report : public CJS_EmbedObj class in inherits:CJS_EmbedObj
13 Report(CJS_Object * pJSObject);
14 virtual ~Report();
30 JS_STATIC_METHOD(save, Report)
31 JS_STATIC_METHOD(writeText, Report);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNSAutoreleasePoolChecker.cpp71 BugReport *Report = new BugReport(*BT, "Use -drain instead of -release when " local
73 Report->addRange(msg.getSourceRange());
74 C.emitReport(Report);
H A DDeadStoresChecker.cpp164 void Report(const VarDecl *V, DeadStoreKind dsk, function in class:__anon18175::DeadStoreObs
225 Report(VD, dsk, ExLoc, Val->getSourceRange());
381 Report(V, DeadInit, Loc, E->getSourceRange());
H A DMacOSKeychainAPIChecker.cpp252 // Report deallocator mismatch. Remove the region from tracking - reporting a
272 BugReport *Report = new BugReport(*BT, os.str(), N); local
273 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
274 Report->addRange(ArgExpr->getSourceRange());
275 markInteresting(Report, AP);
276 C.emitReport(Report);
313 BugReport *Report = new BugReport(*BT, os.str(), N); local
314 Report->addVisitor(new SecKeychainBugVisitor(V));
315 Report->addRange(ArgExpr->getSourceRange());
316 Report
365 BugReport *Report = new BugReport(*BT, local
431 BugReport *Report = new BugReport(*BT, local
540 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing, local
[all...]
/external/doclava/src/com/google/doclava/apicheck/
H A DApiCheck.java67 Report report = acheck.checkApi(originalArgs);
77 public Report checkApi(String[] originalArgs) {
99 return new Report(2, Errors.getErrors());
119 return new Report(1, Errors.getErrors());
131 return new Report(Errors.hadError ? 1 : 0, Errors.getErrors());
211 public class Report { class in class:ApiCheck
215 private Report(int code, Set<ErrorMessage> errors) { method in class:ApiCheck.Report
/external/chromium_org/content/renderer/media/crypto/
H A Dkey_systems_support_uma.cc26 void Report();
45 void OneTimeReporter::Report() { function in class:content::__anon7735::OneTimeReporter
59 void Report(bool has_type, bool is_supported);
79 void KeySystemsSupportUMA::Reporter::Report(bool has_type, bool is_supported) { function in class:content::KeySystemsSupportUMA::Reporter
80 call_reporter_.Report();
82 call_with_type_reporter_.Report();
87 support_reporter_.Report();
89 support_with_type_reporter_.Report();
106 reporter->Report(has_type, false);
114 reporter->Report(has_typ
[all...]
/external/chromium_org/tools/valgrind/
H A Ddrmemory_analyze.py141 def Report(self, filenames, testcase, check_sanity): member in class:DrMemoryAnalyzer
177 logging.info("Report #%d\n%s" % (self.error_count, report))
193 return DrMemoryAnalyzer().Report(filenames, None, False)
H A Dmemcheck_analyze.py424 def Report(self, files, testcase, check_sanity=False): member in class:MemcheckAnalyzer
596 # Report tool's insanity even if there were errors.
631 return analyzer.Report(filenames, None)
H A Dtsan_analyze.py216 def Report(self, files, testcase, check_sanity=False): member in class:TsanAnalyzer
243 # Report tool's insanity even if there were errors.
267 return analyzer.Report(filenames, None)
H A Dvalgrind_test.py483 return analyzer.Report(filenames, None, check_sanity)
511 ret |= analyzer.Report(ppid_filenames, testcase_name)
786 ret = analyzer.Report(filenames, None, check_sanity)
1000 ret = analyzer.Report(filenames, None, check_sanity)
1028 ret |= analyzer.Report(ppid_filenames, testcase_name, False)
1048 def Report(self, files, testcase, check_sanity=False): member in class:ThreadSanitizerRV1Analyzer
/external/chromium_org/chrome/browser/net/
H A Devicted_domain_cookie_counter.cc31 virtual void Report(
39 void DelegateImpl::Report( function in class:chrome_browser_net::__anon4333::DelegateImpl
201 cookie_counter_delegate_->Report(*it->second, current_time);
H A Devicted_domain_cookie_counter_unittest.cc38 virtual void Report(
99 void EvictedDomainCookieCounterTest::MockDelegate::Report( function in class:chrome_browser_net::__anon4334::EvictedDomainCookieCounterTest::MockDelegate
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_impl.cc163 void NetworkPortalDetectorImpl::DetectionAttemptCompletedReport::Report() function in class:chromeos::NetworkPortalDetectorImpl::DetectionAttemptCompletedReport
500 attempt_completed_report_.Report();
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
392 return Report(pt, lt, npath); // Bingo!
405 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { function in class:__sanitizer::DD
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_bench.cc239 void Report(const Slice& name) { function in class:leveldb::__anon12439::RandomGenerator::Stats
600 arg[0].thread->stats.Report(name);
/external/clang/lib/Basic/
H A DDiagnostic.cpp134 Report(DelayedDiagID) << DelayedDiagArg1 << DelayedDiagArg2;
314 void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) { function in class:DiagnosticsEngine
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp214 class Report { class in namespace:__anon26368
220 Report(Instruction *I = nullptr) : Out(Message), Instr(I) { function in class:__anon26368::Report
224 template <typename A> Report &operator<<(const A &Value) {
775 /// Report an analysis message to assist the user in diagnosing loops that are
777 void emitAnalysis(Report &Message) {
983 Report R;
1309 // Report the unrolling decision.
1325 // Report the vectorization decision.
3311 emitAnalysis(Report() << "if-conversion is disabled");
3344 emitAnalysis(Report(B
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1408 milliseconds