HomeSort by relevance Sort by last modified time
    Searched defs:detector (Results 1 - 25 of 70) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/util/
AbstractResourceLeakageDetectorTestCase.java 26 * The leakage detector.
28 private ResourceLeakageDetector detector; field in class:AbstractResourceLeakageDetectorTestCase
32 detector = ResourceLeakageDetector.newDetector();
40 if (detector != null) {
41 detector.checkForLeaks();
ResourceLeakageDetectorTest.java 30 ResourceLeakageDetector detector = ResourceLeakageDetector.newDetector(); local
37 detector.checkForLeaks();
45 ResourceLeakageDetector detector = ResourceLeakageDetector.newDetector(); local
51 detector.checkForLeaks();
  /external/chromium_org/chrome/browser/chromeos/net/
delay_network_call.cc 36 NetworkPortalDetector* detector = NetworkPortalDetector::Get(); local
38 detector->GetCaptivePortalState(default_network->guid()).status;
  /external/chromium_org/components/captive_portal/
captive_portal_testing_utils.h 25 // 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; }
40 CaptivePortalDetector* detector() { return detector_; } function in class:captive_portal::CaptivePortalDetectorTestBase
  /external/chromium_org/content/renderer/android/
email_detector_unittest.cc 19 EmailDetector detector; local
21 if (detector.FindContent(content_16.begin(), content_16.end(),
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextEncodingDetector.cpp 46 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);
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 186 TestCountryDetector detector = new TestCountryDetector(country, provider); local
189 detector.setAcceptableProvider(acceptableProviders);
192 detector.setCountryListener(countryListener);
193 detector.detectCountry();
196 assertEquals(acceptableProviders.size(), detector.getListenersCount());
197 Map<String, LocationListener> listeners = detector.getListeners();
202 assertEquals(TestCountryDetector.TOTAL_PROVIDERS, detector.getListenersCount());
205 detector.notifyLocationFound();
207 assertEquals(0, detector.getListenersCount());
208 assertNull(detector.getTimer())
223 TestCountryDetector detector = new TestCountryDetector(country, provider); local
248 TestCountryDetector detector = new TestCountryDetector(country, provider); local
266 TestCountryDetector detector = new TestCountryDetector(country, provider, timeout) { local
288 TestCountryDetector detector = new TestCountryDetector(country, provider) { local
326 TestCountryDetector detector = new TestCountryDetector(country, provider, timeout); local
    [all...]
  /external/chromium_org/chrome/browser/
intranet_redirect_detector.cc 51 const IntranetRedirectDetector* const detector = local
53 return detector ? detector->redirect_origin_ : GURL();
upgrade_detector_impl_unittest.cc 76 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.OnExperimentChangesDetected
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
system_tray_delegate_linux.cc 305 UpgradeDetector* detector = variable
309 switch (detector->upgrade_notification_stage()) {
system_tray_delegate_win.cc 302 UpgradeDetector* detector = variable
306 switch (detector->upgrade_notification_stage()) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_peak_detector_unittest.cc 20 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/base/i18n/
icu_encoding_detection.cc 21 UCharsetDetector* detector = ucsdet_open(&status); local
22 ucsdet_setText(detector, text.data(), static_cast<int32_t>(text.length()),
24 const UCharsetMatch* match = ucsdet_detect(detector, &status);
28 ucsdet_close(detector);
40 UCharsetDetector* detector = ucsdet_open(&status); local
41 ucsdet_setText(detector, text.data(), static_cast<int32_t>(text.length()),
44 const UCharsetMatch** matches = ucsdet_detectAll(detector,
48 ucsdet_close(detector);
86 UEnumeration* detectable_encodings = ucsdet_getAllDetectableCharsets(detector,
100 ucsdet_close(detector);
    [all...]
  /development/samples/CrossCompatibility/src/com/example/android/touchexample/
VersionedGestureDetector.java 32 VersionedGestureDetector detector = null; local
34 detector = new CupcakeDetector();
36 detector = new EclairDetector();
38 detector = new FroyoDetector(context);
41 Log.d(TAG, "Created new " + detector.getClass());
42 detector.mListener = listener;
44 return detector;
147 @Override public boolean onScale(ScaleGestureDetector detector) {
148 mListener.onScale(detector.getScaleFactor());
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncView.java 137 public boolean onScale(ScaleGestureDetector detector) {
138 mRender.onActionScale(detector.getScaleFactor());
FBOTestView.java 137 public boolean onScale(ScaleGestureDetector detector) {
138 mRender.onActionScale(detector.getScaleFactor());
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppView.java 146 public boolean onScale(ScaleGestureDetector detector) {
147 mRender.onActionScale(detector.getScaleFactor());
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestView.java 131 public boolean onScale(ScaleGestureDetector detector) {
132 mRender.onActionScale(detector.getScaleFactor());
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.0/
lint-api-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.1/
lint-api-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.3/
lint-api-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.1/
lint-api-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.3/
lint-api-22.5.3.jar 
  /prebuilts/devtools/tools/lib/
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 

Completed in 669 milliseconds

1 2 3