HomeSort by relevance Sort by last modified time
    Searched refs:report (Results 426 - 450 of 1835) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 375 report = []
376 def hooktester(count, block_size, total_size, _report=report):
381 self.assertEqual(len(report), 1)
382 self.assertEqual(report[0][2], 0)
389 report = []
390 def hooktester(count, block_size, total_size, _report=report):
395 self.assertEqual(len(report), 2)
396 self.assertEqual(report[0][1], 8192)
397 self.assertEqual(report[0][2], 5)
403 report = [
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 375 report = []
376 def hooktester(count, block_size, total_size, _report=report):
381 self.assertEqual(len(report), 1)
382 self.assertEqual(report[0][2], 0)
389 report = []
390 def hooktester(count, block_size, total_size, _report=report):
395 self.assertEqual(len(report), 2)
396 self.assertEqual(report[0][1], 8192)
397 self.assertEqual(report[0][2], 5)
403 report = [
    [all...]
  /external/webrtc/talk/app/webrtc/
statscollector_unittest.cc 174 bool GetValue(const StatsReport* report,
177 const StatsReport::Value* v = report->FindValue(name);
220 // Finds the |n|-th report of type |type| in |reports|.
221 // |n| starts from 1 for finding the first report.
275 const StatsReport* report = FindReportById(reports, *certificate_id); local
276 ASSERT_TRUE(report != NULL);
280 report, StatsReport::kStatsValueNameDer, &der_base64));
286 report,
294 EXPECT_TRUE(GetValue(report, StatsReport::kStatsValueNameFingerprint,
300 if (!GetValue(report, StatsReport::kStatsValueNameIssuerId
635 const StatsReport* report = FindNthReportByType( local
789 const StatsReport* report = local
1591 const StatsReport* report = FindNthReportByType( local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 110 // Do not report dereferences on memory in non-default address spaces.
177 auto report = llvm::make_unique<BugReport>( local
180 bugreporter::trackNullOrUndefValue(N, bugreporter::getDerefExpr(S), *report);
184 report->addRange(*I);
186 C.emitReport(std::move(report));
198 auto report = local
201 *report);
202 C.emitReport(std::move(report));
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 18 import com.vladium.emma.report.ReportCfg;
19 import com.vladium.emma.report.IReportEnums.DepthAttribute;
20 import com.vladium.emma.report.IReportEnums.UnitsTypeAttribute;
21 import com.vladium.emma.report.ReportCfg.Element_HTML;
22 import com.vladium.emma.report.ReportCfg.Element_LCOV;
23 import com.vladium.emma.report.ReportCfg.Element_TXT;
24 import com.vladium.emma.report.ReportCfg.Element_XML;
84 // report types:
163 // (2) named report settings override generic named settings
164 // (3) verbosity settings use dedicated attributes (not overlapping with report
    [all...]
  /external/icu/icu4c/source/test/intltest/
mnkytst.cpp 47 CollationMonkeyTest::report(UnicodeString& s, UnicodeString& t, int32_t result, int32_t revResult) function in class:CollationMonkeyTest
99 report( subs, subt, result, revResult);
106 report( subs, subt, result, revResult);
113 report(subs, subt, result, revResult);
169 report(subs, subt, result, revResult);
174 report(subs, subt, result, revResult);
179 report(subs, subt, result, revResult);
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
CounterColumnTest.java 12 package org.jacoco.report.internal.html.table;
29 import org.jacoco.report.MemoryMultiReportOutput;
30 import org.jacoco.report.internal.ReportOutputFolder;
31 import org.jacoco.report.internal.html.HTMLDocument;
32 import org.jacoco.report.internal.html.HTMLElement;
33 import org.jacoco.report.internal.html.HTMLSupport;
34 import org.jacoco.report.internal.html.resources.Resources;
TableTest.java 12 package org.jacoco.report.internal.html.table;
28 import org.jacoco.report.MemoryMultiReportOutput;
29 import org.jacoco.report.internal.ReportOutputFolder;
30 import org.jacoco.report.internal.html.HTMLDocument;
31 import org.jacoco.report.internal.html.HTMLElement;
32 import org.jacoco.report.internal.html.HTMLSupport;
33 import org.jacoco.report.internal.html.resources.Resources;
  /frameworks/base/services/core/java/com/android/server/am/
AppErrors.java 447 Slog.w(TAG, "bug report receiver dissappeared", e);
507 // can't give it a report button because that would require
508 // launching the report UI under a different user.
535 ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo(); local
537 report.condition = condition;
538 report.processName = app.processName;
539 report.pid = app.pid;
540 report.uid = app.info.uid;
541 report.tag = activity;
542 report.shortMsg = shortMsg
551 ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo); local
572 ApplicationErrorReport report = new ApplicationErrorReport(); local
    [all...]
  /external/autotest/client/cros/crash/
crash_test.py 46 which contains one temporary file for each time a report is sent.
374 report):
375 """Create metadata for a fake crash report.
378 crash report for testing purposes.
384 @param report: Report to use for crash, if None we create one.
388 if report is None:
393 report = self.write_fake_meta(
395 return report
411 meta_path: path to the report metadata fil
    [all...]
  /system/bt/btif/src/
btif_hd.cc 538 tBTA_HD_REPORT report; local
554 report.type = BTHD_REPORT_TYPE_INPUT;
555 report.use_intr = TRUE;
557 report.type = (type & 0x03);
558 report.use_intr = FALSE;
561 report.id = id;
562 report.len = len;
563 report.p_data = p_data;
565 BTA_HdSendReport(&report);
  /external/emma/core/java12/com/vladium/emma/report/
AbstractReportGenerator.java 9 package com.vladium.emma.report;
45 return new com.vladium.emma.report.html.ReportGenerator ();
47 return new com.vladium.emma.report.lcov.ReportGenerator ();
49 return new com.vladium.emma.report.txt.ReportGenerator ();
51 return new com.vladium.emma.report.xml.ReportGenerator ();
53 throw new EMMARuntimeException ("no report generator class found for type [" + type + "]");
80 m_log.warning ("debug data: no sources will be embedded in the report.");
107 m_log.warning ("line coverage requested in a report of type [" + getType () + "] but");
109 m_log.warning ("debug data: since this was the only requested column, no report will be generated.");
115 m_log.warning ("line coverage requested in a report of type [" + getType () + "] but")
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 12 package org.jacoco.report.internal.html.table;
21 import org.jacoco.report.internal.ReportOutputFolder;
22 import org.jacoco.report.internal.html.HTMLElement;
23 import org.jacoco.report.internal.html.resources.Resources;
24 import org.jacoco.report.internal.html.resources.Styles;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
SourceHighlighterTest.java 12 package org.jacoco.report.internal.html.page;
23 import org.jacoco.report.internal.html.HTMLDocument;
24 import org.jacoco.report.internal.html.HTMLElement;
25 import org.jacoco.report.internal.html.HTMLSupport;
26 import org.jacoco.report.internal.html.resources.Styles;
SessionsPageTest.java 12 package org.jacoco.report.internal.html.page;
24 import org.jacoco.report.internal.html.HTMLElement;
25 import org.jacoco.report.internal.html.index.ElementIndex;
  /external/libchrome/base/metrics/
histogram_base_unittest.cc 166 // Enabled creation report. Itself is not included in the report.
167 HistogramBase* report = GetCreationReportHistogram("CreationReportTest"); local
168 ASSERT_TRUE(report);
184 std::unique_ptr<HistogramSamples> samples = report->SnapshotSamples();
203 samples = report->SnapshotSamples();
216 samples = report->SnapshotSamples();
  /external/skia/tools/
parse_llvm_coverage.py 7 """Parse an LLVM coverage report to generate useable results."""
57 def _get_per_file_per_line_coverage(report):
72 lines = report.splitlines()
152 """Summarize the full line-by-line coverage report by file."""
170 """Generate useful data from a coverage report."""
173 parser.add_argument('--report', help='input file; an llvm coverage report.',
189 with open(args.report) as f:
190 report = f.read()
192 line_by_line = _get_per_file_per_line_coverage(report)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
DebugInfoProbe.cpp 49 void report();
91 /// report - Report findings. This should be invoked after finalize.
92 void DebugInfoProbeImpl::report() { function in class:DebugInfoProbeImpl
181 /// report - Report findings. This should be invoked after finalize.
182 void DebugInfoProbe::report() { function in class:DebugInfoProbe
183 pImpl->report();
189 /// ~DebugInfoProbeInfo - Report data collected by all probes before deleting
195 I->second->report();
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 242 Log.e(TAG, "Error: get report native returns false");
250 byte[] report = data.getByteArray(BluetoothInputDevice.EXTRA_REPORT);
252 broadcastReport(device, report, bufferSize);
267 String report = data.getString(BluetoothInputDevice.EXTRA_REPORT);
268 if(!setReportNative(Utils.getByteAddress(device), reportType, report)) {
269 Log.e(TAG, "Error: set report native returns false");
277 String report = data.getString(BluetoothInputDevice.EXTRA_REPORT);
278 if(!sendDataNative(Utils.getByteAddress(device), report)) {
386 public boolean setReport(BluetoothDevice device, byte reportType, String report) {
389 return service.setReport(device, reportType, report);
    [all...]
  /external/autotest/client/site_tests/audio_ActiveStreamStress/
audio_ActiveStreamStress.py 138 crash_reports = [report for report in cras_reports
139 if report.startswith('cras')]
  /external/autotest/client/site_tests/audio_CrasSanity/
audio_CrasSanity.py 151 crash_reports = [report for report in cras_reports
152 if report.startswith('cras')]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ModuleProcessingStep.java 93 ValidationReport<TypeElement> report = local
95 report.printMessagesTo(messager);
97 if (report.isClean()) {
ProducerModuleProcessingStep.java 96 ValidationReport<TypeElement> report = local
98 report.printMessagesTo(messager);
100 if (report.isClean()) {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLElement.java 12 package org.jacoco.report.internal.html;
17 import org.jacoco.report.internal.ReportOutputFolder;
18 import org.jacoco.report.internal.xml.XMLElement;
  /external/libcxx/utils/libcxx/android/test/
format.py 58 cmd, report, rc = libcxx.test.format.LibcxxTestFormat._build(
61 return cmd, report, rc
77 return cmd, report, rc

Completed in 786 milliseconds

<<11121314151617181920>>