Searched refs:Properties (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/libs/hwui/tests/unit/
H A DTestUtilsTests.cpp18 #include "Properties.h"
25 bool previous = Properties::debugOverdraw;
27 ScopedProperty<bool> debugOverdraw(Properties::debugOverdraw, true);
28 EXPECT_TRUE(Properties::debugOverdraw);
30 EXPECT_EQ(previous, Properties::debugOverdraw);
32 ScopedProperty<bool> debugOverdraw(Properties::debugOverdraw, false);
33 EXPECT_FALSE(Properties::debugOverdraw);
35 EXPECT_EQ(previous, Properties::debugOverdraw);
H A DBakedOpDispatcherTests.cpp239 ScopedProperty<bool> ovdProp(Properties::debugOverdraw, debugOverdraw);
240 ScopedProperty<bool> lupProp(Properties::debugLayersUpdates, debugLayersUpdates);
/frameworks/base/libs/hwui/
H A DProperties.cpp16 #include "Properties.h"
30 bool Properties::drawDeferDisabled = false;
31 bool Properties::drawReorderDisabled = false;
32 bool Properties::debugLayersUpdates = false;
33 bool Properties::debugOverdraw = false;
34 bool Properties::showDirtyRegions = false;
35 bool Properties::skipEmptyFrames = true;
36 bool Properties::useBufferAge = true;
37 bool Properties::enablePartialUpdates = true;
39 float Properties
[all...]
H A DGammaFontRenderer.cpp19 #include "Properties.h"
28 const float gamma = 1.0f / Properties::textGamma;
H A DShadowTessellator.cpp23 #include "Properties.h"
42 if (CC_UNLIKELY(Properties::overrideAmbientRatio > 0.0f)) {
43 heightFactor *= Properties::overrideAmbientRatio;
68 if (CC_UNLIKELY(Properties::overrideLightPosY > 0)) {
69 adjustedLightCenter.y = - Properties::overrideLightPosY; // negated since this shifts up
71 if (CC_UNLIKELY(Properties::overrideLightPosZ > 0)) {
72 adjustedLightCenter.z = Properties::overrideLightPosZ;
91 if (CC_UNLIKELY(Properties::overrideLightRadius > 0)) {
92 lightRadius = Properties::overrideLightRadius;
H A DFboCache.cpp21 #include "Properties.h"
31 : mMaxSize(Properties::fboCacheSize) {}
H A DVectorDrawable.h91 class Properties { class in class:android::uirenderer::VectorDrawable::Node
93 Properties(Node* node) : mNode(node) {} function in class:android::uirenderer::VectorDrawable::Node::Properties
113 virtual void onPropertyChanged(Properties* properties) = 0;
133 class PathProperties : public Properties {
135 PathProperties(Node* node) : Properties(node) {}
168 virtual void onPropertyChanged(Properties* prop) override {
205 class FullPathProperties : public Properties {
221 FullPathProperties(Node* mNode) : Properties(mNode), mTrimDirty(false) {}
367 virtual void onPropertyChanged(Properties* properties) override {
410 class GroupProperties : public Properties {
[all...]
H A DProperties.h253 class Properties { class in namespace:android::uirenderer
H A DTextureCache.cpp25 #include "Properties.h"
38 , mMaxSize(Properties::textureCacheSize)
39 , mFlushRate(Properties::textureCacheFlushRate)
46 mDebugEnabled = Properties::debugLevel & kDebugCaches;
H A DRenderBufferCache.cpp18 #include "Properties.h"
45 , mMaxSize(Properties::renderBufferCacheSize) {}
H A DFrameInfoVisualizer.cpp225 ProfileType newType = Properties::getProfileType();
236 bool showDirty = Properties::showDirtyRegions;
H A DTextDropShadowCache.cpp23 #include "Properties.h"
97 : TextDropShadowCache(Properties::textDropShadowCacheSize) {}
104 mDebugEnabled = Properties::debugLevel & kDebugMoreCaches;
H A DLayerCache.cpp20 #include "Properties.h"
35 , mMaxSize(Properties::layerPoolSize) {}
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DVolumeLoader.java29 import java.util.Properties;
33 HashMap<String, Properties> map = new HashMap<String, Properties>();
45 Properties[] prop = getPropertyFiles(baseDir);
65 Properties p = map.get(name);
98 static Properties[] getPropertyFiles(File dir) {
108 Properties[]ret = new Properties[f.length];
110 Properties prop = new Properties();
[all...]
H A DLoaderRaw.java34 import java.util.Properties;
51 public static Volume buildRSVolume(final RenderScript rs, File dir, Properties prop,
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
H A DDataBindingBuilder.java37 import java.util.Properties;
84 Properties props = new Properties();
185 public Versions(Properties properties) {
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsXtraDownloader.java25 import java.util.Properties;
48 GpsXtraDownloader(Properties properties) {
49 // read XTRA servers from the Properties object
/frameworks/data-binding/
H A DpropLoader.gradle5 Properties databindingProperties = new Properties()
/frameworks/support/buildSrc/
H A DstudioCompat.gradle138 Properties localProps = new Properties()
/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
H A DTestSoundTriggerActivity.java24 import java.util.Properties;
98 Properties properties = new Properties();
108 Properties dummyModelProperties = new Properties();
116 private void createModelInfoAndWidget(Properties properties) {
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java29 import java.util.Properties;
111 Properties prop = new Properties();
/frameworks/base/libs/hwui/renderthread/
H A DEglManager.cpp21 #include "Properties.h"
117 if (Properties::enablePartialUpdates) {
118 if (Properties::useBufferAge && EglExtensions.bufferAge) {
333 if (CC_UNLIKELY(Properties::waitForGpuCompletion)) {
/frameworks/base/test-runner/src/junit/runner/
H A DTestCaseClassLoader.java201 Properties p= new Properties();
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DConfigGenerator.java56 import java.util.Properties;
203 Properties p = new Properties();
/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp20 #include "Properties.h"
206 Properties::waitForGpuCompletion = true;

Completed in 1042 milliseconds

123