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

  /external/chromium_org/chrome/browser/extensions/api/system_display/
display_info_provider.h 17 api::system_display::DisplayUnitInfo> > DisplayInfo;
30 // thread if needed (using SystemInfoProvider<DisplayInfo>::StartQuery()).
46 const DisplayInfo& display_info() const;
61 DisplayInfo info_;
  /frameworks/native/include/ui/
DisplayInfo.h 27 struct DisplayInfo {
  /external/chromium_org/ash/display/
display_info.cc 31 DisplayInfo DisplayInfo::CreateFromSpec(const std::string& spec) {
36 DisplayInfo DisplayInfo::CreateFromSpecWithID(const std::string& spec,
101 DisplayInfo display_info(
121 DisplayInfo::DisplayInfo()
131 DisplayInfo::DisplayInfo(int64 id,
144 DisplayInfo::~DisplayInfo()
    [all...]
display_info.h 29 // DisplayInfo contains metadata for each display. This is used to
33 class ASH_EXPORT DisplayInfo {
35 // Creates a DisplayInfo from string spec. 100+200-1440x800 creates display
64 static DisplayInfo CreateFromSpec(const std::string& spec);
66 // Creates a DisplayInfo from string spec using given |id|.
67 static DisplayInfo CreateFromSpecWithID(const std::string& spec,
70 DisplayInfo();
71 DisplayInfo(int64 id, const std::string& name, bool has_overscan);
72 ~DisplayInfo();
110 void Copy(const DisplayInfo& another_info)
    [all...]
  /external/chromium_org/ash/test/
display_manager_test_api.cc 19 typedef internal::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));
53 std::vector<DisplayInfo> display_info_list =
57 const DisplayInfo& display_info = display_info_list[i];
72 for (std::vector<DisplayInfo>::iterator iter = display_info_list.begin();
  /frameworks/base/core/java/android/view/
DisplayInfo.java 32 public final class DisplayInfo implements Parcelable {
199 public static final Creator<DisplayInfo> CREATOR = new Creator<DisplayInfo>() {
201 public DisplayInfo createFromParcel(Parcel source) {
202 return new DisplayInfo(source);
206 public DisplayInfo[] newArray(int size) {
207 return new DisplayInfo[size];
211 public DisplayInfo() {
214 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 26 struct DisplayInfo{
27 DisplayInfo():dc(NULL),hwnd(NULL),isPixelFormatSet(false){};
28 DisplayInfo(HDC hdc,HWND wnd):isPixelFormatSet(false){dc = hdc; hwnd = wnd;};
35 std::map<int,DisplayInfo> m_map;
55 DisplayInfo& getInfo(int configurationIndex){ return getTLS()->m_map[configurationIndex];}
57 void setInfo(int configurationIndex,const DisplayInfo& info);
67 for(std::map<int,DisplayInfo>::iterator it = tls->m_map.begin(); it != tls->m_map.end();it++){
79 void WinDisplay::setInfo(int configurationIndex,const DisplayInfo& info){
217 dpy->setInfo(WinDisplay::DEFAULT_DISPLAY,DisplayInfo(hdc,hwnd));
224 dpy->setInfo(WinDisplay::DEFAULT_DISPLAY,DisplayInfo(display,NULL))
    [all...]

Completed in 1046 milliseconds