Home
last modified time | relevance | path

Searched refs:inflateView (Results 1 – 11 of 11) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
DViewLoaderTest.java61 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/media"); in testCreatesCorrectClasses()
69 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnDefaultScreenSize()
77 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPath()
85 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath()
93 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnDefaultVersion()
101 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnNewestVersion()
110 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPathWithVersionNumber()
119 … ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes"); in testChoosesLayoutBasedOnSearchPath_choosesBestFileFoundOnPathWithVersionNumber()
126 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/webview_holder"); in testWebView()
136 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/media"); in testAddsChildren()
[all …]
DResourceLoaderTest.java49 resourceLoader.inflateView(Robolectric.application, R.layout.text_views, vg); in shouldThrowExceptionOnI18nStrictModeInflateView()
71 …ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.differen… in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath()
89 …ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.differen… in checkForPollutionHelper()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DViewLoader.java80 public View inflateView(Context context, String key) { in inflateView() method in ViewLoader
81 return inflateView(context, key, null); in inflateView()
84 public View inflateView(Context context, String key, View parent) { in inflateView() method in ViewLoader
85 return inflateView(context, key, null, parent); in inflateView()
88 public View inflateView(Context context, int resourceId, View parent) { in inflateView() method in ViewLoader
89 return inflateView(context, resourceExtractor.getResourceName(resourceId), parent); in inflateView()
92 …private View inflateView(Context context, String layoutName, Map<String, String> attributes, View … in inflateView() method in ViewLoader
190 View view = inflateView(context, layout.substring(1), attributes, parent); in create()
DResourceLoader.java395 public View inflateView( Context context, int resource, ViewGroup viewGroup ) { in inflateView() method in ResourceLoader
397 return viewLoader.inflateView( context, resource, viewGroup ); in inflateView()
/external/skia/src/views/
DSkViewInflate.cpp50 this->inflateView(parent, dom, node); in rInflate()
53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) in inflateView() function in SkViewInflate
/external/chromium_org/third_party/skia/src/views/
DSkViewInflate.cpp50 this->inflateView(parent, dom, node); in rInflate()
53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) in inflateView() function in SkViewInflate
/external/skia/include/views/
DSkViewInflate.h51 virtual void inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node);
/external/chromium_org/third_party/skia/include/views/
DSkViewInflate.h51 virtual void inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLayoutInflater.java43 return getResourceLoader().inflateView(context, resource, attachToRoot ? root : null); in inflate()
DShadowArrayAdapter.java135 view = getResourceLoader().inflateView(context,resource, null); in getView()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
DRobolectricTestRunnerTest.java80 loader.inflateView(Robolectric.application, R.layout.text_views, null); in createResourceLoader_setsI18nStrictModeForResourceLoader()