Searched defs:detector (Results 1 - 25 of 30) sorted by last modified time

12

/external/zxing/core/
H A Dcore.jar ... aztec/ com/google/zxing/aztec/decoder/ com/google/zxing/aztec/detector/ com/google/zxing/client/ com/google/zxing/client/result/ com ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricTestRunner.java59 /** Instrument detector. We use it to check whether the current instance is instrumented. */
81 public static void setInstrumentDetector(final InstrumentDetector detector) { argument
82 instrumentDetector = detector;
628 /** Default detector. */
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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/chromium_org/third_party/webrtc/video_engine/test/auto_test/automated/
H A Dvie_video_verification_test.cc261 FrameDropDetector detector; local
263 remote_file_renderer_ = new FrameDropMonitoringRemoteFileRenderer(&detector);
281 remote_file_renderer_, &detector);
286 detector.CalculateResults();
287 detector.PrintReport(parameter_table_[GetParam()].test_label);
289 if (detector.GetNumberOfFramesDroppedAt(FrameDropDetector::kRendered) >
290 detector.GetNumberOfFramesDroppedAt(FrameDropDetector::kDecoded)) {
291 detector.PrintDebugDump();
294 ASSERT_GE(detector.GetNumberOfFramesDroppedAt(FrameDropDetector::kRendered),
295 detector
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddelay_peak_detector_unittest.cc20 DelayPeakDetector* detector = new DelayPeakDetector(); local
21 EXPECT_FALSE(detector->peak_found());
22 delete detector;
26 DelayPeakDetector detector; local
27 EXPECT_EQ(-1, detector.MaxPeakHeight());
28 EXPECT_EQ(-1, detector.MaxPeakPeriod());
31 // Inject a series of packet arrivals into the detector. Three of the packets
35 DelayPeakDetector detector; local
37 detector.SetPacketAudioLength(kPacketSizeMs);
60 // Load into detector
86 DelayPeakDetector detector; local
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_capture_options.h59 scoped_refptr<FullScreenChromeWindowDetector> detector) {
60 full_screen_window_detector_ = detector;
58 set_full_screen_chrome_window_detector( scoped_refptr<FullScreenChromeWindowDetector> detector) argument
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextEncodingDetector.cpp46 UCharsetDetector* detector = ucsdet_open(&status); local
49 ucsdet_enableInputFilter(detector, true);
50 ucsdet_setText(detector, data, static_cast<int32_t>(length), &status);
55 // the ICU detector itself.
60 // encoding with a highest confidence among the detector-specific
64 const UCharsetMatch** matches = ucsdet_detectAll(detector, &matchesCount, &status);
66 ucsdet_close(detector);
109 ucsdet_close(detector);
112 ucsdet_close(detector);
/external/chromium_org/ui/chromeos/
H A Duser_activity_power_manager_notifier.cc45 ::wm::UserActivityDetector* detector)
46 : detector_(detector) {
44 UserActivityPowerManagerNotifier( ::wm::UserActivityDetector* detector) argument
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DTrackingInputHandler.java90 // If long-press is enabled, the gesture-detector will not emit any further onScroll
362 // gesture-detector will still generate onFling() notifications based on movement of
387 public boolean onScale(ScaleGestureDetector detector) { argument
392 if (Math.abs(detector.getScaleFactor() - 1) < MIN_ZOOM_DELTA) {
396 float scaleFactor = detector.getScaleFactor();
399 scaleFactor, scaleFactor, detector.getFocusX(), detector.getFocusY());
416 public boolean onScaleBegin(ScaleGestureDetector detector) { argument
422 public void onScaleEnd(ScaleGestureDetector detector) { argument
423 onScale(detector);
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/content/renderer/android/
H A Demail_detector_unittest.cc19 EmailDetector detector; local
21 if (detector.FindContent(content_16.begin(), content_16.end(),
/external/chromium_org/components/captive_portal/
H A Dcaptive_portal_testing_utils.h25 // Sets test time for captive portal detector.
28 // Advances test time for captive portal detector.
33 // Sets URL fetcher state and notifies portal detector.
38 void set_detector(CaptivePortalDetector* detector) { detector_ = detector; } argument
40 CaptivePortalDetector* detector() { return detector_; } function in class:captive_portal::CaptivePortalDetectorTestBase
/external/chromium_org/chrome/browser/ui/ash/
H A Dsystem_tray_delegate_chromeos.cc1090 UpgradeDetector* detector = local
1094 switch (detector->upgrade_notification_stage()) {
H A Dsystem_tray_delegate_linux.cc305 UpgradeDetector* detector = variable
309 switch (detector->upgrade_notification_stage()) {
H A Dsystem_tray_delegate_win.cc302 UpgradeDetector* detector = variable
306 switch (detector->upgrade_notification_stage()) {
/external/chromium_org/chrome/browser/
H A Dupgrade_detector_impl_unittest.cc76 TestUpgradeDetectorImpl detector; local
77 EXPECT_FALSE(detector.notify_upgrade());
80 detector.OnExperimentChangesDetected(
82 EXPECT_FALSE(detector.notify_upgrade());
85 detector.NotifyOnUpgradeWithTimePassed(base::TimeDelta::FromDays(30));
86 EXPECT_TRUE(detector.notify_upgrade());
90 EXPECT_EQ(0, detector.trigger_critical_update_call_count());
97 TestUpgradeDetectorImpl detector; local
98 EXPECT_FALSE(detector.notify_upgrade());
101 detector
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dchrome_browser_main_chromeos.cc182 // Likewise, initialize the upgrade detector for Chrome OS. The upgrade
183 // detector starts to monitor changes from the update engine.
516 // Initialize the network portal detector for Chrome OS. The network
517 // portal detector starts to listen for notifications from
524 NetworkPortalDetector* detector = NetworkPortalDetector::Get(); local
530 // Enable portal detector if EULA was previously accepted or if
533 detector->Enable(true);
661 // Shutdown the upgrade detector for Chrome OS. The upgrade detector
/external/chromium_org/chrome/browser/chromeos/net/
H A Ddelay_network_call.cc36 NetworkPortalDetector* detector = NetworkPortalDetector::Get(); local
38 detector->GetCaptivePortalState(default_network->guid()).status;

Completed in 846 milliseconds

12