/frameworks/base/libs/hwui/ |
D | Properties.cpp | 26 bool Properties::drawDeferDisabled = false; 27 bool Properties::drawReorderDisabled = false; 28 bool Properties::debugLayersUpdates = false; 29 bool Properties::debugOverdraw = false; 30 bool Properties::showDirtyRegions = false; 31 bool Properties::skipEmptyFrames = true; 32 bool Properties::swapBuffersWithDamage = true; 34 DebugLevel Properties::debugLevel = kDebugDisabled; 35 OverdrawColorSet Properties::overdrawColorSet = OverdrawColorSet::Default; 36 StencilClipDebug Properties::debugStencilClip = StencilClipDebug::Hide; [all …]
|
D | ShadowTessellator.cpp | 46 if (CC_UNLIKELY(Properties::overrideAmbientRatio > 0.0f)) { in tessellateAmbientShadow() 47 heightFactor *= Properties::overrideAmbientRatio; in tessellateAmbientShadow() 72 if (CC_UNLIKELY(Properties::overrideLightPosY > 0)) { in tessellateSpotShadow() 73 adjustedLightCenter.y = - Properties::overrideLightPosY; // negated since this shifts up in tessellateSpotShadow() 75 if (CC_UNLIKELY(Properties::overrideLightPosZ > 0)) { in tessellateSpotShadow() 76 adjustedLightCenter.z = Properties::overrideLightPosZ; in tessellateSpotShadow() 90 if (CC_UNLIKELY(Properties::overrideLightRadius > 0)) { in tessellateSpotShadow() 91 lightRadius = Properties::overrideLightRadius; in tessellateSpotShadow()
|
D | Caches.cpp | 166 int overdrawColorIndex = static_cast<int>(Properties::overdrawColorSet); in getOverdrawColor() 285 if (mExtensions.hasTiledRendering() && !Properties::debugOverdraw) { in startTiling() 291 if (mExtensions.hasTiledRendering() && !Properties::debugOverdraw) { in endTiling()
|
D | FrameInfoVisualizer.cpp | 221 ProfileType newType = Properties::getProfileType(); in consumeProperties() 232 bool showDirty = Properties::showDirtyRegions; in consumeProperties()
|
D | Properties.h | 283 class Properties {
|
D | OpenGLRenderer.cpp | 252 if (Properties::debugLevel & kDebugMemory) { in finish() 346 if (Properties::debugOverdraw && getTargetFbo() == 0) { in renderOverdraw() 388 if (CC_UNLIKELY(inFrame || Properties::drawDeferDisabled)) { in updateLayer() 399 layer->debugDrawUpdate = Properties::debugLayersUpdates; in updateLayer() 414 if (CC_UNLIKELY(Properties::drawDeferDisabled)) { in updateLayers() 426 if (CC_UNLIKELY(Properties::drawDeferDisabled)) { in updateLayers() 901 if (CC_UNLIKELY(Properties::debugOverdraw && getTargetFbo() == 0 && COND)) { \ 1343 if (!Properties::debugOverdraw) { in setStencilFromClip() 1402 if (Properties::debugStencilClip == StencilClipDebug::ShowRegion in setStencilFromClip() 1493 if (CC_UNLIKELY(Properties::drawDeferDisabled)) { [all …]
|
D | Android.common.mk | 68 Properties.cpp \
|
D | TextDropShadowCache.cpp | 126 mDebugEnabled = Properties::debugLevel & kDebugMoreCaches; in init()
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/ |
D | VolumeLoader.java | 29 import java.util.Properties; 33 HashMap<String, Properties> map = new HashMap<String, Properties>(); 45 Properties[] prop = getPropertyFiles(baseDir); in VolumeLoader() 65 Properties p = map.get(name); in getVolume() 98 static Properties[] getPropertyFiles(File dir) { in getPropertyFiles() 108 Properties[]ret = new Properties[f.length]; in getPropertyFiles() 110 Properties prop = new Properties(); in getPropertyFiles()
|
D | LoaderRaw.java | 34 import java.util.Properties; 51 public static Volume buildRSVolume(final RenderScript rs, File dir, Properties prop, in buildRSVolume()
|
/frameworks/base/docs/html/tools/projects/ |
D | projects-eclipse.jd | 87 <strong>Properties</strong>, select <strong>Android</strong> and then check the desired 149 Properties for the project and select the <strong>is Library</strong> checkbox, as shown in 159 <strong>Properties</strong>.</li> 161 <li>In the <strong>Properties</strong> window, select the <strong>Android</strong> properties 166 <li>Click <strong>OK</strong> to close the <strong>Properties</strong> window.</li> 198 application project's Properties.</p> 207 <strong>Properties</strong>.</li> 209 <li>In the <strong>Properties</strong> window, select the "Android" properties group at left 217 <li>When the dialog closes, click <strong>Apply</strong> in the <strong>Properties</strong> 220 <li>Click <strong>OK</strong> to close the <strong>Properties</strong> window.</li> [all …]
|
/frameworks/data-binding/samples/BindingDemo/ |
D | build.gradle | 19 def Properties dataBindingProperties = new Properties()
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | GpsXtraDownloader.java | 27 import java.util.Properties; 46 GpsXtraDownloader(Properties properties) { in GpsXtraDownloader()
|
D | GpsLocationProvider.java | 92 import java.util.Properties; 355 private Properties mProperties; 532 private void reloadGpsProperties(Context context, Properties properties) { in reloadGpsProperties() 588 Properties properties) { in loadPropertiesFromResource() 604 Properties properties) { in loadPropertiesFromFile() 657 mProperties = new Properties(); in GpsLocationProvider() 954 private int getSuplMode(Properties properties, boolean agpsEnabled, boolean singleShot) { in getSuplMode() 1843 Properties extraProp = new Properties(); in reportNiNotification()
|
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
D | RgbPlayerActivity.java | 29 import java.util.Properties; 111 Properties prop = new Properties(); in RgbView()
|
D | VideoDumpView.java | 35 import java.util.Properties; 495 Properties prop = new Properties(); in onSurfaceChanged()
|
/frameworks/data-binding/ |
D | propLoader.gradle | 5 Properties databindingProperties = new Properties()
|
D | build.gradle | 130 Properties props = new Properties()
|
/frameworks/base/test-runner/src/junit/runner/ |
D | TestCaseClassLoader.java | 201 Properties p= new Properties(); in readExcludedPackages()
|
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/ |
D | ConfigGenerator.java | 56 import java.util.Properties; 188 Properties p = new Properties(); in loadProperties()
|
/frameworks/base/libs/hwui/renderthread/ |
D | RenderProxy.cpp | 116 needsRedraw = Properties::load(); in CREATE_BRIDGE1() 362 Properties::overrideProperty(args->name, args->value); in CREATE_BRIDGE2()
|
D | EglManager.cpp | 265 if (CC_LIKELY(Properties::swapBuffersWithDamage)) { in swapBuffers()
|
D | RenderThread.cpp | 147 Properties::load(); in RenderThread()
|
/frameworks/native/libs/input/tests/ |
D | InputEvent_test.cpp | 175 TEST_F(KeyEventTest, Properties) { in TEST_F() argument 426 TEST_F(MotionEventTest, Properties) { in TEST_F() argument
|
/frameworks/base/libs/hwui/renderstate/ |
D | RenderState.cpp | 163 if (Properties::debugOverdraw && mFramebuffer == 0) { in debugOverdraw()
|