/external/webrtc/webrtc/modules/ |
D | modules_unittests.isolate | 23 '<(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/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowResourcesTest.java | 44 private Resources resources; field in ShadowResourcesTest 48 resources = RuntimeEnvironment.application.getResources(); in setup() 53 assertThat(resources.getString(R.string.hello)).isEqualTo("Hello"); in getString() 54 assertThat(resources.getString(R.string.say_it_with_item)).isEqualTo("flowers"); in getString() 59 assertThat(resources.getString(R.string.greeting)).isEqualTo("Howdy"); in getString_withReference() 64 assertThat(resources.getString(R.string.interpolate, "value")).isEqualTo("Here is a value!"); in getString_withInterpolation() 69 assertThat(resources.getString(R.string.some_html, "value")).isEqualTo("Hello, world"); in getString_withHtml() 74 assertThat(resources.getString(R.string.surrounding_quotes, "value")).isEqualTo("This'll work"); in getString_withSurroundingQuotes() 79 assertThat(resources.getString(R.string.escaped_apostrophe)).isEqualTo("This'll also work"); in getStringWithEscapedApostrophes() 84 assertThat(resources.getString(R.string.escaped_quotes)).isEqualTo("Click \"OK\""); in getStringWithEscapedQuotes() [all …]
|
/external/swiftshader/tests/fuzzers/ |
D | VertexRoutineFuzzer.cpp | 105 ShBuiltInResources resources; in LLVMFuzzerTestOneInput() local 106 resources.MaxVertexAttribs = sw::MAX_VERTEX_INPUTS; in LLVMFuzzerTestOneInput() 107 resources.MaxVertexUniformVectors = sw::VERTEX_UNIFORM_VECTORS - 3; in LLVMFuzzerTestOneInput() 108 resources.MaxVaryingVectors = MIN(sw::MAX_VERTEX_OUTPUTS, sw::MAX_VERTEX_INPUTS); in LLVMFuzzerTestOneInput() 109 resources.MaxVertexTextureImageUnits = sw::VERTEX_TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 110 resources.MaxCombinedTextureImageUnits = sw::TEXTURE_IMAGE_UNITS + sw::VERTEX_TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 111 resources.MaxTextureImageUnits = sw::TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 112 resources.MaxFragmentUniformVectors = sw::FRAGMENT_UNIFORM_VECTORS - 3; in LLVMFuzzerTestOneInput() 113 resources.MaxDrawBuffers = sw::RENDERTARGETS; in LLVMFuzzerTestOneInput() 114 resources.MaxVertexOutputVectors = 16; // ??? in LLVMFuzzerTestOneInput() [all …]
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_uvd.c | 46 struct r600_texture *resources[VL_NUM_COMPONENTS] = {}; in si_video_buffer_create() local 69 resources[0] = (struct r600_texture *) in si_video_buffer_create() 71 if (!resources[0]) in si_video_buffer_create() 77 resources[1] = (struct r600_texture *) in si_video_buffer_create() 79 if (!resources[1]) in si_video_buffer_create() 86 resources[2] = (struct r600_texture *) in si_video_buffer_create() 88 if (!resources[2]) in si_video_buffer_create() 93 if (!resources[i]) in si_video_buffer_create() 96 surfaces[i] = & resources[i]->surface; in si_video_buffer_create() 97 pbs[i] = &resources[i]->resource.buf; in si_video_buffer_create() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
D | TryStmt.java | 99 private NodeList<Expression> resources; field in TryStmt 117 …public TryStmt(NodeList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClaus… in TryStmt() argument 118 this(null, resources, tryBlock, catchClauses, finallyBlock); in TryStmt() 125 …public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList… in TryStmt() argument 127 setResources(resources); in TryStmt() 163 return resources; in getResources() 208 public TryStmt setResources(final NodeList<Expression> resources) { in setResources() argument 209 assertNotNull(resources); in setResources() 210 if (resources == this.resources) { in setResources() 213 notifyPropertyChange(ObservableProperty.RESOURCES, this.resources, resources); in setResources() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_uvd.c | 62 struct r600_texture *resources[VL_NUM_COMPONENTS] = {}; in r600_video_buffer_create() local 85 resources[0] = (struct r600_texture *) in r600_video_buffer_create() 87 if (!resources[0]) in r600_video_buffer_create() 94 resources[1] = (struct r600_texture *) in r600_video_buffer_create() 96 if (!resources[1]) in r600_video_buffer_create() 104 resources[2] = (struct r600_texture *) in r600_video_buffer_create() 106 if (!resources[2]) in r600_video_buffer_create() 111 if (!resources[i]) in r600_video_buffer_create() 114 pbs[i] = &resources[i]->resource.buf; in r600_video_buffer_create() 115 surfaces[i] = &resources[i]->surface; in r600_video_buffer_create() [all …]
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Shader.cpp | 167 ShBuiltInResources resources; in createCompiler() local 168 resources.MaxVertexAttribs = MAX_VERTEX_ATTRIBS; in createCompiler() 169 resources.MaxVertexUniformVectors = MAX_VERTEX_UNIFORM_VECTORS; in createCompiler() 170 resources.MaxVaryingVectors = MAX_VARYING_VECTORS; in createCompiler() 171 resources.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS; in createCompiler() 172 resources.MaxCombinedTextureImageUnits = MAX_COMBINED_TEXTURE_IMAGE_UNITS; in createCompiler() 173 resources.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS; in createCompiler() 174 resources.MaxFragmentUniformVectors = MAX_FRAGMENT_UNIFORM_VECTORS; in createCompiler() 175 resources.MaxDrawBuffers = MAX_DRAW_BUFFERS; in createCompiler() 176 resources.MaxVertexOutputVectors = MAX_VERTEX_OUTPUT_VECTORS; in createCompiler() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ResourcesTest.java | 33 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 …]
|
D | BitmapDrawableTest.java | 26 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/ |
D | vl_video_buffer.c | 271 pipe_resource_reference(&buf->resources[i], NULL); in vl_video_buffer_destroy() 297 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format); in vl_video_buffer_sampler_view_planes() 299 if (util_format_get_nr_components(buf->resources[i]->format) == 1) in vl_video_buffer_sampler_view_planes() 302 … buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ); in vl_video_buffer_sampler_view_planes() 335 struct pipe_resource *res = buf->resources[plane_order[i]]; in vl_video_buffer_sampler_view_components() 382 if (!buf->resources[i]) { in vl_video_buffer_surfaces() 389 surf_templ.format = vl_video_buffer_surface_format(buf->resources[i]->format); in vl_video_buffer_surfaces() 391 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[i], &surf_templ); in vl_video_buffer_surfaces() 459 struct pipe_resource *resources[VL_NUM_COMPONENTS]; in vl_video_buffer_create_ex() local 464 memset(resources, 0, sizeof resources); in vl_video_buffer_create_ex() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/ |
D | TryStmt.java | 38 private List<VariableDeclarationExpr> resources; field in TryStmt 56 public TryStmt(Range range, List<VariableDeclarationExpr> resources, in TryStmt() argument 59 setResources(resources); in TryStmt() 89 resources = ensureNotNull(resources); in getResources() 90 return resources; in getResources() 111 public TryStmt setResources(List<VariableDeclarationExpr> resources) { in setResources() argument 112 this.resources = resources; in setResources() 113 setAsParentNodeOf(this.resources); in setResources()
|
/external/webrtc/ |
D | .gitignore | 51 /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/ |
D | webrtc_perf_tests.isolate | 13 '<(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/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmVariablePointersTests.cpp | 1385 GraphicsResources resources; in addVariablePointersGraphicsGroup() local 1400 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() 1401 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() 1402 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() 1403 …resources.outputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32… in addVariablePointersGraphicsGroup() 1404 …createTestsForAllStages(name.c_str(), defaultColors, defaultColors, fragments, resources, extensio… in addVariablePointersGraphicsGroup() 1407 GraphicsResources resources; in addVariablePointersGraphicsGroup() local 1422 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() 1423 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() 1424 …resources.inputs.push_back(std::make_pair(VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, BufferSp(new Float32B… in addVariablePointersGraphicsGroup() [all …]
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | memory.cpp | 87 if (!resources.count(&q.device())) { in resource() 88 auto r = (!resources.empty() ? in resource() 90 *resources.begin()->second) : in resource() 93 resources.insert(std::make_pair(&q.device(), in resource() 98 return *resources.find(&q.device())->second; in resource() 111 if (!resources.count(&q.device())) { in resource() 114 resources.insert(std::make_pair(&q.device(), in resource() 118 return *resources.find(&q.device())->second; in resource() 139 if (!resources.count(&q.device())) { in resource() 140 auto r = (!resources.empty() ? in resource() [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
D | Table.java | 23 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 …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | URLClassLoaderTest.java | 226 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/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/ |
D | DrawableResourceLoaderTest.java | 28 private Resources resources; field in DrawableResourceLoaderTest 32 resources = RuntimeEnvironment.application.getResources(); in setup() 42 assertNotNull(resources.getDrawable(android.R.drawable.ic_popup_sync)); in testGetDrawableBundle_shouldWorkWithSystem() 52 assertThat(resources.getDrawable(R.drawable.l7_white)).isInstanceOf(BitmapDrawable.class); in testDrawableTypes() 53 assertThat(resources.getDrawable(R.drawable.l0_red)).isInstanceOf(BitmapDrawable.class); in testDrawableTypes() 54 …assertThat(resources.getDrawable(R.drawable.nine_patch_drawable)).isInstanceOf(NinePatchDrawable.c… in testDrawableTypes() 55 assertThat(resources.getDrawable(R.drawable.rainbow)).isInstanceOf(LayerDrawable.class); in testDrawableTypes() 60 …assertThat(resources.getDrawable(R.drawable.an_image_or_vector)).isInstanceOf(BitmapDrawable.class… in testVectorDrawableType_preVectors() 65 …assertThat(resources.getDrawable(R.drawable.an_image_or_vector)).isInstanceOf(VectorDrawable.class… in testVectorDrawableType() 87 …assertThat(resources.getDrawable(R.color.grey42)).isInstanceOf((Class<? extends android.graphics.d… in shouldCreateAnimsAndColors()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
D | ResourceLoader.java | 19 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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/ |
D | TryStmt.java | 35 private List<VariableDeclarationExpr> resources; field in TryStmt 54 final int endLine, final int endColumn, List<VariableDeclarationExpr> resources, in TryStmt() argument 57 setResources(resources); in TryStmt() 86 return resources; in getResources() 104 public void setResources(List<VariableDeclarationExpr> resources) { in setResources() argument 105 this.resources = resources; in setResources() 106 setAsParentNodeOf(this.resources); in setResources()
|
/external/swiftshader/src/OpenGL/libGL/ |
D | Shader.cpp | 166 ShBuiltInResources resources; in createCompiler() local 167 resources.MaxVertexAttribs = MAX_VERTEX_ATTRIBS; in createCompiler() 168 resources.MaxVertexUniformVectors = MAX_VERTEX_UNIFORM_VECTORS; in createCompiler() 169 resources.MaxVaryingVectors = MAX_VARYING_VECTORS; in createCompiler() 170 resources.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS; in createCompiler() 171 resources.MaxCombinedTextureImageUnits = MAX_COMBINED_TEXTURE_IMAGE_UNITS; in createCompiler() 172 resources.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS; in createCompiler() 173 resources.MaxFragmentUniformVectors = MAX_FRAGMENT_UNIFORM_VECTORS; in createCompiler() 174 resources.MaxDrawBuffers = MAX_DRAW_BUFFERS; in createCompiler() 175 resources.OES_standard_derivatives = 1; in createCompiler() [all …]
|
/external/tinyxml2/ |
D | Android.bp | 35 // "resources/*" doesn't work: http://b/71906438 37 "resources/dream.xml", 38 "resources/empty.xml", 39 "resources/out/readme.txt", 40 "resources/utf8testverify.xml", 41 "resources/utf8test.xml",
|
/external/libcxx/src/experimental/ |
D | memory_resource.cpp | 66 } resources; member 68 _LIBCPP_CONSTEXPR_AFTER_CXX11 ResourceInitHelper() : resources() {} in ResourceInitHelper() 82 return &res_init.resources.new_delete_res; in new_delete_resource() 86 return &res_init.resources.null_res; in null_memory_resource() 96 ATOMIC_VAR_INIT(&res_init.resources.new_delete_res); in __default_memory_resource() 108 _LIBCPP_SAFE_STATIC static memory_resource * res = &res_init.resources.new_delete_res; in __default_memory_resource() 121 _LIBCPP_SAFE_STATIC static memory_resource* res = &res_init.resources.new_delete_res; in __default_memory_resource()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/ |
D | QualifiersTest.java | 21 private Resources resources; field in QualifiersTest 25 resources = RuntimeEnvironment.application.getResources(); in setUp() 56 assertThat(resources.getQuantityString(R.plurals.minute, 2)).isEqualTo( in getQuantityString() 57 resources.getString(R.string.minute_plural)); in getQuantityString() 66 assertThat(resources.getConfiguration().smallestScreenWidthDp).isEqualTo(320); in inflateLayout_defaultsTo_sw320dp() 75 assertThat(resources.getConfiguration().smallestScreenWidthDp).isEqualTo(720); in inflateLayout_overridesTo_sw720dp() 80 assertThat(resources.getString(R.string.hello)).isEqualTo("Zdravo"); in supportsBcp47() 85 assertThat(resources.getBoolean(R.bool.value_only_present_in_w320dp)).isTrue(); in defaultScreenWidth() 86 assertThat(resources.getConfiguration().screenWidthDp).isEqualTo(320); in defaultScreenWidth()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/ |
D | TableTest.java | 33 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 …]
|