/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
D | GLPropertyAccessor.java | 42 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()
|
D | TextureUnitPropertyAccessor.java | 43 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()
|
D | CurrentProgramPropertyAccessor.java | 43 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in CurrentProgramPropertyAccessor 45 IGLProperty currentProgramProperty = mCurrentProgramAccessor.getProperty(state); in getProperty() 59 mStateType).getProperty(state); in getProperty()
|
D | BufferSubDataTransform.java | 44 IGLProperty property = mAccessor.getProperty(state); in apply() 66 IGLProperty property = mAccessor.getProperty(state); in revert() 74 return mAccessor.getProperty(state); in getChangedProperty()
|
D | CurrentVboPropertyAccessor.java | 51 public IGLProperty getProperty(IGLProperty state) { in getProperty() method in CurrentVboPropertyAccessor 53 IGLProperty currentBinding = mVboBindingAccessor.getProperty(state); in getProperty() 64 mVboProperty).getProperty(state); in getProperty()
|
D | PropertyChangeTransform.java | 56 IGLProperty property = mAccessor.getProperty(state); in apply() 83 IGLProperty property = mAccessor.getProperty(state); in revert() 101 return mAccessor.getProperty(state); in getChangedProperty()
|
D | TexturePropertyAccessor.java | 52 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()
|
D | SparseArrayElementAddTransform.java | 40 mOldValue = propertyArray.getProperty(mKey); in apply() 68 p = mAccessor.getProperty(p); in getArray()
|
D | IGLPropertyAccessor.java | 27 IGLProperty getProperty(IGLProperty state); in getProperty() method
|
D | ListElementAddTransform.java | 60 p = mAccessor.getProperty(p); in getList()
|
D | TexImageTransform.java | 83 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/ |
D | OS.java | 26 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/ |
D | ProjectState.java | 194 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/ |
D | TextureImageDetailsProvider.java | 128 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()
|
D | VboDetailProvider.java | 137 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()
|
D | VertexAttribPointerDataDetailProvider.java | 62 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()
|
D | ShaderUniformDetailsProvider.java | 63 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()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/ |
D | PdtPlugin.java | 55 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/ |
D | LayoutMetadata.java | 94 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/ |
D | ExportGradleTest.java | 125 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/ |
D | ManifestInfoTest.java | 344 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.adt/src/com/android/ide/eclipse/adt/internal/project/ |
D | ExportHelper.java | 130 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.monitor/src/com/android/ide/eclipse/monitor/ |
D | MonitorStartup.java | 77 String revision = p.getProperty("Pkg.Revision"); //$NON-NLS-1$ in ping()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
D | LogCatMonitor.java | 94 if (AUTO_MONITOR_PREFKEY.equals(event.getProperty()) in LogCatMonitor() 97 } else if (AUTO_MONITOR_LOGLEVEL.equals(event.getProperty())) { in LogCatMonitor()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/ |
D | GLCall.java | 176 public Object getProperty(int propertyName) { in getProperty() method in GLCall
|