OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DisplayInfo
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/system_display/
system_display_api.cc
24
api::system_display::DisplayUnitInfo> >
DisplayInfo
;
27
DisplayInfo
all_displays_info =
display_info_provider.h
20
api::system_display::DisplayUnitInfo> >
DisplayInfo
;
33
DisplayInfo
GetAllDisplaysInfo();
/frameworks/native/include/ui/
DisplayInfo.h
27
struct
DisplayInfo
{
/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();
/external/chromium_org/ash/display/
display_info.cc
31
DisplayInfo
DisplayInfo
::CreateFromSpec(const std::string& spec) {
36
DisplayInfo
DisplayInfo
::CreateFromSpecWithID(const std::string& spec,
115
DisplayInfo
display_info(
136
DisplayInfo
::
DisplayInfo
()
147
DisplayInfo
::
DisplayInfo
(int64 id,
161
DisplayInfo
::~DisplayInfo()
[
all
...]
display_info.h
28
//
DisplayInfo
contains metadata for each display. This is used to
32
class ASH_EXPORT
DisplayInfo
{
34
// Creates a
DisplayInfo
from string spec. 100+200-1440x800 creates display
69
static
DisplayInfo
CreateFromSpec(const std::string& spec);
71
// Creates a
DisplayInfo
from string spec using given |id|.
72
static
DisplayInfo
CreateFromSpecWithID(const std::string& spec,
75
DisplayInfo
();
76
DisplayInfo
(int64 id, const std::string& name, bool has_overscan);
77
~
DisplayInfo
();
128
void Copy(const
DisplayInfo
& another_info)
[
all
...]
/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 114 milliseconds