HomeSort by relevance Sort by last modified time
    Searched refs:mobile (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/chrome/test/chromedriver/chrome/
device_metrics.cc 11 mobile(false),
device_metrics.h 15 bool mobile; member in struct:DeviceMetrics
mobile_emulation_override_manager_unittest.cc 62 bool mobile, fit_window, text_autosizing; local
67 ASSERT_TRUE(command.params.GetBoolean("mobile", &mobile));
74 ASSERT_EQ(device_metrics.mobile, mobile);
mobile_emulation_override_manager.cc 49 // was renamed to |mobile|.
50 std::string mobile_param_name = "mobile";
64 params.SetBoolean(mobile_param_name, overridden_device_metrics_->mobile);
  /external/chromium_org/chrome/browser/resources/chromeos/
choose_mobile_network.js 5 cr.define('mobile', function() {
20 $('no-mobile-networks').hidden = false;
47 $('no-mobile-networks').hidden = true;
61 $('no-mobile-networks').hidden = true;
104 var ChooseNetwork = mobile.ChooseNetwork;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
OverridesUI.js 83 selectDeviceOption.device = {title: WebInspector.UIString("<Select model>"), width: 0, height: 0, deviceScaleFactor: 0, userAgent: "", touch: false, mobile: false};
312 {title: "Apple iPhone 3GS", width: 320, height: 480, deviceScaleFactor: 1, userAgent: "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5", touch: true, mobile: true},
313 {title: "Apple iPhone 4", width: 320, height: 480, deviceScaleFactor: 2, userAgent: "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5", touch: true, mobile: true},
314 {title: "Apple iPhone 5", width: 320, height: 568, deviceScaleFactor: 2, userAgent: "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53", touch: true, mobile: true},
315 {title: "Apple iPhone 6", width: 375, height: 667, deviceScaleFactor: 2, userAgent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4", touch: true, mobile: true},
316 {title: "Apple iPhone 6 Plus", width: 414, height: 736, deviceScaleFactor: 3, userAgent: "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4", touch: true, mobile: true}
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 143 * The mobile property will be set to a string containing any relevant
144 * user agent information when a modern mobile browser is detected.
147 * @property mobile
150 mobile: null,
183 // Mobile browser check
184 if (/ Mobile\//.test(ua)) {
185 o.mobile = "Apple"; // iPhone or iPod Touch
189 o.mobile = m[0]; // Nokia N-series, ex: NokiaN95
207 o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
Fonts.py 59 mobile = kFontIDMobile variable
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.cpp 90 void InspectorClientImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY)
93 agent->setDeviceMetricsOverride(width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY);
WebDevToolsAgentImpl.h 107 virtual void setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) OVERRIDE;
WebDevToolsAgentImpl.cpp 370 void WebDevToolsAgentImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY)
376 if (mobile)
382 params.screenPosition = mobile ? WebDeviceEmulationParams::Mobile : WebDeviceEmulationParams::Desktop;
  /external/chromium_org/third_party/libphonenumber/src/resources/
phonemetadata.proto 121 // fixed line and mobile numbers - if these types are missing in the
129 optional PhoneNumberDesc mobile = 3;
201 // For example, mobile numbers in Argentina are written in two completely
209 // Specifies whether the mobile and fixed-line patterns are the same or not.
223 // and NATIONAL format. A case in point is mobile numbers in Argentina:
273 // This field is set when this country has implemented mobile number
274 // portability. This means that transferring mobile numbers between carriers
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 111 virtual void setDeviceMetricsOverride(ErrorString*, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, const double* optionalScale, const double* optionalOffsetX, const double* optionalOffsetY) OVERRIDE;
184 bool deviceMetricsChanged(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY);
186 void updateViewMetrics(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY);
InspectorPageAgent.cpp 809 void InspectorPageAgent::setDeviceMetricsOverride(ErrorString* errorString, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, const double* optionalScale, const double* optionalOffsetX, const double* optionalOffsetY)
1333 bool mobile = m_state->getBoolean(PageAgentState::pageAgentEmulateMobile); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
article.js 65 // On mobile, hide permalinks. TOC is hidden, doesn't need to scroll.
71 // Toggle collapsible sections (mobile).
  /external/chromium_org/ash/system/chromeos/network/
network_connect.cc 370 // If we're dealing with a mobile network, then handle SIM lock here.
373 if (technology.MatchesPattern(NetworkTypePattern::Mobile())) {
374 const DeviceState* mobile = handler->GetDeviceStateByType(technology); local
375 if (!mobile) {
380 if (mobile->type() == shill::kTypeCellular) {
381 if (mobile->IsSimAbsent()) {
389 if (!mobile->sim_lock_type().empty()) {
417 // For non direct activation, show the mobile setup dialog which can be
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Tests.js 630 testOverrides({width: 1200, height: 1000, deviceScaleFactor: 1, mobile: false, fitWindow: true}, {width: 1200, height: 1000, deviceScaleFactor: 1}, step2);
635 testOverrides({width: 1200, height: 1000, deviceScaleFactor: 1, mobile: false, fitWindow: false}, {width: 1200, height: 1000, deviceScaleFactor: 1}, step3);
640 testOverrides({width: 1200, height: 1000, deviceScaleFactor: 3, mobile: false, fitWindow: true}, {width: 1200, height: 1000, deviceScaleFactor: 3}, step4);
645 testOverrides({width: 1200, height: 1000, deviceScaleFactor: 3, mobile: false, fitWindow: false}, {width: 1200, height: 1000, deviceScaleFactor: 3}, finish);
  /external/tcpdump/
Android.mk 19 print-lwres.c print-mobile.c print-mpcp.c print-mpls.c print-mptcp.c print-msdp.c \
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/
frame.js 36 // Not Chrome, or is mobile Chrome.
  /external/tcpdump/win32/prj/
GNUmakefile 97 ../../print-mobile.o \
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 12 var isMobile = false; // true if mobile, so we can adjust some layout
29 // If a mobile phone, set flag and do mobile setup
30 if ((agent.indexOf("mobile") != -1) || // android, iphone, ipod
36 // If not a mobile browser, set the onresize event for IE6, and others
  /external/doclava/res/assets/templates/assets/
doclava-developer-docs.js 12 var isMobile = false; // true if mobile, so we can adjust some layout
29 // If a mobile phone, set flag and do mobile setup
30 if ((agent.indexOf("mobile") != -1) || // android, iphone, ipod
36 // If not a mobile browser, set the onresize event for IE6, and others
  /frameworks/base/docs/html/
jd_collections.js 143 "https://developers.google.com/analytics/solutions/mobile-implementation-guide",
152 "https://developers.google.com/analytics/solutions/mobile-implementation-guide",
176 "https://developers.google.com/analytics/solutions/mobile-campaign-deep-link"
613 "http://www.google.com/analytics/mobile/",
656 "https://developers.google.com/+/mobile/android/share/interactive-post",
657 "https://developers.google.com/+/mobile/android/share/deep-link"
672 "https://developers.google.com/+/mobile/android/share/interactive-post"
    [all...]
  /build/tools/droiddoc/templates-ds/
customizations.cs 291 // init nav version for mobile
293 swapNav(); // tree view should be used on mobile
  /external/chromium_org/components/bookmarks/browser/
bookmark_model_unittest.cc 324 EXPECT_EQ(BookmarkNode::MOBILE, mobile_node->type());
983 TestNode mobile; local
    [all...]

Completed in 5331 milliseconds

1 2