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

  /external/webkit/Source/WebCore/platform/brew/
ScreenBrew.cpp 43 struct DisplayInfo {
49 static void getDisplayInfo(DisplayInfo& info)
64 DisplayInfo info;
77 DisplayInfo info;
  /frameworks/native/include/ui/
DisplayInfo.h 27 struct DisplayInfo {
  /frameworks/base/core/java/android/view/
DisplayInfo.java 30 public final class DisplayInfo implements Parcelable {
180 public static final Creator<DisplayInfo> CREATOR = new Creator<DisplayInfo>() {
182 public DisplayInfo createFromParcel(Parcel source) {
183 return new DisplayInfo(source);
187 public DisplayInfo[] newArray(int size) {
188 return new DisplayInfo[size];
192 public DisplayInfo() {
195 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 71 milliseconds