Searched defs:viewObject (Results 1 - 5 of 5) sorted by last modified time

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java387 public Result getViewParent(Object viewObject) { argument
388 if (viewObject instanceof View) {
389 return Status.SUCCESS.createResult(((View)viewObject).getParent());
392 throw new IllegalArgumentException("viewObject is not a View");
396 public Result getViewIndex(Object viewObject) { argument
397 if (viewObject instanceof View) {
398 View view = (View) viewObject;
408 throw new IllegalArgumentException("viewObject is not a View");
H A DBridgeRenderSession.java72 public Map<String, String> getDefaultProperties(Object viewObject) { argument
73 return mSession.getDefaultProperties(viewObject);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java1650 public Map<String, String> getDefaultProperties(Object viewObject) { argument
1651 return getContext().getDefaultPropMap(viewObject);
H A DSystemViewInfo.java35 int right, int bottom, Object viewObject, Object layoutParamsObject) {
36 super(name, cookie, left, top, right, bottom, viewObject,
34 SystemViewInfo(String name, Object cookie, int left, int top, int right, int bottom, Object viewObject, Object layoutParamsObject) argument
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DLayoutLibTestCallback.java175 Object viewObject) {
174 getAdapterBinding(ResourceReference adapterViewRef, Object adapterCookie, Object viewObject) argument

Completed in 183 milliseconds