/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/ |
D | RemoteLayoutLogAdapter.java | 33 public void warning(String tag, String message, Object viewCookie, Object data) { in warning() argument 35 mLog.warning(tag, message, viewCookie, null); in warning() 42 public void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument 45 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); in fidelityWarning() 52 public void error(String tag, String message, Object viewCookie, Object data) { in error() argument 54 mLog.error(tag, message, viewCookie, null); in error() 61 public void error(String tag, String message, Throwable throwable, Object viewCookie, in error() argument 64 mLog.error(tag, message, throwable, viewCookie, null); in error()
|
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/ |
D | RemoteLayoutLogAdapter.java | 40 public void warning(String tag, String message, Object viewCookie, Serializable data) { in warning() argument 41 mLog.warning(tag, message, viewCookie, null); in warning() 45 public void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument 47 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); in fidelityWarning() 51 public void error(String tag, String message, Object viewCookie, Serializable data) { in error() argument 52 mLog.error(tag, message, viewCookie, null); in error() 56 …public void error(String tag, String message, Throwable throwable, Object viewCookie, Serializable… in error() argument 57 mLog.error(tag, message, throwable, viewCookie, null); in error()
|
/frameworks/layoutlib/bridge/src/com/android/internal/view/menu/ |
D | BridgeMenuItemImpl.java | 34 private Object viewCookie; field in BridgeMenuItemImpl 51 return viewCookie; in getViewCookie() 54 public void setViewCookie(Object viewCookie) { in setViewCookie() argument 59 mContext.addViewKey(actionView, viewCookie); in setViewCookie() 63 this.viewCookie = viewCookie; in setViewCookie()
|
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/ |
D | RemoteLayoutLog.java | 37 …void warning(String tag, String message, Object viewCookie, Serializable data) throws RemoteExcept… in warning() argument 51 void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument 62 …void error(String tag, String message, Object viewCookie, Serializable data) throws RemoteExceptio… in error() argument 73 … void error(String tag, String message, Throwable throwable, Object viewCookie, Serializable data) in error() argument
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/ |
D | SupportPreferencesUtil.java | 155 @NonNull Context themedContext, @NonNull ArrayList<Object> viewCookie, in setUpPreferencesListView() argument 163 if (!viewCookie.isEmpty()) { in setUpPreferencesListView() 164 bridgeContext.addViewKey(listView, viewCookie.get(0)); in setUpPreferencesListView() 201 if (arrayPosition >= 0 && arrayPosition < viewCookie.size()) { in setUpPreferencesListView() 202 bridgeContext.addViewKey(itemView, viewCookie.get(arrayPosition)); in setUpPreferencesListView() 259 ArrayList<Object> viewCookie = new ArrayList<>(); in inflatePreference() local 276 viewCookie.add(this.getViewCookie()); in inflatePreference() 297 LinearLayout listView = setUpPreferencesListView(bridgeContext, context, viewCookie, in inflatePreference()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | Bridge.java | 127 public void error(String tag, String message, Object viewCookie, Object data) { 132 public void error(String tag, String message, Throwable throwable, Object viewCookie, 138 public void warning(String tag, String message, Object viewCookie, Object data) {
|