/external/llvm-project/clang/include/clang/AST/ |
D | ASTDumperUtils.h | 47 static const TerminalColor AttrColor = {llvm::raw_ostream::BLUE, true}; 51 static const TerminalColor CommentColor = {llvm::raw_ostream::BLUE, false}; 69 static const TerminalColor NullColor = {llvm::raw_ostream::BLUE, false}; 84 static const TerminalColor IndentColor = {llvm::raw_ostream::BLUE, false};
|
/external/rust/crates/plotters/src/element/ |
D | basic_shapes.rs | 108 assert_eq!(c, BLUE.to_rgba()); in test_path_element() 119 Into::<ShapeStyle>::into(&BLUE).stroke_width(5), in test_path_element() 191 assert_eq!(c, BLUE.to_rgba()); in test_rect_element() 203 Color::stroke_width(&BLUE, 5), in test_rect_element() 211 assert_eq!(c, BLUE.to_rgba()); in test_rect_element() 220 da.draw(&Rectangle::new([(100, 101), (105, 107)], BLUE.filled())) in test_rect_element() 276 assert_eq!(c, BLUE.to_rgba()); in test_circle_element() 286 da.draw(&Circle::new((150, 151), 20, &BLUE)) in test_circle_element() 336 assert_eq!(c, BLUE.to_rgba()); in test_polygon_element() 346 da.draw(&Polygon::new(points.clone(), &BLUE)) in test_polygon_element()
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | EnumMultisetTest.java | 77 BLUE, 94 assertEquals(0, ms.count(Color.BLUE)); 101 assertEquals(0, ms.count(Color.BLUE)); 130 ms.add(Color.BLUE, 3); 144 ms.add(Color.BLUE, 3); 166 .setDistinctValues(Enum.class, Color.BLUE, Color.RED)
|
D | MultimapsTest.java | 525 BLUE, enumConstant 581 multimap.put(Color.BLUE, -1); in testNewMultimapWithCollectionRejectingNegativeElements() 586 multimap.put(Color.BLUE, 2); in testNewMultimapWithCollectionRejectingNegativeElements() 593 .containsExactly(Maps.immutableEntry(Color.RED, 1), Maps.immutableEntry(Color.BLUE, 2)); in testNewMultimapWithCollectionRejectingNegativeElements() 603 multimap.putAll(Color.BLUE, asList(3, 1, 4)); in testNewMultimap() 607 assertEquals("[3, 1, 4]", multimap.get(Color.BLUE).toString()); in testNewMultimap() 610 assertEquals("[3, 1, 4]", ummodifiable.get(Color.BLUE).toString()); in testNewMultimap() 612 Collection<Integer> collection = multimap.get(Color.BLUE); in testNewMultimap() 623 assertTrue(multimap.get(Color.BLUE) instanceof NavigableSet); in testNewMultimapValueCollectionMatchesNavigableSet() 630 assertTrue(multimap.get(Color.BLUE) instanceof List); in testNewMultimapValueCollectionMatchesList() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | EnumMultisetTest.java | 77 BLUE, 94 assertEquals(0, ms.count(Color.BLUE)); 101 assertEquals(0, ms.count(Color.BLUE)); 130 ms.add(Color.BLUE, 3); 144 ms.add(Color.BLUE, 3); 166 .setDistinctValues(Enum.class, Color.BLUE, Color.RED)
|
D | MultimapsTest.java | 582 BLUE, enumConstant 638 multimap.put(Color.BLUE, -1); in testNewMultimapWithCollectionRejectingNegativeElements() 643 multimap.put(Color.BLUE, 2); in testNewMultimapWithCollectionRejectingNegativeElements() 650 .containsExactly(Maps.immutableEntry(Color.RED, 1), Maps.immutableEntry(Color.BLUE, 2)); in testNewMultimapWithCollectionRejectingNegativeElements() 660 multimap.putAll(Color.BLUE, asList(3, 1, 4)); in testNewMultimap() 664 assertEquals("[3, 1, 4]", multimap.get(Color.BLUE).toString()); in testNewMultimap() 667 assertEquals("[3, 1, 4]", ummodifiable.get(Color.BLUE).toString()); in testNewMultimap() 669 Collection<Integer> collection = multimap.get(Color.BLUE); in testNewMultimap() 680 assertTrue(multimap.get(Color.BLUE) instanceof NavigableSet); in testNewMultimapValueCollectionMatchesNavigableSet() 687 assertTrue(multimap.get(Color.BLUE) instanceof List); in testNewMultimapValueCollectionMatchesList() [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | swr_assert.cpp | 45 BLUE = 1, enumerator 49 BLUE = 4, 51 PURPLE = static_cast<uint32_t>(RED) | static_cast<uint32_t>(BLUE), 52 CYAN = static_cast<uint32_t>(GREEN) | static_cast<uint32_t>(BLUE), 55 static_cast<uint32_t>(RED) | static_cast<uint32_t>(GREEN) | static_cast<uint32_t>(BLUE),
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
D | FactoryModuleBuilderTest.java | 52 BLUE, enumConstant 104 final Mustang providedMustang = new Mustang(Color.BLUE); in testImplicitForwardingAssistedBindingCreatesNewObjects() 122 assertEquals(Color.BLUE, providedMustang.color); in testImplicitForwardingAssistedBindingCreatesNewObjects() 179 final Mustang providedMustang = new Mustang(Color.BLUE); in testExplicitForwardingAssistedBindingCreatesNewObjects() 200 assertEquals(Color.BLUE, providedMustang.color); in testExplicitForwardingAssistedBindingCreatesNewObjects() 278 Mustang mustang = factory.create(Color.BLUE); in testNoBindingAssistedInject() 279 assertEquals(Color.BLUE, mustang.color); in testNoBindingAssistedInject() 297 Mustang mustang = (Mustang) factory.create(Color.BLUE); in testBindingAssistedInject() 298 assertEquals(Color.BLUE, mustang.color); in testBindingAssistedInject() 320 Mustang mustang = (Mustang) factory.create(Color.BLUE); in testDuplicateBindings() [all …]
|
D | FactoryProviderTest.java | 51 BLUE, enumConstant 73 Mustang blueMustang = (Mustang) carFactory.create(Color.BLUE); in testAssistedFactory() 74 assertEquals(Color.BLUE, blueMustang.color); in testAssistedFactory() 116 Camaro blueCamaro = (Camaro) carFactory.create(Color.BLUE); in testAssistedFactoryWithAnnotations() 117 assertEquals(Color.BLUE, blueCamaro.color); in testAssistedFactoryWithAnnotations() 180 Corvette blueCorvette = (Corvette) carFactory.createConvertible(Color.BLUE); in testFactoryWithMultipleMethods() 181 assertEquals(Color.BLUE, blueCorvette.color); in testFactoryWithMultipleMethods() 685 Mustang blueMustang = mustangFactory.create(Color.BLUE); in testGenericAssistedFactory() 686 assertEquals(Color.BLUE, blueMustang.color); in testGenericAssistedFactory() 773 Camaro camaro = new Camaro(3000, 1967, Color.BLUE); in testAssistedFactoryForConcreteType() [all …]
|
D | FactoryProvider2Test.java | 48 BLUE, enumConstant 70 Mustang blueMustang = (Mustang) carFactory.create(Color.BLUE); in testAssistedFactory() 71 assertEquals(Color.BLUE, blueMustang.color); in testAssistedFactory() 94 Camaro blueCamaro = (Camaro) carFactory.create(Color.BLUE); in testAssistedFactoryWithAnnotations() 95 assertEquals(Color.BLUE, blueCamaro.color); in testAssistedFactoryWithAnnotations() 605 Subaru sedan = (Subaru) carFactory.create(Color.BLUE); in testInjectingProviderOfParameter() 606 assertSame(Color.BLUE, sedan.colorProvider.get()); in testInjectingProviderOfParameter() 607 assertSame(Color.BLUE, sedan.colorProvider.get()); in testInjectingProviderOfParameter() 997 Mustang blueMustang = mustangFactory.create(Color.BLUE); in testGenericAssistedFactory() 998 assertEquals(Color.BLUE, blueMustang.color); in testGenericAssistedFactory() [all …]
|
/external/llvm/test/CodeGen/NVPTX/ |
D | tex-read-cuda.ll | 14 ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 16 ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 33 ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 34 ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]…
|
/external/llvm-project/llvm/test/CodeGen/NVPTX/ |
D | tex-read-cuda.ll | 14 ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 16 ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 33 ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]… 34 ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]…
|
/external/rust/crates/plotters/examples/ |
D | chart.rs | 35 &BLUE, in main() 38 .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &BLUE)); in main() 85 &BLUE, in main()
|
D | errorbar.rs | 36 &BLUE, in main() 42 ErrorBar::new_vertical(*x, *yl, *ym, *yh, BLUE.filled(), 20) in main() 46 .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &BLUE)); in main()
|
D | two-scales.rs | 33 &BLUE, in main() 36 .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &BLUE)); in main()
|
D | slc-temp.rs | 45 &BLUE, in main() 50 .map(|(y, m, t)| Circle::new((Utc.ymd(*y, *m, 1), *t), 3, BLUE.filled())), in main()
|
D | 3d-plot.rs | 27 &BLUE.mix(0.2), in main() 30 .legend(|(x, y)| Rectangle::new([(x + 5, y - 5), (x + 15, y + 5)], BLUE.mix(0.5).filled())); in main()
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_formats.c | 45 #define RGBA _ISL_SWIZZLE(RED, GREEN, BLUE, ALPHA) 46 #define BGRA _ISL_SWIZZLE(BLUE, GREEN, RED, ALPHA) 47 #define RGB1 _ISL_SWIZZLE(RED, GREEN, BLUE, ONE) 343 y_plane(0, ISL_FORMAT_YCRCB_SWAPUV, RGBA, _ISL_SWIZZLE(BLUE, GREEN, RED, ZERO), 1, 1)), 345 … y_plane(0, ISL_FORMAT_YCRCB_SWAPUVY, RGBA, _ISL_SWIZZLE(BLUE, GREEN, RED, ZERO), 1, 1)), 348 chroma_plane(1, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(BLUE, ZERO, ZERO, ZERO), 2, 2), 352 … chroma_plane(1, ISL_FORMAT_R8G8_UNORM, RGBA, _ISL_SWIZZLE(BLUE, RED, ZERO, ZERO), 2, 2)), 355 chroma_plane(1, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(BLUE, ZERO, ZERO, ZERO), 2, 1), 359 … chroma_plane(1, ISL_FORMAT_R8G8_UNORM, RGBA, _ISL_SWIZZLE(BLUE, RED, ZERO, ZERO), 2, 1)), 362 chroma_plane(1, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(BLUE, ZERO, ZERO, ZERO), 1, 1), [all …]
|
/external/python/cpython3/Doc/library/ |
D | enum.rst | 82 ... BLUE = 3 98 :attr:`Color.RED` is ``RED``, the value of :attr:`Color.BLUE` is 165 <Color.BLUE: 3> 255 ... BLUE = auto() 259 [<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>] 321 >>> Color.RED is Color.BLUE 323 >>> Color.RED is not Color.BLUE 329 >>> Color.RED < Color.BLUE 336 >>> Color.BLUE == Color.RED 338 >>> Color.BLUE != Color.RED [all …]
|
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/span/ |
D | SpanUtilTest.java | 43 ForegroundColorSpan newSpan = new ForegroundColorSpan(Color.BLUE); in addOrReplaceSpan_replacesSameTypeAndIndexes() 57 BackgroundColorSpan newSpan = new BackgroundColorSpan(Color.BLUE); in addOrReplaceSpan_ignoresDifferentType() 73 ForegroundColorSpan differentEnd = new ForegroundColorSpan(Color.BLUE); in addOrReplaceSpan_ignoresDifferentStartEndAndFlags()
|
/external/libiio/src/examples/ |
D | iio-monitor.c | 40 #define BLUE 050 macro 171 BLUE, name, BLUE); in read_thd() 229 YELLOW, BLUE, in show_contexts_screen() 231 BLUE); in show_contexts_screen()
|
/external/python/cpython3/Lib/test/ |
D | test_enum.py | 557 RED, GREEN, BLUE = 1, 2, 3 variable in TestEnum.test_object_str_override.Colors 1839 BLUE = 3 variable in TestEnum.test_default_missing.Color 1905 BLUE = auto() variable in TestEnum.test_multiple_mixin.Color 1908 self.assertEqual(Color.BLUE.value, 3) 1910 self.assertEqual(str(Color.BLUE), 'Color.BLUE') 1914 BLUE = auto() variable in TestEnum.test_multiple_mixin.Color 1917 self.assertEqual(Color.BLUE.value, 3) 1919 self.assertEqual(str(Color.BLUE), 'blue') 1923 BLUE = auto() variable in TestEnum.test_multiple_mixin.Color 1926 self.assertEqual(Color.BLUE.value, 3) [all …]
|
/external/skia/modules/canvaskit/tests/ |
D | core.spec.js | 54 ambient: CanvasKit.BLUE, 69 ambientColor.toTypedArray().set(CanvasKit.BLUE); 357 const colors = [CanvasKit.RED, CanvasKit.BLUE, CanvasKit.YELLOW, CanvasKit.CYAN]; 473 [CanvasKit.GREEN, CanvasKit.BLUE], 502 [transparentGreen, CanvasKit.BLUE, CanvasKit.RED], 529 Float32Array.of(...transparentGreen, ...CanvasKit.BLUE, ...CanvasKit.RED), 543 typedColorsArray.set(CanvasKit.BLUE, 4); 580 [transparentGreen, CanvasKit.BLUE, CanvasKit.RED], 591 [transparentGreen, CanvasKit.BLUE, CanvasKit.RED], 604 [transparentGreen, CanvasKit.BLUE, CanvasKit.RED], [all …]
|
/external/pigweed/pw_assert_basic/ |
D | basic_handler.cc | 44 #define BLUE "\033[96m" macro 56 #define BLUE "" macro
|
/external/pigweed/pw_log_basic/ |
D | log_basic.cc | 32 #define BLUE "\033[96m" macro 55 case PW_LOG_LEVEL_DEBUG : return BLUE BOLD "DBG" RESET; in LogLevelToLogLevelName()
|