Home
last modified time | relevance | path

Searched refs:resources (Results 1 – 25 of 509) sorted by relevance

12345678910>>...21

/external/webrtc/webrtc/modules/
Dmodules_unittests.isolate23 '<(DEPTH)/resources/att-downlink.rx',
24 '<(DEPTH)/resources/att-uplink.rx',
25 '<(DEPTH)/resources/audio_coding/neteq4_network_stats.dat',
26 '<(DEPTH)/resources/audio_coding/neteq4_rtcp_stats.dat',
27 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref.pcm',
28 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref_win_32.pcm',
29 '<(DEPTH)/resources/audio_coding/neteq4_universal_ref_win_64.pcm',
30 '<(DEPTH)/resources/audio_coding/neteq_universal_new.rtp',
31 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm',
32 '<(DEPTH)/resources/audio_coding/speech_mono_32_48kHz.pcm',
[all …]
/external/autotest/frontend/afe/
Durls.py4 from autotest_lib.frontend.afe import resources
15 (r'^/?$', resources.ResourceDirectory.dispatch_request),
17 resources.AtomicGroupClassCollection.dispatch_request),
19 resources.AtomicGroupClass.dispatch_request),
21 resources.AtomicLabelTaggingCollection.dispatch_request),
23 resources.AtomicLabelTagging.dispatch_request),
24 (r'^labels/?$', resources.LabelCollection.dispatch_request),
25 (r'^labels/(?P<label_name>.+?)/?$', resources.Label.dispatch_request),
26 (r'^users/?$', resources.UserCollection.dispatch_request),
27 (r'^users/(?P<username>[@\w]+)/?$', resources.User.dispatch_request),
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/resource/
DResourceCollection.java66 public ResourceCollection(Resource... resources) in ResourceCollection() argument
69 for (Resource r : resources) in ResourceCollection()
96 public ResourceCollection(String[] resources) in ResourceCollection() argument
98 _resources = new Resource[resources.length]; in ResourceCollection()
101 for(int i=0; i<resources.length; i++) in ResourceCollection()
103 _resources[i] = Resource.newResource(resources[i]); in ResourceCollection()
146 public void setResources(Resource[] resources) in setResources() argument
148 _resources = resources != null ? resources : new Resource[0]; in setResources()
203 ArrayList<Resource> resources = null; in addPath() local
223 resources = new ArrayList<Resource>(); in addPath()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DResourcesTest.java33 private Resources resources; field in ResourcesTest
38 resources = new Activity().getResources(); in setup()
44 resources.getStringArray(-1); in getStringArray_shouldThrowExceptionIfNotFound()
49 Configuration configuration = resources.getConfiguration(); in testConfiguration()
56 assertThat(resources.getConfiguration(), is(resources.getConfiguration())); in testConfigurationReturnsTheSameInstance()
61 assertThat(resources.newTheme(), notNullValue()); in testNewTheme()
71 … assertThat( resources.getDrawable( TestR.anim.test_anim_1 ), instanceOf( BitmapDrawable.class ) ); in testGetDrawableNullRClass()
80 …assertThat( resources.getDrawable( TestR.anim.test_anim_1 ), instanceOf( AnimationDrawable.class )… in testGetAnimationDrawable()
86 String hello=resources.getString( R.string.hello ); in testGetResourceFromSpecificLocale()
96 …assertThat( resources.getDrawable( TestR.color.test_color_1 ), instanceOf( ColorDrawable.class ) )… in testGetColorDrawable()
[all …]
DBitmapDrawableTest.java26 private Resources resources; field in BitmapDrawableTest
30 resources = Robolectric.application.getResources(); in setUp()
35 BitmapDrawable drawable = (BitmapDrawable) resources.getDrawable(R.drawable.an_image); in getBitmap_shouldReturnBitmapUsedToDraw()
41 BitmapDrawable drawable = (BitmapDrawable) resources.getDrawable(R.drawable.an_image); in draw_shouldCopyDescriptionToCanvas()
57 BitmapDrawable drawable = (BitmapDrawable) resources.getDrawable(R.drawable.an_image); in withColorFilterSet_draw_shouldCopyDescriptionToCanvas()
68 Drawable drawable1a = resources.getDrawable(R.drawable.an_image); in equals_shouldTestResourceId()
69 Drawable drawable1b = resources.getDrawable(R.drawable.an_image); in equals_shouldTestResourceId()
70 Drawable drawable2 = resources.getDrawable(R.drawable.an_other_image); in equals_shouldTestResourceId()
78 Drawable drawable1a = resources.getDrawable(R.drawable.an_image); in equals_shouldTestBounds()
79 Drawable drawable1b = resources.getDrawable(R.drawable.an_image); in equals_shouldTestBounds()
[all …]
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_video_buffer.c252 pipe_resource_reference(&buf->resources[i], NULL); in vl_video_buffer_destroy()
278 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format); in vl_video_buffer_sampler_view_planes()
280 if (util_format_get_nr_components(buf->resources[i]->format) == 1) in vl_video_buffer_sampler_view_planes()
283 … buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ); in vl_video_buffer_sampler_view_planes()
316 struct pipe_resource *res = buf->resources[plane_order[i]]; in vl_video_buffer_sampler_view_components()
363 if (!buf->resources[j]) { in vl_video_buffer_surfaces()
370 surf_templ.format = vl_video_buffer_surface_format(buf->resources[j]->format); in vl_video_buffer_surfaces()
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ); in vl_video_buffer_surfaces()
440 struct pipe_resource *resources[VL_NUM_COMPONENTS]; in vl_video_buffer_create_ex() local
445 memset(resources, 0, sizeof resources); in vl_video_buffer_create_ex()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
DSkinLoader.java59 ObjectMap<String, Object> resources = null; in loadSync() local
64 if (parameter.resources != null){ in loadSync()
65 resources = parameter.resources; in loadSync()
70 if (resources != null) { in loadSync()
71 for (Entry<String, Object> entry : resources.entries()) { in loadSync()
81 public final ObjectMap<String, Object> resources; field in SkinLoader.SkinParameter
87 public SkinParameter(ObjectMap<String, Object> resources){ in SkinParameter() argument
88 this(null, resources); in SkinParameter()
95 public SkinParameter (String textureAtlasPath, ObjectMap<String, Object> resources) { in SkinParameter() argument
97 this.resources = resources; in SkinParameter()
/external/webrtc/
D.gitignore51 /resources/**/*.aecdump
52 /resources/**/*.bin
53 /resources/**/*.chn
54 /resources/**/*.dat
55 /resources/**/*.gai
56 /resources/**/*.jpg
57 /resources/**/*.pcap
58 /resources/**/*.pcm
59 /resources/**/*.rtp
60 /resources/**/*.rx
[all …]
/external/webrtc/webrtc/
Dwebrtc_perf_tests.isolate13 '<(DEPTH)/resources/foreman_cif.yuv',
14 '<(DEPTH)/resources/paris_qcif.yuv',
15 '<(DEPTH)/resources/voice_engine/audio_long16.pcm',
16 '<(DEPTH)/resources/difficult_photo_1850_1110.yuv',
17 '<(DEPTH)/resources/photo_1850_1110.yuv',
18 '<(DEPTH)/resources/presentation_1850_1110.yuv',
19 '<(DEPTH)/resources/web_screenshot_1850_1110.yuv',
20 '<(DEPTH)/resources/google-wifi-3mbps.rx',
21 '<(DEPTH)/resources/verizon4g-downlink.rx',
/external/mesa3d/src/gallium/state_trackers/clover/core/
Dmemory.cpp79 if (!resources.count(&q->dev)) { in resource()
80 auto r = (!resources.empty() ? in resource()
81 new root_resource(q->dev, *this, *resources.begin()->second) : in resource()
84 resources.insert(std::make_pair(&q->dev, in resource()
89 return *resources.find(&q->dev)->second; in resource()
102 if (!resources.count(&q->dev)) { in resource()
105 resources.insert(std::make_pair(&q->dev, in resource()
109 return *resources.find(&q->dev)->second; in resource()
130 if (!resources.count(&q->dev)) { in resource()
131 auto r = (!resources.empty() ? in resource()
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
DTable.java23 import org.jacoco.report.internal.html.resources.Resources;
24 import org.jacoco.report.internal.html.resources.Styles;
89 final Resources resources, final ReportOutputFolder base) in render() argument
95 footer(table, total, resources, base); in render()
96 body(table, sortedItems, resources, base); in render()
109 final Resources resources, final ReportOutputFolder base) in footer() argument
113 c.footer(tr, total, resources, base); in footer()
118 final List<? extends ITableItem> items, final Resources resources, in body() argument
125 c.body(tr, idx, item, resources, base); in body()
175 final Resources resources, final ReportOutputFolder base) in footer() argument
[all …]
DBarColumn.java27 import org.jacoco.report.internal.html.resources.Resources;
76 final Resources resources, final ReportOutputFolder base) in footer() argument
84 final Resources resources, final ReportOutputFolder base) in item() argument
89 bar(td, missed, Resources.REDBAR, resources, base); in item()
91 bar(td, covered, Resources.GREENBAR, resources, base); in item()
96 final Resources resources, final ReportOutputFolder base) in bar() argument
100 td.img(resources.getLink(base, image), width, 10, in bar()
/external/mesa3d/src/gallium/drivers/r600/
Devergreen_compute.c137 shader->resources = (struct evergreen_compute_resource*) in evergreen_create_compute_state()
164 free(shader->resources); in evergreen_delete_compute_state()
325 struct evergreen_compute_resource *resources = in compute_emit_cs() local
326 ctx->cs_shader_state.shader->resources; in compute_emit_cs()
352 if (resources[i].enabled) { in compute_emit_cs()
356 for (j = 0; j < resources[i].cs_end; j++) { in compute_emit_cs()
357 if (resources[i].do_reloc[j]) { in compute_emit_cs()
358 assert(resources[i].bo); in compute_emit_cs()
360 resources[i].bo, in compute_emit_cs()
361 resources[i].usage); in compute_emit_cs()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
DResourceLoader.java19 private final Resources resources; field in ResourceLoader
25 public ResourceLoader(Resources resources, ModelLoader<Uri, T> uriLoader) { in ResourceLoader() argument
26 this.resources = resources; in ResourceLoader()
33 + resources.getResourcePackageName(model) + '/' in getResourceFetcher()
34 + resources.getResourceTypeName(model) + '/' in getResourceFetcher()
35 + resources.getResourceEntryName(model)); in getResourceFetcher()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DURLClassLoaderTest.java226 File resources = Support_Resources.createTempFolder(); in test_findClassLjava_lang_String() local
227 String resPath = resources.toString(); in test_findClassLjava_lang_String()
231 Support_Resources.copyFile(resources, "JarIndex", "hyts_11.jar"); in test_findClassLjava_lang_String()
232 Support_Resources.copyFile(resources, "JarIndex", "hyts_12.jar"); in test_findClassLjava_lang_String()
233 Support_Resources.copyFile(resources, "JarIndex", "hyts_13.jar"); in test_findClassLjava_lang_String()
234 Support_Resources.copyFile(resources, "JarIndex", "hyts_14.jar"); in test_findClassLjava_lang_String()
248 Support_Resources.copyFile(resources, "JarIndex", "hyts_21.jar"); in test_findClassLjava_lang_String()
249 Support_Resources.copyFile(resources, "JarIndex", "hyts_22.jar"); in test_findClassLjava_lang_String()
250 Support_Resources.copyFile(resources, "JarIndex", "hyts_23.jar"); in test_findClassLjava_lang_String()
292 Support_Resources.copyFile(resources, "JarIndex", "hyts_22-new.jar"); in test_findClassLjava_lang_String()
[all …]
/external/libdrm/tests/amdgpu/
Dbasic_tests.c220 ibs_request.resources = bo_list; in amdgpu_command_submission_gfx_separate_ibs()
301 ibs_request.resources = bo_list; in amdgpu_command_submission_gfx_shared_ib()
378 ibs_request.resources = bo_list; in amdgpu_command_submission_compute()
414 int res_cnt, amdgpu_bo_handle *resources, in amdgpu_sdma_test_exec_cs() argument
425 amdgpu_bo_handle *all_res = alloca(sizeof(resources[0]) * (res_cnt + 1)); in amdgpu_sdma_test_exec_cs()
430 CU_ASSERT_NOT_EQUAL(resources, NULL); in amdgpu_sdma_test_exec_cs()
455 memcpy(all_res, resources, sizeof(resources[0]) * res_cnt); in amdgpu_sdma_test_exec_cs()
459 NULL, &ibs_request->resources); in amdgpu_sdma_test_exec_cs()
468 r = amdgpu_bo_list_destroy(ibs_request->resources); in amdgpu_sdma_test_exec_cs()
494 amdgpu_bo_handle *resources; in amdgpu_command_submission_sdma_write_linear() local
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
DResourceData.java30 public void save(AssetManager manager, ResourceData<T> resources); in save() argument
31 public void load(AssetManager manager, ResourceData<T> resources); in load() argument
42 protected ResourceData resources; field in ResourceData.SaveData
50 public SaveData(ResourceData resources){ in SaveData() argument
54 this.resources = resources; in SaveData()
58 int i = resources.getAssetData(filename, type); in saveAsset()
60 resources.sharedAssets.add(new AssetData(filename, type)); in saveAsset()
61 i = resources.sharedAssets.size -1; in saveAsset()
72 AssetData data = (AssetData)resources.sharedAssets.get(assets.get(loadIndex++)); in loadAsset()
204 entry.value.resources = this; in read()
[all …]
/external/mesa3d/src/gallium/state_trackers/egl/common/
Dnative_helper.c52 struct pipe_resource *resources[NUM_NATIVE_ATTACHMENTS]; member
93 if (rsurf->resources[i]) in resource_surface_free_resources()
94 pipe_resource_reference(&rsurf->resources[i], NULL); in resource_surface_free_resources()
158 assert(!rsurf->resources[i]); in resource_surface_add_resources()
160 rsurf->resources[i] = in resource_surface_add_resources()
162 if (rsurf->resources[i]) in resource_surface_add_resources()
175 pipe_resource_reference(&rsurf->resources[which], pres); in resource_surface_import_resource()
181 struct pipe_resource **resources, in resource_surface_get_resources() argument
188 resources[i] = NULL; in resource_surface_get_resources()
189 pipe_resource_reference(&resources[i], rsurf->resources[i]); in resource_surface_get_resources()
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
DTableTest.java33 import org.jacoco.report.internal.html.resources.Resources;
48 private Resources resources; field in TableTest
60 resources = new Resources(root); in setup()
89 Resources resources, ReportOutputFolder base) { in testCallbackSequence()
95 Resources resources, ReportOutputFolder base) { in testCallbackSequence()
108 table.render(body, items, createTotal("Sum", 6), resources, root); in testCallbackSequence()
126 Resources resources, ReportOutputFolder base) { in testInvisible()
132 Resources resources, ReportOutputFolder base) { in testInvisible()
138 table.render(body, items, createTotal("Sum", 1), resources, root); in testInvisible()
162 table.render(body, items, createTotal("Sum", 6), resources, root); in testSortIds()
[all …]
DPercentageColumnTest.java31 import org.jacoco.report.internal.html.resources.Resources;
46 private Resources resources; field in PercentageColumnTest
60 resources = new Resources(root); in setup()
83 column.item(td, item, resources, root); in testItem1()
93 column.item(td, item, resources, root); in testItem2()
105 column.item(td, item, resources, root); in testLocale()
115 column.footer(td, item.getNode(), resources, root); in testFooter1()
124 column.footer(td, item.getNode(), resources, root); in testFooter2()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
DGlideBitmapDrawableTranscoder.java18 private final Resources resources; field in GlideBitmapDrawableTranscoder
25 public GlideBitmapDrawableTranscoder(Resources resources, BitmapPool bitmapPool) { in GlideBitmapDrawableTranscoder() argument
26 this.resources = resources; in GlideBitmapDrawableTranscoder()
32 GlideBitmapDrawable drawable = new GlideBitmapDrawable(resources, toTranscode.get()); in transcode()
/external/icu/icu4c/source/samples/ufortune/
Dreadme.txt5 Defining resources for use by an application
15 resources/root.txt Default resources (text for messages in English)
16 resources/es.txt Spanish language resources source file..
17 resources/res-file-list.txt List of resource source files to be built
18 resources/Makefile Makefile for compiling resources, for Unixes.
/external/chromium-trace/catapult/third_party/webapp2/webapp2.egg-info/
DSOURCES.txt109 tests/resources/__init__.py
110 tests/resources/handlers.py
111 tests/resources/i18n.py
112 tests/resources/protorpc_services.py
113 tests/resources/template.py
114 tests/resources/jinja2_templates/hello.html
115 tests/resources/jinja2_templates/template1.html
116 tests/resources/jinja2_templates/template2.html
117 tests/resources/jinja2_templates/template3.html
118 tests/resources/jinja2_templates_compiled/tmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py
[all …]
/external/autotest/frontend/tko/
Durls.py4 from autotest_lib.frontend.tko import resources
11 (r'^/?$', resources.ResourceDirectory.dispatch_request),
12 (r'^test_results/?$', resources.TestResultCollection.dispatch_request),
14 resources.TestResult.dispatch_request),
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DFingerPrintGraph.java89 Map resources = new HashMap(); field in FingerPrintGraph
187 Font italicFont = (Font) this.resources.get("italicFont"); in drawBars()
193 this.resources.put("italicFont", italicFont); in drawBars()
195 Color blueref = (Color) this.resources.get("blueref"); in drawBars()
198 this.resources.put("blueref", blueref); in drawBars()
200 Color lightyellow= (Color) this.resources.get("lightyellow"); in drawBars()
203 this.resources.put("lightyellow", lightyellow); in drawBars()
205 Color darkyellow= (Color) this.resources.get("darkyellow"); in drawBars()
208 this.resources.put("darkyellow", darkyellow); in drawBars()
210 Color okColor= (Color) this.resources.get("lightgreen"); in drawBars()
[all …]

12345678910>>...21