HomeSort by relevance Sort by last modified time
    Searched refs:mCachedAttributesArray (Results 1 - 2 of 2) sorted by null

  /sdk/uiautomatorviewer/src/com/android/uiautomator/tree/
RootWindowNode.java 24 private Object[] mCachedAttributesArray;
37 if (mCachedAttributesArray == null) {
38 mCachedAttributesArray = new Object[]{new AttributePair("window-name", mWindowName)};
40 return mCachedAttributesArray;
UiNode.java 31 private Object[] mCachedAttributesArray;
114 if (mCachedAttributesArray == null) {
115 mCachedAttributesArray = new Object[mAttributes.size()];
118 mCachedAttributesArray[i++] = new AttributePair(attr, mAttributes.get(attr));
121 return mCachedAttributesArray;

Completed in 259 milliseconds