Home
last modified time | relevance | path

Searched refs:getProperty (Results 1 – 25 of 69) sorted by relevance

123

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
DGLPropertyAccessor.java42 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in GLPropertyAccessor
46 IGLProperty successor = e.getProperty(root); in getProperty()
84 IGLProperty getProperty(IGLProperty p); in getProperty() method
96 public IGLProperty getProperty(IGLProperty p) { in getProperty() method in GLPropertyAccessor.GLNamePropertyExtractor
98 return ((GLCompositeProperty) p).getProperty(mType); in getProperty()
114 public IGLProperty getProperty(IGLProperty p) { in getProperty() method in GLPropertyAccessor.GLIndexPropertyExtractor
119 return ((GLSparseArrayProperty) p).getProperty(mIndex); in getProperty()
DTextureUnitPropertyAccessor.java43 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in TextureUnitPropertyAccessor
45 IGLProperty activeTextureProperty = mActiveTextureAccessor.getProperty(state); in getProperty()
57 return targetAccessor.getProperty(state); in getProperty()
DCurrentProgramPropertyAccessor.java43 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in CurrentProgramPropertyAccessor
45 IGLProperty currentProgramProperty = mCurrentProgramAccessor.getProperty(state); in getProperty()
59 mStateType).getProperty(state); in getProperty()
DCurrentVboPropertyAccessor.java51 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in CurrentVboPropertyAccessor
53 IGLProperty currentBinding = mVboBindingAccessor.getProperty(state); in getProperty()
64 mVboProperty).getProperty(state); in getProperty()
DBufferSubDataTransform.java44 IGLProperty property = mAccessor.getProperty(state); in apply()
66 IGLProperty property = mAccessor.getProperty(state); in revert()
74 return mAccessor.getProperty(state); in getChangedProperty()
DPropertyChangeTransform.java56 IGLProperty property = mAccessor.getProperty(state); in apply()
83 IGLProperty property = mAccessor.getProperty(state); in revert()
101 return mAccessor.getProperty(state); in getChangedProperty()
DTexturePropertyAccessor.java52 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in TexturePropertyAccessor
54 IGLProperty targetTexture = mTextureUnitPropertyAccessor.getProperty(state); in getProperty()
78 return textureAccessor.getProperty(state); in getProperty()
DSparseArrayElementAddTransform.java40 mOldValue = propertyArray.getProperty(mKey); in apply()
68 p = mAccessor.getProperty(p); in getArray()
DIGLPropertyAccessor.java27 IGLProperty getProperty(IGLProperty state); in getProperty() method
DListElementAddTransform.java60 p = mAccessor.getProperty(p); in getList()
DTexImageTransform.java83 IGLProperty property = mAccessor.getProperty(currentState); in apply()
115 IGLProperty property = mAccessor.getProperty(state); in revert()
123 return mAccessor.getProperty(state); in getChangedProperty()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
DOS.java26 String osName = System.getProperty("os.name");
31 String version = System.getProperty("os.version");
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DProjectState.java194 String rootPath = mProperties.getProperty(propName); in ProjectState()
213 public @Nullable String getProperty(@NonNull String name) { in getProperty() method in ProjectState
215 return mProperties.getProperty(name); in getProperty()
238 return mProperties.getProperty(ProjectProperties.PROPERTY_TARGET); in getTargetHashString()
259 return mProperties.getProperty(ProjectProperties.PROPERTY_BUILD_TOOLS); in getBuildToolInfoVersion()
263 String supportModeValue = mProperties.getProperty(ProjectProperties.PROPERTY_RS_SUPPORT); in getRenderScriptSupportMode()
313 String rootPath = mProperties.getProperty(propName); in reloadProperties()
376 String value = mProperties.getProperty(ProjectProperties.PROPERTY_LIBRARY); in isLibrary()
628 String rootPath = mProperties.getProperty(propName); in replaceLibraryProperty()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DTextureImageDetailsProvider.java128 return ((GLCompositeProperty) state).getProperty(GLStateType.TEXTURE_IMAGE); in getImageFromPerTextureLevelState()
145 ((GLCompositeProperty) state).getProperty(GLStateType.TEXTURE_MIPMAPS); in getFirstMipmapImage()
150 IGLProperty perTextureLevelState = ((GLSparseArrayProperty) mipmaps).getProperty(0); in getFirstMipmapImage()
DVertexAttribPointerDataDetailProvider.java62 GLEnum type = (GLEnum) call.getProperty(GLCall.PROPERTY_VERTEX_ATTRIB_POINTER_TYPE); in updateControl()
63 byte[] data = (byte[]) call.getProperty(GLCall.PROPERTY_VERTEX_ATTRIB_POINTER_DATA); in updateControl()
DVboDetailProvider.java137 IGLProperty sizeProperty = vboProperty.getProperty(GLStateType.BUFFER_SIZE); in updateControl()
140 IGLProperty usageProperty = vboProperty.getProperty(GLStateType.BUFFER_USAGE); in updateControl()
143 IGLProperty typeProperty = vboProperty.getProperty(GLStateType.BUFFER_TYPE); in updateControl()
146 IGLProperty dataProperty = vboProperty.getProperty(GLStateType.BUFFER_DATA); in updateControl()
DShaderUniformDetailsProvider.java63 IGLProperty nameProperty = uniformProperty.getProperty(GLStateType.UNIFORM_NAME); in updateControl()
64 IGLProperty typeProperty = uniformProperty.getProperty(GLStateType.UNIFORM_TYPE); in updateControl()
65 IGLProperty valueProperty = uniformProperty.getProperty(GLStateType.UNIFORM_VALUE); in updateControl()
DShaderSourceDetailsProvider.java93 return ((GLCompositeProperty) state).getProperty(GLStateType.SHADER_SOURCE); in getShaderSourceProperty()
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
DPdtPlugin.java55 if (PrefPage.PREFS_DEVTREE_DIR.equals(event.getProperty())) { in start()
135 String os = System.getProperty("os.name"); //$NON-NLS-1$ in currentPlatform()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DLayoutMetadata.java94 public static String getProperty(@NonNull XmlPullParser parser, @NonNull String name) { in getProperty() method in LayoutMetadata
147 public static String getProperty( in getProperty() method in LayoutMetadata
332 String header = getProperty(xmlNode, KEY_LV_HEADER); in getNodeBinding()
333 String footer = getProperty(xmlNode, KEY_LV_FOOTER); in getNodeBinding()
334 String layout = getProperty(xmlNode, KEY_LV_ITEM); in getNodeBinding()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
DExportGradleTest.java125 Object property = job.getProperty(ERROR_KEY); in testSimpleAndroidApp()
202 Object property = job.getProperty(ERROR_KEY); in testSimpleAndroidLib()
239 Object property = job.getProperty(ERROR_KEY); in testPlainJavaProject()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
DManifestInfoTest.java344 public String getProperty(String name) { in getProperty() method in ManifestInfoTest.TestAndroidTarget
349 public Integer getProperty(String name, Integer defaultValue) { in getProperty() method in ManifestInfoTest.TestAndroidTarget
354 public Boolean getProperty(String name, Boolean defaultValue) { in getProperty() method in ManifestInfoTest.TestAndroidTarget
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
DMonitorStartup.java77 String revision = p.getProperty("Pkg.Revision"); //$NON-NLS-1$ in ping()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DExportHelper.java130 String forceJumboStr = projectState.getProperty(AdtConstants.DEX_OPTIONS_FORCEJUMBO); in exportReleaseApk()
133 String dexMergerStr = projectState.getProperty(AdtConstants.DEX_OPTIONS_DISABLE_MERGER); in exportReleaseApk()
182 String proguardConfig = state.getProperties().getProperty( in exportReleaseApk()
201 path = System.getProperty(HOME_PROPERTY) + in exportReleaseApk()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DGLCompositeProperty.java46 public IGLProperty getProperty(GLStateType name) { in getProperty() method in GLCompositeProperty

123