/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/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/ozone/ |
bitmap_cursor_factory_ozone.cc | 36 gfx::Point hotspot; local 37 CHECK(GetCursorBitmap(type, &bitmap, &hotspot)); 38 default_cursors_[type] = new BitmapCursorOzone(bitmap, hotspot); 47 const gfx::Point& hotspot) { 48 BitmapCursorOzone* cursor = new BitmapCursorOzone(bitmap, hotspot);
|
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) 24 : bitmap_(bitmap), hotspot_(hotspot) {} 26 const gfx::Point& hotspot() { return hotspot_; } function in class:ui::BitmapCursorOzone 42 // combined with a gfx::Point for the hotspot. 54 const gfx::Point& hotspot) OVERRIDE;
|
/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());
|
/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/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_ozone.cc | 20 gfx::Point hotspot = hotspot_; local 22 device_scale_factor_, rotation_, &bitmap, &hotspot); 25 hotspot);
|
webcursor_unittest.cc | 138 // Hotspot is invalid --- outside the bounds of the image. 155 // Convert to WebCursorInfo, make sure the hotspot got clamped. 158 EXPECT_EQ(gfx::Point(1, 1), info.hotspot); 160 // Set hotspot to an invalid point again, pipe back through WebCursor, 161 // and make sure the hotspot got clamped again. 162 info.hotspot = gfx::Point(-1, -1); 165 EXPECT_EQ(gfx::Point(0, 0), info.hotspot); 172 // Hotspot is at origin
|
webcursor_aurax11.cc | 32 gfx::Point hotspot = hotspot_; local 34 device_scale_factor_, rotation_, &bitmap, &hotspot); 36 XcursorImage* image = ui::SkBitmapToXcursorImage(&bitmap, 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...] |
/external/chromium_org/remoting/ios/bridge/ |
client_proxy_delegate.h | 39 hotspot:(const webrtc::DesktopVector&)hotspot
|
/external/chromium_org/ui/base/dragdrop/ |
drag_utils.h | 38 // |cursor_offset| gives the location of the hotspot for the drag image. 44 // |cursor_offset| gives the location of the hotspot for the drag image.
|