Searched defs:mobile (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevice_metrics.h15 bool mobile; member in struct:DeviceMetrics
H A Dmobile_emulation_override_manager_unittest.cc62 bool mobile, fit_window, text_autosizing; local
67 ASSERT_TRUE(command.params.GetBoolean("mobile", &mobile));
74 ASSERT_EQ(device_metrics.mobile, mobile);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js143 * 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,
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
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_connect.cc370 // If we're dealing with a mobile network, then handle SIM lock here.
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/web/
H A DInspectorClientImpl.cpp90 void InspectorClientImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) argument
93 agent->setDeviceMetricsOverride(width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY);
H A DWebDevToolsAgentImpl.cpp370 void WebDevToolsAgentImpl::setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) argument
376 if (mobile)
382 params.screenPosition = mobile ? WebDeviceEmulationParams::Mobile : WebDeviceEmulationParams::Desktop;
/external/chromium_org/chrome/browser/android/bookmarks/
H A Dbookmarks_bridge.cc306 const BookmarkNode* mobile = bookmark_model_->mobile_node(); local
317 for (int i = 0; i < mobile->child_count(); ++i) {
318 const BookmarkNode* child = mobile->GetChild(i);
423 // Partner bookmark root node is under mobile node.
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_model_unittest.cc983 TestNode mobile; local
984 PopulateNodeFromString(data[i].mobile_contents, &mobile);
985 PopulateBookmarkNode(&mobile, model_.get(), model_->mobile_node());
989 VerifyModelMatchesNode(&mobile, model_->mobile_node());
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp809 void InspectorPageAgent::setDeviceMetricsOverride(ErrorString* errorString, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, const double* optionalScale, const double* optionalOffsetX, const double* optionalOffsetY) argument
840 if (!deviceMetricsChanged(true, width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY))
847 m_state->setBoolean(PageAgentState::pageAgentEmulateMobile, mobile);
873 bool InspectorPageAgent::deviceMetricsChanged(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY) argument
890 || mobile != currentMobile
1333 bool mobile = m_state->getBoolean(PageAgentState::pageAgentEmulateMobile); local
1339 updateViewMetrics(enabled, width, height, deviceScaleFactor, mobile, fitWindow, scale, offsetX, offsetY);
1342 void InspectorPageAgent::updateViewMetrics(bool enabled, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, double scale, double offsetX, double offsetY) argument
1348 m_emulateMobileEnabled = mobile;
1350 m_client->setDeviceMetricsOverride(width, height, static_cast<float>(deviceScaleFactor), mobile, fitWindo
[all...]

Completed in 676 milliseconds