HomeSort by relevance Sort by last modified time
    Searched refs:ResTable_config (Results 1 - 16 of 16) sorted by null

  /frameworks/base/tools/aapt/
ResourceFilter.h 23 bool match(int axis, const ResTable_config& config) const;
24 bool match(const ResTable_config& config) const;
AaptAssets.cpp 117 ResTable_config config;
172 *value = (config.screenLayout&ResTable_config::MASK_SCREENSIZE);
179 *value = (config.screenLayout&ResTable_config::MASK_SCREENLONG);
193 *value = (config.uiMode&ResTable_config::MASK_UI_MODE_TYPE);
200 *value = (config.uiMode&ResTable_config::MASK_UI_MODE_NIGHT);
264 AaptGroupEntry::getConfigValueForAxis(const ResTable_config& config, int axis)
275 return config.screenLayout&ResTable_config::MASK_SCREENSIZE;
279 return (config.uiMode&ResTable_config::MASK_UI_MODE_TYPE);
281 return (config.uiMode&ResTable_config::MASK_UI_MODE_NIGHT);
307 AaptGroupEntry::configSameExcept(const ResTable_config& config
    [all...]
AaptAssets.h 82 static uint32_t getConfigValueForAxis(const ResTable_config& config, int axis);
84 static bool configSameExcept(const ResTable_config& config,
85 const ResTable_config& otherConfig, int axis);
87 static bool getMccName(const char* name, ResTable_config* out = NULL);
88 static bool getMncName(const char* name, ResTable_config* out = NULL);
89 static bool getLocaleName(const char* name, ResTable_config* out = NULL);
90 static bool getScreenLayoutSizeName(const char* name, ResTable_config* out = NULL);
91 static bool getScreenLayoutLongName(const char* name, ResTable_config* out = NULL);
92 static bool getOrientationName(const char* name, ResTable_config* out = NULL);
93 static bool getUiModeTypeName(const char* name, ResTable_config* out = NULL)
    [all...]
ResourceTable.h 54 const ResTable_config& defParams,
95 const ResTable_config* params = NULL,
105 const ResTable_config* params = NULL,
118 const ResTable_config* params = NULL,
130 const ResTable_config& config) const;
326 struct ConfigDescription : public ResTable_config {
329 size = sizeof(ResTable_config);
331 ConfigDescription(const ResTable_config&o) {
332 *static_cast<ResTable_config*>(this) = o;
333 size = sizeof(ResTable_config);
    [all...]
ResourceFilter.cpp 89 ResourceFilter::match(int axis, const ResTable_config& config) const
95 ResourceFilter::match(const ResTable_config& config) const
Command.cpp 458 ResTable_config config;
463 config.orientation = ResTable_config::ORIENTATION_PORT;
464 config.density = ResTable_config::DENSITY_MEDIUM;
593 Vector<ResTable_config> configs;
786 ResTable_config tmpConfig = config;
    [all...]
ResourceTable.cpp 562 bool localeIsDefined(const ResTable_config& config)
570 const ResTable_config& config,
641 const ResTable_config& config,
723 const ResTable_config& defParams,
815 ResTable_config curParams(defParams);
817 ResTable_config pseudoParams(curParams);
    [all...]
Resource.cpp 86 inline const ResTable_config& getParams() const { return mParams; }
160 ResTable_config mParams;
    [all...]
  /frameworks/base/include/android_runtime/
android_content_res_Configuration.h 25 struct AConfiguration : android::ResTable_config {
  /frameworks/base/native/android/
configuration.cpp 83 return config->inputFlags&ResTable_config::MASK_KEYSHIDDEN;
87 return (config->inputFlags&ResTable_config::MASK_NAVHIDDEN)
88 >> ResTable_config::SHIFT_NAVHIDDEN;
96 return config->screenLayout&ResTable_config::MASK_SCREENSIZE;
100 return (config->screenLayout&ResTable_config::MASK_SCREENLONG)
101 >> ResTable_config::SHIFT_SCREENLONG;
105 return config->uiMode&ResTable_config::MASK_UI_MODE_TYPE;
109 return (config->uiMode&ResTable_config::MASK_UI_MODE_NIGHT)
110 >> ResTable_config::SHIFT_UI_MODE_NIGHT;
167 config->inputFlags = (config->inputFlags&~ResTable_config::MASK_KEYSHIDDEN
    [all...]
  /frameworks/base/include/utils/
ResourceTypes.h 800 struct ResTable_config
984 inline void copyFromDeviceNoSwap(const ResTable_config& o) {
986 if (size >= sizeof(ResTable_config)) {
990 memset(((uint8_t*)this)+size, 0, sizeof(ResTable_config)-size);
994 inline void copyFromDtoH(const ResTable_config& o) {
996 size = sizeof(ResTable_config);
    [all...]
AssetManager.h 54 struct ResTable_config;
130 void setConfiguration(const ResTable_config& config, const char* locale = NULL);
132 void getConfiguration(ResTable_config* outConfig) const;
355 ResTable_config* mConfig;
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 62 << ResTable_config::SHIFT_NAVHIDDEN;
android_util_AssetManager.cpp 83 uint32_t typeSpecFlags, ResTable_config* config = NULL);
87 uint32_t typeSpecFlags, ResTable_config* config)
523 ResTable_config config;
695 ResTable_config config;
894 ResTable_config config;
    [all...]
  /frameworks/base/libs/utils/
ResourceTypes.cpp     [all...]
AssetManager.cpp 116 mResources(NULL), mConfig(new ResTable_config),
121 memset(mConfig, 0, sizeof(ResTable_config));
427 void AssetManager::setConfiguration(const ResTable_config& config, const char* locale)
451 void AssetManager::getConfiguration(ResTable_config* outConfig) const
    [all...]

Completed in 220 milliseconds