/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 | 155 ResTable_config config; 189 *value = (config.screenLayout&ResTable_config::MASK_LAYOUTDIR); 217 *value = (config.screenLayout&ResTable_config::MASK_SCREENSIZE); 224 *value = (config.screenLayout&ResTable_config::MASK_SCREENLONG); 238 *value = (config.uiMode&ResTable_config::MASK_UI_MODE_TYPE); 245 *value = (config.uiMode&ResTable_config::MASK_UI_MODE_NIGHT); 309 AaptGroupEntry::getConfigValueForAxis(const ResTable_config& config, int axis) 320 return config.screenLayout&ResTable_config::MASK_LAYOUTDIR; 322 return config.screenLayout&ResTable_config::MASK_SCREENSIZE; 326 return (config.uiMode&ResTable_config::MASK_UI_MODE_TYPE) [all...] |
AaptAssets.h | 76 static uint32_t getConfigValueForAxis(const ResTable_config& config, int axis); 78 static bool configSameExcept(const ResTable_config& config, 79 const ResTable_config& otherConfig, int axis); 81 static bool getMccName(const char* name, ResTable_config* out = NULL); 82 static bool getMncName(const char* name, ResTable_config* out = NULL); 83 static bool getLocaleName(const char* name, ResTable_config* out = NULL); 84 static bool getScreenLayoutSizeName(const char* name, ResTable_config* out = NULL); 85 static bool getScreenLayoutLongName(const char* name, ResTable_config* out = NULL); 86 static bool getOrientationName(const char* name, ResTable_config* out = NULL); 87 static bool getUiModeTypeName(const char* name, ResTable_config* out = NULL) [all...] |
ResourceTable.h | 54 const ResTable_config& defParams, 79 struct ConfigDescription : public ResTable_config { 82 size = sizeof(ResTable_config); 84 ConfigDescription(const ResTable_config&o) { 85 *static_cast<ResTable_config*>(this) = o; 86 size = sizeof(ResTable_config); 89 *static_cast<ResTable_config*>(this) = o; 92 ConfigDescription& operator=(const ResTable_config& o) { 93 *static_cast<ResTable_config*>(this) = o; 94 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
|
StringPool.h | 53 Vector<ResTable_config> configs; 96 const String8* configTypeName = NULL, const ResTable_config* config = NULL); 99 const String8* configTypeName = NULL, const ResTable_config* config = NULL);
|
Command.cpp | 519 ResTable_config config; 524 config.orientation = ResTable_config::ORIENTATION_PORT; 525 config.density = ResTable_config::DENSITY_MEDIUM; 663 Vector<ResTable_config> configs; [all...] |
ResourceTable.cpp | 563 bool localeIsDefined(const ResTable_config& config) 571 const ResTable_config& config, 666 const ResTable_config& config, 756 const ResTable_config& defParams, 854 ResTable_config curParams(defParams); 856 ResTable_config pseudoParams(curParams); [all...] |
StringPool.cpp | 110 const String8* configTypeName, const ResTable_config* config) 120 bool mergeDuplicates, const String8* configTypeName, const ResTable_config* config)
|
Resource.cpp | 91 inline const ResTable_config& getParams() const { return mParams; } 165 ResTable_config mParams; [all...] |
/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; 127 return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR [all...] |
/frameworks/base/include/android_runtime/ |
android_content_res_Configuration.h | 25 struct AConfiguration : android::ResTable_config {
|
/frameworks/base/include/androidfw/ |
ResourceTypes.h | 814 struct ResTable_config [all...] |
AssetManager.h | 55 struct ResTable_config; 131 void setConfiguration(const ResTable_config& config, const char* locale = NULL); 133 void getConfiguration(ResTable_config* outConfig) const; 356 ResTable_config* mConfig;
|
/frameworks/base/libs/androidfw/ |
ResourceTypes.cpp | [all...] |
AssetManager.cpp | 147 mResources(NULL), mConfig(new ResTable_config), 152 memset(mConfig, 0, sizeof(ResTable_config)); 458 void AssetManager::setConfiguration(const ResTable_config& config, const char* locale) 482 void AssetManager::getConfiguration(ResTable_config* outConfig) const [all...] |
/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) 516 ResTable_config config; 708 ResTable_config config; 907 ResTable_config config; [all...] |