HomeSort by relevance Sort by last modified time
    Searched defs:DisplayInfo (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/system_display/
system_display_api.cc 25 api::system_display::DisplayUnitInfo> > DisplayInfo;
28 DisplayInfo all_displays_info =
display_info_provider.h 20 api::system_display::DisplayUnitInfo> > DisplayInfo;
33 DisplayInfo GetAllDisplaysInfo();
  /frameworks/native/include/ui/
DisplayInfo.h 28 struct DisplayInfo {
  /external/chromium_org/ash/test/
display_manager_test_api.cc 19 typedef DisplayInfo DisplayInfo;
20 typedef std::vector<DisplayInfo> DisplayInfoList;
24 std::vector<DisplayInfo> CreateDisplayInfoListFromString(
27 std::vector<DisplayInfo> display_info_list;
37 DisplayInfo::CreateFromSpecWithID(*iter, id));
51 std::vector<DisplayInfo> display_info_list =
55 const DisplayInfo& display_info = display_info_list[i];
70 for (std::vector<DisplayInfo>::iterator iter = display_info_list.begin();
  /external/chromium_org/ash/display/
display_info.cc 43 DisplayInfo DisplayInfo::CreateFromSpec(const std::string& spec) {
48 void DisplayInfo::SetAllowUpgradeToHighDPI(bool enable) {
53 DisplayInfo DisplayInfo::CreateFromSpecWithID(const std::string& spec,
156 DisplayInfo display_info(
177 DisplayInfo::DisplayInfo()
190 DisplayInfo::DisplayInfo(int64 id
    [all...]
display_info.h 33 // DisplayInfo contains metadata for each display. This is used to
37 class ASH_EXPORT DisplayInfo {
39 // Creates a DisplayInfo from string spec. 100+200-1440x800 creates display
74 static DisplayInfo CreateFromSpec(const std::string& spec);
76 // Creates a DisplayInfo from string spec using given |id|.
77 static DisplayInfo CreateFromSpecWithID(const std::string& spec,
80 DisplayInfo();
81 DisplayInfo(int64 id, const std::string& name, bool has_overscan);
82 ~DisplayInfo();
147 void Copy(const DisplayInfo& another_info)
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 34 public final class DisplayInfo implements Parcelable {
226 public static final Creator<DisplayInfo> CREATOR = new Creator<DisplayInfo>() {
228 public DisplayInfo createFromParcel(Parcel source) {
229 return new DisplayInfo(source);
233 public DisplayInfo[] newArray(int size) {
234 return new DisplayInfo[size];
238 public DisplayInfo() {
241 public DisplayInfo(DisplayInfo other)
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 66 private final Map<MonitoredSensor, DisplayInfo> mDisplayedSensors =
67 new HashMap<SensorChannel.MonitoredSensor, SensorActivity.DisplayInfo>();
188 mDisplayedSensors.put(sensor, new DisplayInfo(sensor, row));
199 for (DisplayInfo info : mDisplayedSensors.values()) {
205 private class DisplayInfo implements CompoundButton.OnCheckedChangeListener {
210 public DisplayInfo(MonitoredSensor sensor, TableRow row) {
262 DisplayInfo info = null;
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 25 struct DisplayInfo{
26 DisplayInfo():dc(NULL),hwnd(NULL),isPixelFormatSet(false){};
27 DisplayInfo(HDC hdc,HWND wnd):isPixelFormatSet(false){dc = hdc; hwnd = wnd;};
34 std::map<int,DisplayInfo> m_map;
52 DisplayInfo& getInfo(int configurationIndex){ return getTLS()->m_map[configurationIndex];}
54 void setInfo(int configurationIndex,const DisplayInfo& info);
64 for(std::map<int,DisplayInfo>::iterator it = tls->m_map.begin(); it != tls->m_map.end();it++){
76 void WinDisplay::setInfo(int configurationIndex,const DisplayInfo& info){
215 dpy->setInfo(WinDisplay::DEFAULT_DISPLAY,DisplayInfo(hdc,hwnd));
222 dpy->setInfo(WinDisplay::DEFAULT_DISPLAY,DisplayInfo(display,NULL))
    [all...]

Completed in 1688 milliseconds