/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/angle/third_party/glslang/src/StandAlone/ |
D | ResourceLimits.cpp | 260 void DecodeResourceLimits(TBuiltInResource* resources, char* config) in DecodeResourceLimits() argument 287 resources->maxLights = value; in DecodeResourceLimits() 289 resources->maxClipPlanes = value; in DecodeResourceLimits() 291 resources->maxTextureUnits = value; in DecodeResourceLimits() 293 resources->maxTextureCoords = value; in DecodeResourceLimits() 295 resources->maxVertexAttribs = value; in DecodeResourceLimits() 297 resources->maxVertexUniformComponents = value; in DecodeResourceLimits() 299 resources->maxVaryingFloats = value; in DecodeResourceLimits() 301 resources->maxVertexTextureImageUnits = value; in DecodeResourceLimits() 303 resources->maxCombinedTextureImageUnits = value; in DecodeResourceLimits() [all …]
|
/external/deqp-deps/glslang/StandAlone/ |
D | ResourceLimits.cpp | 262 void DecodeResourceLimits(TBuiltInResource* resources, char* config) in DecodeResourceLimits() argument 289 resources->maxLights = value; in DecodeResourceLimits() 291 resources->maxClipPlanes = value; in DecodeResourceLimits() 293 resources->maxTextureUnits = value; in DecodeResourceLimits() 295 resources->maxTextureCoords = value; in DecodeResourceLimits() 297 resources->maxVertexAttribs = value; in DecodeResourceLimits() 299 resources->maxVertexUniformComponents = value; in DecodeResourceLimits() 301 resources->maxVaryingFloats = value; in DecodeResourceLimits() 303 resources->maxVertexTextureImageUnits = value; in DecodeResourceLimits() 305 resources->maxCombinedTextureImageUnits = value; in DecodeResourceLimits() [all …]
|
/external/angle/src/compiler/translator/ |
D | ShaderLang.cpp | 136 void InitBuiltInResources(ShBuiltInResources *resources) in InitBuiltInResources() argument 139 memset(resources, 0, sizeof(*resources)); in InitBuiltInResources() 142 resources->MaxVertexAttribs = 8; in InitBuiltInResources() 143 resources->MaxVertexUniformVectors = 128; in InitBuiltInResources() 144 resources->MaxVaryingVectors = 8; in InitBuiltInResources() 145 resources->MaxVertexTextureImageUnits = 0; in InitBuiltInResources() 146 resources->MaxCombinedTextureImageUnits = 8; in InitBuiltInResources() 147 resources->MaxTextureImageUnits = 8; in InitBuiltInResources() 148 resources->MaxFragmentUniformVectors = 16; in InitBuiltInResources() 149 resources->MaxDrawBuffers = 1; in InitBuiltInResources() [all …]
|
D | Initialize.cpp | 12 void InitExtensionBehavior(const ShBuiltInResources &resources, TExtensionBehavior &extBehavior) in InitExtensionBehavior() argument 14 if (resources.OES_standard_derivatives) in InitExtensionBehavior() 18 if (resources.OES_EGL_image_external) in InitExtensionBehavior() 22 if (resources.OES_EGL_image_external_essl3) in InitExtensionBehavior() 26 if (resources.NV_EGL_stream_consumer_external) in InitExtensionBehavior() 30 if (resources.ARB_texture_rectangle) in InitExtensionBehavior() 36 if (resources.EXT_blend_func_extended) in InitExtensionBehavior() 40 if (resources.EXT_draw_buffers) in InitExtensionBehavior() 44 if (resources.EXT_frag_depth) in InitExtensionBehavior() 48 if (resources.EXT_shader_texture_lod) in InitExtensionBehavior() [all …]
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_resource.py | 7 from importlib import resources, import_module 14 self.assertTrue(resources.is_resource(self.data, 'binary.file')) 17 self.assertFalse(resources.is_resource(self.data, 'not-a-file')) 21 self.assertFalse(resources.is_resource(self.data, 'subdirectory')) 24 contents = set(resources.contents(self.data)) 56 set(resources.contents(package)), 63 self.assertTrue(resources.is_resource(package, 'B')) 69 self.assertFalse(resources.is_resource(package, 'D')) 75 self.assertFalse(resources.is_resource(package, 'Z')) 93 self.assertFalse(resources.is_resource(module, 'A')) [all …]
|
D | test_read.py | 3 from importlib import import_module, resources 10 resources.read_binary(package, path) 15 resources.read_text(package, path) 20 result = resources.read_binary(self.data, 'binary.file') 24 result = resources.read_text(self.data, 'utf-8.file') 28 result = resources.read_text( 35 UnicodeError, resources.read_text, self.data, 'utf-16.file') 36 result = resources.read_text(self.data, 'utf-16.file', errors='ignore') 51 result = resources.read_binary( 56 result = resources.read_binary(
|
D | test_open.py | 3 from importlib import resources 10 with resources.open_binary(package, path): 16 with resources.open_text(package, path): 22 with resources.open_binary(self.data, 'binary.file') as fp: 27 with resources.open_text(self.data, 'utf-8.file') as fp: 32 with resources.open_text( 39 with resources.open_text( 42 with resources.open_text( 54 resources.open_binary, self.data, 'does-not-exist') 59 resources.open_text, self.data, 'does-not-exist')
|
/external/angle/src/compiler/fuzz/ |
D | translator_fuzzer.cpp | 146 ShBuiltInResources resources; in LLVMFuzzerTestOneInput() local 147 sh::InitBuiltInResources(&resources); in LLVMFuzzerTestOneInput() 150 resources.OES_standard_derivatives = 1; in LLVMFuzzerTestOneInput() 151 resources.OES_EGL_image_external = 1; in LLVMFuzzerTestOneInput() 152 resources.OES_EGL_image_external_essl3 = 1; in LLVMFuzzerTestOneInput() 153 resources.NV_EGL_stream_consumer_external = 1; in LLVMFuzzerTestOneInput() 154 resources.ARB_texture_rectangle = 1; in LLVMFuzzerTestOneInput() 155 resources.EXT_blend_func_extended = 1; in LLVMFuzzerTestOneInput() 156 resources.EXT_draw_buffers = 1; in LLVMFuzzerTestOneInput() 157 resources.EXT_frag_depth = 1; in LLVMFuzzerTestOneInput() [all …]
|
/external/angle/src/tests/compiler_tests/ |
D | ConstructCompiler_test.cpp | 17 ShBuiltInResources resources; in TEST() local 18 sh::InitBuiltInResources(&resources); in TEST() 20 SH_GLSL_COMPATIBILITY_OUTPUT, &resources); in TEST() 27 ShBuiltInResources resources; in TEST() local 28 sh::InitBuiltInResources(&resources); in TEST() 29 resources.MaxDrawBuffers = 0; in TEST() 31 SH_GLSL_COMPATIBILITY_OUTPUT, &resources); in TEST() 38 ShBuiltInResources resources; in TEST() local 39 sh::InitBuiltInResources(&resources); in TEST() 40 resources.EXT_blend_func_extended = 1; in TEST() [all …]
|
/external/angle/samples/shader_translator/ |
D | shader_translator.cpp | 50 void GenerateResources(ShBuiltInResources *resources) in GenerateResources() argument 52 sh::InitBuiltInResources(resources); in GenerateResources() 54 resources->MaxVertexAttribs = 8; in GenerateResources() 55 resources->MaxVertexUniformVectors = 128; in GenerateResources() 56 resources->MaxVaryingVectors = 8; in GenerateResources() 57 resources->MaxVertexTextureImageUnits = 0; in GenerateResources() 58 resources->MaxCombinedTextureImageUnits = 8; in GenerateResources() 59 resources->MaxTextureImageUnits = 8; in GenerateResources() 60 resources->MaxFragmentUniformVectors = 16; in GenerateResources() 61 resources->MaxDrawBuffers = 1; in GenerateResources() [all …]
|
/external/swiftshader/tests/fuzzers/ |
D | VertexRoutineFuzzer.cpp | 113 ShBuiltInResources resources; in LLVMFuzzerTestOneInput() local 114 resources.MaxVertexAttribs = sw::MAX_VERTEX_INPUTS; in LLVMFuzzerTestOneInput() 115 resources.MaxVertexUniformVectors = sw::VERTEX_UNIFORM_VECTORS - 3; in LLVMFuzzerTestOneInput() 116 resources.MaxVaryingVectors = MIN(sw::MAX_VERTEX_OUTPUTS, sw::MAX_VERTEX_INPUTS); in LLVMFuzzerTestOneInput() 117 resources.MaxVertexTextureImageUnits = sw::VERTEX_TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 118 resources.MaxCombinedTextureImageUnits = sw::TEXTURE_IMAGE_UNITS + sw::VERTEX_TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 119 resources.MaxTextureImageUnits = sw::TEXTURE_IMAGE_UNITS; in LLVMFuzzerTestOneInput() 120 resources.MaxFragmentUniformVectors = sw::FRAGMENT_UNIFORM_VECTORS - 3; in LLVMFuzzerTestOneInput() 121 resources.MaxDrawBuffers = sw::RENDERTARGETS; in LLVMFuzzerTestOneInput() 122 resources.MaxVertexOutputVectors = 16; // ??? in LLVMFuzzerTestOneInput() [all …]
|
/external/libtextclassifier/native/utils/ |
D | resources_test.cc | 142 Resources resources( in TEST_P() local 145 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("en-US")}, in TEST_P() 148 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("en-GB")}, in TEST_P() 151 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("pt-PT")}, in TEST_P() 154 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("zh-Hans-CN")}, in TEST_P() 157 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("zh")}, in TEST_P() 160 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("fr-CA")}, in TEST_P() 167 Resources resources( in TEST_P() local 171 EXPECT_TRUE(resources.GetResourceContent({Locale::FromBCP47("en-CA")}, in TEST_P() 180 Resources resources( in TEST_P() local [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
D | TryStmt.java | 97 private NodeList<Expression> resources; field in TryStmt 115 …public TryStmt(NodeList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClaus… in TryStmt() argument 116 this(null, resources, tryBlock, catchClauses, finallyBlock); in TryStmt() 123 …public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList… in TryStmt() argument 125 setResources(resources); in TryStmt() 161 return resources; in getResources() 206 public TryStmt setResources(final NodeList<Expression> resources) { in setResources() argument 207 assertNotNull(resources); in setResources() 208 if (resources == this.resources) { in setResources() 211 notifyPropertyChange(ObservableProperty.RESOURCES, this.resources, resources); in setResources() [all …]
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_video_buffer.c | 207 pipe_resource_reference(&buf->resources[i], NULL); in vl_video_buffer_destroy() 233 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format); in vl_video_buffer_sampler_view_planes() 235 if (util_format_get_nr_components(buf->resources[i]->format) == 1) in vl_video_buffer_sampler_view_planes() 238 … buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ); in vl_video_buffer_sampler_view_planes() 271 struct pipe_resource *res = buf->resources[plane_order[i]]; in vl_video_buffer_sampler_view_components() 318 if (!buf->resources[i]) { in vl_video_buffer_surfaces() 325 surf_templ.format = vl_video_buffer_surface_format(buf->resources[i]->format); in vl_video_buffer_surfaces() 327 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[i], &surf_templ); in vl_video_buffer_surfaces() 395 struct pipe_resource *resources[VL_NUM_COMPONENTS]; in vl_video_buffer_create_ex() local 400 memset(resources, 0, sizeof resources); in vl_video_buffer_create_ex() [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 86 resources[0] = (struct r600_texture *) in r600_video_buffer_create() 88 if (!resources[0]) in r600_video_buffer_create() 96 resources[1] = (struct r600_texture *) in r600_video_buffer_create() 98 if (!resources[1]) in r600_video_buffer_create() 107 resources[2] = (struct r600_texture *) in r600_video_buffer_create() 109 if (!resources[2]) in r600_video_buffer_create() 114 if (!resources[i]) in r600_video_buffer_create() 117 pbs[i] = &resources[i]->resource.buf; in r600_video_buffer_create() 118 surfaces[i] = &resources[i]->surface; in r600_video_buffer_create() [all …]
|
/external/libtextclassifier/native/annotator/ |
D | zlib-utils_test.cc | 61 model.resources.reset(new ResourcePoolT); in TEST() 62 model.resources->resource_entry.emplace_back(new ResourceEntryT); in TEST() 63 model.resources->resource_entry.back()->resource.emplace_back(new ResourceT); in TEST() 64 model.resources->resource_entry.back()->resource.back()->content = in TEST() 66 model.resources->resource_entry.back()->resource.emplace_back(new ResourceT); in TEST() 67 model.resources->resource_entry.back()->resource.back()->content = in TEST() 69 model.resources->resource_entry.emplace_back(new ResourceEntryT); in TEST() 70 model.resources->resource_entry.back()->resource.emplace_back(new ResourceT); in TEST() 71 model.resources->resource_entry.back()->resource.back()->content = in TEST() 73 model.resources->resource_entry.back()->resource.emplace_back(new ResourceT); in TEST() [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/boosted_trees/ |
D | prediction_ops_test.py | 26 from tensorflow.python.ops import resources 41 resources.initialize_resources(resources.shared_resources()).run() 75 resources.initialize_resources(resources.shared_resources()).run() 149 resources.initialize_resources(resources.shared_resources()).run() 218 resources.initialize_resources(resources.shared_resources()).run() 290 resources.initialize_resources(resources.shared_resources()).run() 361 resources.initialize_resources(resources.shared_resources()).run() 435 resources.initialize_resources(resources.shared_resources()).run() 523 resources.initialize_resources(resources.shared_resources()).run() 637 resources.initialize_resources(resources.shared_resources()).run() [all …]
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Shader.cpp | 174 ShBuiltInResources resources; in createCompiler() local 175 resources.MaxVertexAttribs = MAX_VERTEX_ATTRIBS; in createCompiler() 176 resources.MaxVertexUniformVectors = MAX_VERTEX_UNIFORM_VECTORS; in createCompiler() 177 resources.MaxVaryingVectors = MAX_VARYING_VECTORS; in createCompiler() 178 resources.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS; in createCompiler() 179 resources.MaxCombinedTextureImageUnits = MAX_COMBINED_TEXTURE_IMAGE_UNITS; in createCompiler() 180 resources.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS; in createCompiler() 181 resources.MaxFragmentUniformVectors = MAX_FRAGMENT_UNIFORM_VECTORS; in createCompiler() 182 resources.MaxDrawBuffers = MAX_DRAW_BUFFERS; in createCompiler() 183 resources.MaxVertexOutputVectors = MAX_VERTEX_OUTPUT_VECTORS; in createCompiler() [all …]
|
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/ |
D | DefaultTrackNameProvider.java | 30 private final Resources resources; field in DefaultTrackNameProvider 33 public DefaultTrackNameProvider(Resources resources) { in DefaultTrackNameProvider() argument 34 this.resources = Assertions.checkNotNull(resources); in DefaultTrackNameProvider() 54 return trackName.length() == 0 ? resources.getString(R.string.exo_track_unknown) : trackName; in getTrackName() 62 : resources.getString(R.string.exo_track_resolution, width, height); in buildResolutionString() 69 : resources.getString(R.string.exo_track_bitrate, bitrate / 1000000f); in buildBitrateString() 79 return resources.getString(R.string.exo_track_mono); in buildAudioChannelString() 81 return resources.getString(R.string.exo_track_stereo); in buildAudioChannelString() 84 return resources.getString(R.string.exo_track_surround_5_point_1); in buildAudioChannelString() 86 return resources.getString(R.string.exo_track_surround_7_point_1); in buildAudioChannelString() [all …]
|
/external/skia/tools/skottie_ios_app/ |
D | BUILD.gn | 35 "../../resources/skottie/skottie-3d-rotation-order.json", 36 "../../resources/skottie/skottie-camera-parent-3.json", 37 "../../resources/skottie/skottie-gradient-ramp.json", 38 "../../resources/skottie/skottie-linear-wipe-effect.json", 39 "../../resources/skottie/skottie-text-animator-1.json", 40 "../../resources/skottie/skottie-text-animator-2.json", 41 "../../resources/skottie/skottie-text-animator-3.json", 42 "../../resources/skottie/skottie-text-animator-4.json", 43 "../../resources/skottie/skottie-text-animator-5.json", 44 "../../resources/skottie/skottie-text-animator-8.json", [all …]
|
/external/fonttools/Tests/misc/ |
D | macRes_test.py | 54 resources = [res for typ in reader.keys() for res in reader[typ]] 55 self.assertExpected(resources) 62 resources = [res for typ in reader.keys() for res in reader[typ]] 64 self.assertExpected(resources) 77 resources = [res for typ in reader.keys() for res in reader[typ]] 79 self.assertExpected(resources) 83 def assertExpected(self, resources): argument 84 self.assertRezEqual(resources[0], 'TEST', b'Hello', 128, 'name1') 85 self.assertRezEqual(resources[1], 'TEST', b'World', 129, 'name2') 87 resources[2], 'test', b'How are you?', 130, 'name3')
|
/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/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowResourcesTest.java | 30 private Resources resources; field in ShadowResourcesTest 34 resources = ApplicationProvider.getApplicationContext().getResources(); in setup() 40 assertThat(resources.getString(R.string.hello)).isEqualTo("Bonjour"); in testGetValuesResFromSpecificQualifiers() 53 …int identifier_missing_from_r_file = resources.getIdentifier("secondary_text_material_dark", "colo… in shouldGenerateIdsForResourcesThatAreMissingRValues() 59 assertThat(resources.getColorStateList(identifier_missing_from_r_file)).isNotNull(); in shouldGenerateIdsForResourcesThatAreMissingRValues() 64 InputStream resourceStream = resources.openRawResource(R.drawable.an_image); in openRawResource_shouldLoadDrawableWithQualifiers() 73 assertThat(resources.openRawResourceFd(R.raw.raw_resource)).isNull(); in openRawResourceFd_returnsNull_todo_FIX() 75 assertThat(resources.openRawResourceFd(R.raw.raw_resource)).isNotNull(); in openRawResourceFd_returnsNull_todo_FIX() 84 Resources.Theme theme = resources.newTheme(); in themeResolveAttribute_shouldSupportDereferenceResource() 91 int value = resources.getColor(android.R.color.black); in themeResolveAttribute_shouldSupportDereferenceResource() [all …]
|