OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:changedProperties
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java
220
Set<IGLProperty>
changedProperties
= null;
224
changedProperties
= updateState(mCurrentStateIndex,
239
mLabelProvider.setChangedProperties(
changedProperties
);
292
Set<IGLProperty>
changedProperties
= new HashSet<IGLProperty>(setSizeHint);
301
changedProperties
.addAll(getHierarchy(changedProperty));
311
return
changedProperties
;
316
Set<IGLProperty>
changedProperties
= new HashSet<IGLProperty>(setSizeHint);
328
changedProperties
.addAll(getHierarchy(changedProperty));
333
return
changedProperties
;
341
List<IGLProperty>
changedProperties
= new ArrayList<IGLProperty>(5)
[
all
...]
StateLabelProvider.java
100
public void setChangedProperties(Set<IGLProperty>
changedProperties
) {
101
mChangedProperties =
changedProperties
;
/libcore/luni/src/main/java/java/security/
Provider.java
74
private transient LinkedHashMap<Object, Object>
changedProperties
;
168
changedProperties
= null;
195
if (
changedProperties
== null) {
196
changedProperties
= new LinkedHashMap<Object, Object>();
210
if (
changedProperties
.remove(key) == null) {
213
changedProperties
.put(key, value);
257
if (
changedProperties
!= null &&
changedProperties
.remove(key) == null) {
260
if (
changedProperties
== null) {
261
changedProperties
= new LinkedHashMap<Object, Object>()
[
all
...]
Completed in 599 milliseconds