HomeSort by relevance Sort by last modified time
    Searched full:hotspot (Results 1 - 25 of 273) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/wpa_supplicant_8/hs20/server/www/
free-remediation.php 3 <title>Hotspot 2.0 - public and free hotspot - remediation</title>
7 <h3>Hotspot 2.0 - public and free hotspot</h3>
free.php 3 <title>Hotspot 2.0 - public and free hotspot</title>
11 echo "<h3>Hotspot 2.0 - public and free hotspot</h3>\n";
remediation.php 3 <title>Hotspot 2.0 subscription remediation</title>
  /external/chromium_org/ui/base/cursor/ozone/
bitmap_cursor_factory_ozone.cc 25 gfx::Point hotspot; local
26 if (GetCursorBitmap(type, &bitmap, &hotspot))
27 return new BitmapCursorOzone(bitmap, hotspot);
34 const gfx::Point& hotspot)
35 : hotspot_(hotspot), frame_delay_ms_(0) {
40 const gfx::Point& hotspot,
42 : bitmaps_(bitmaps), hotspot_(hotspot), frame_delay_ms_(frame_delay_ms) {
50 const gfx::Point& BitmapCursorOzone::hotspot() { function in class:ui::BitmapCursorOzone
82 const gfx::Point& hotspot) {
83 BitmapCursorOzone* cursor = new BitmapCursorOzone(bitmap, hotspot);
    [all...]
bitmap_cursor_factory_ozone.h 19 // A cursor that is an SkBitmap combined with a gfx::Point hotspot.
23 BitmapCursorOzone(const SkBitmap& bitmap, const gfx::Point& hotspot);
25 const gfx::Point& hotspot,
28 const gfx::Point& hotspot();
49 // combined with a gfx::Point for the hotspot.
65 const gfx::Point& hotspot) OVERRIDE;
68 const gfx::Point& hotspot,
  /external/chromium_org/third_party/WebKit/ManualTests/
cursor-max-size.html 9 url("resources/helpCursor.tiff") -10 10, /* negative x in hotspot */
10 url("resources/helpCursor.tiff") 10 -10, /* negative y in hotspot */
11 url("resources/helpCursor.tiff") -10 -10, /* negative x and y in hotspot */
12 url("resources/helpCursor.tiff") 20 10, /* x hotspot outside image (image is 16px x 16px) */
13 url("resources/helpCursor.tiff") 10 20, /* y hotspot outside image (image is 16px x 16px) */
14 url("resources/helpCursor.tiff") 20 20, /* both x and y hotspot outside image (image is 16px x 16px) */
cur-hotspot.html 5 <div style="background:turquoise;cursor:url(resources/cur-hotspot.cur), auto; width:200px; height:200px; position:absolute; top:100px; left: 50px;">Mouse cursor should be upside down inside this box.</div>
7 <div style="background:turquoise;cursor:url(resources/cur-hotspot.cur) 200 200, auto; width:200px; height:200px; position:absolute; top:100px; left: 300px;">Mouse cursor should be upside down inside this box.</div>
9 <div style="background:turquoise;cursor:url(resources/cur-hotspot.cur) 0 0, auto; width:200px; height:200px; position:absolute; top:350px; left: 50px;">Mouse cursor should flip erratically, due to incorrect hot spot forced in CSS.</div>
cursorfallback.xml 16 <text y="62">Test svg cursor fallback with hotspot, should show help cursor:</text>
20 <text y="132">Test svg cursor fallback with illegal hotspot, should show default cursor:</text>
24 <text y="202">Test svg cursor fallback with illegal hotspot, should show default cursor:</text>
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
mouse_cursor.h 26 // Takes ownership of |image|. |hotspot| must be within |image| boundaries.
27 MouseCursor(DesktopFrame* image, const DesktopVector& hotspot);
36 void set_hotspot(const DesktopVector& hotspot ) { hotspot_ = hotspot; }
37 const DesktopVector& hotspot() const { return hotspot_; } function in class:webrtc::MouseCursor
mouse_cursor_shape.h 27 // Coordinates of the cursor hotspot relative to upper-left corner.
28 DesktopVector hotspot; member in struct:webrtc::MouseCursorShape
mouse_cursor.cc 21 MouseCursor::MouseCursor(DesktopFrame* image, const DesktopVector& hotspot)
23 hotspot_(hotspot) {
34 cursor.hotspot())
  /external/chromium_org/ui/base/cursor/
cursor_loader_ozone.cc 23 gfx::Point hotspot = hot; local
25 GetImageCursorBitmap(resource_id, scale(), rotation(), &hotspot, &bitmap);
28 CursorFactoryOzone::GetInstance()->CreateImageCursor(bitmap, hotspot);
36 gfx::Point hotspot = hot; local
39 resource_id, scale(), rotation(), &hotspot, &bitmaps);
42 bitmaps, hotspot, frame_delay_ms);
  /external/chromium_org/content/renderer/
cursor_utils.cc 21 webkit_cursor_info->hotSpot = cursor_info.hotspot;
36 web_cursor_info.hotspot = webkit_cursor_info.hotSpot;
  /external/wpa_supplicant_8/src/utils/
browser.h 2 * Hotspot 2.0 client - Web browser
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiApStress.java 35 * Stress test setting up device as wifi hotspot
85 assertTrue("failed to disable wifi hotspot",
87 assertTrue("wifi hotspot not enabled", waitForWifiApState(
102 assertTrue("failed to enable wifi hotspot",
105 assertTrue("wifi hotspot not enabled", waitForWifiApState(
116 // disable wifi hotspot
117 assertTrue("failed to disable wifi hotspot",
119 assertTrue("wifi hotspot not enabled", waitForWifiApState(
121 assertFalse("wifi hotspot still enabled", mWifiManager.isWifiApEnabled());
  /packages/apps/Settings/src/com/android/settings/
HotspotOffReceiver.java 10 * This receiver catches when quick settings turns off the hotspot, so we can
20 // The hotspot has been turned off, we don't need to recheck tethering.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.h 35 static PassRefPtrWillBeRawPtr<CSSCursorImageValue> create(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot)
37 return adoptRefWillBeNoop(new CSSCursorImageValue(imageValue, hasHotSpot, hotSpot));
44 IntPoint hotSpot() const
66 CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot);
  /external/chromium_org/ui/ozone/public/
cursor_factory_ozone.h 34 // Return a image cursor from the specified image & hotspot. Image cursors
38 const gfx::Point& hotspot);
40 // Return a animated cursor from the specified image & hotspot. Animated
46 const gfx::Point& hotspot,
  /external/wpa_supplicant_8/hs20/server/ca/
hs20.oid 3 1.3.6.1.4.1.40808.1.1.1 id-wfa-hotspot-friendlyName
  /external/wpa_supplicant_8/src/ap/
hs20.h 2 * Hotspot 2.0 AP ANQP processing
  /external/chromium_org/content/common/cursors/
webcursor_aurax11.cc 30 gfx::Point hotspot = hotspot_; local
32 device_scale_factor_, gfx::Display::ROTATE_0, &bitmap, &hotspot);
34 XcursorImage* image = ui::SkBitmapToXcursorImage(&bitmap, hotspot);
webcursor_ozone.cc 20 gfx::Point hotspot = hotspot_; local
22 device_scale_factor_, rotation_, &bitmap, &hotspot);
25 hotspot);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
CursorData.h 35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot)
37 , m_hotSpot(hotSpot)
55 const IntPoint& hotSpot() const { return m_hotSpot; }
  /external/wpa_supplicant_8/hs20/server/
spp_server.h 2 * Hotspot 2.0 SPP server
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
malloc-tree 37 hotspot = False variable
57 if hotspot:
100 global hotspot
107 if hotspot:
129 if hotspot:
138 global hotspot
153 parser.add_option('-t', '--hotspot', action='store_true', dest='hotspot',
158 hotspot = options.hotspot
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011