/external/guava/guava-tests/test/com/google/common/reflect/ |
D | TypeTokenResolutionTest.java | 291 private static class Red<A> { 297 Red<A> getSelfB() { 298 return Red.this; 302 Red<A> getSelfA() { 306 private class Yellow<B> extends Red<B>.Orange { 307 Yellow(Red<B> red) { 315 Red<A> getA() { 319 Red<B> getB() { 330 Red<String> redString = new Red<String>() {}; 331 Red<Integer> redInteger = new Red<Integer>() {}; [all …]
|
/external/giflib/ |
D | quantize.c | 71 long Red, Green, Blue; in GifQuantizeBuffer() local 135 OutputColorMap[i].Red = OutputColorMap[i].Green = in GifQuantizeBuffer() 144 Red = Green = Blue = 0; in GifQuantizeBuffer() 147 Red += QuantizedColor->RGB[0]; in GifQuantizeBuffer() 152 OutputColorMap[i].Red = (Red << (8 - BITS_PER_PRIM_COLOR)) / j; in GifQuantizeBuffer() 169 if (MaxRGBError[0] < ABS(OutputColorMap[Index].Red - RedInput[i])) in GifQuantizeBuffer() 170 MaxRGBError[0] = ABS(OutputColorMap[Index].Red - RedInput[i]); in GifQuantizeBuffer()
|
/external/python/cpython2/Tools/pynche/ |
D | namedcolors.txt | 3 Red #FF0000 45 Indian Red #4E2F2F 63 Medium Violet Red #DB7093 73 Orange Red #FF2400 98 Violet Red #CC3299
|
/external/clang/test/Index/ |
D | annotate-tokens.c | 11 enum Color { Red, Green, Blue }; enumerator 25 case Red: in g() 32 return Red; in g()
|
D | load-decls.c | 2 Red, enumerator 6 Rouge = Red
|
D | complete-enums.cpp | 5 Red = 17, enumerator 13 case Color::Red; in f()
|
D | complete-type-factors.m | 4 Red, Green, Blue 31 [a method:Red priority:High]; 32 [A method:Red priority:Low]; 46 // CHECK-CC1: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (32) 61 // CHECK-CC2: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (16) 77 // CHECK-CC3: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (65) 93 // CHECK-CC4: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (65) 111 // CHECK-CC6: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (16) 124 // CHECK-CC7: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (16) 136 // CHECK-CC8: EnumConstantDecl:{ResultType enum Color}{TypedText Red} (65)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Color.java | 7 public static final byte Red = 1; field in Color 13 public static String name(int e) { return names[e - Red]; } in name()
|
/external/clang/test/CodeCompletion/ |
D | enum-switch-case.c | 2 Red, enumerator 13 case Red:
|
D | enum-switch-case.cpp | 3 Red, enumerator 15 case N::Red:
|
/external/guice/core/test/com/googlecode/guice/ |
D | Jsr330Test.java | 83 bind(C.class).annotatedWith(Red.class).toInstance(c); in testQualifiedInject() 356 @Inject @Red C c; 364 @Inject void injectD(@Red D d, @Named("jesse") E e) { in injectD() 371 @interface Red {} annotation in Jsr330Test 373 public static final Red RED = new Red() { 375 return Red.class; 379 return obj instanceof Red; 397 @Inject void injectD(@Red Provider<D> dProvider, Provider<E> eProvider) { in injectD()
|
/external/deqp/modules/egl/ |
D | teglSimpleConfigCase.cpp | 118 template <int Red, int Green, int Blue, int Alpha> 121 return c.redSize() == Red && in colorBits() 127 template <int Red, int Green, int Blue, int Alpha> 130 return c.redSize() != Red || in notColorBits()
|
/external/llvm/test/Transforms/LoopVectorize/ARM/ |
D | arm-ieee-vectorize.ll | 90 %Red.06 = phi i32 [ %add, %for.body ], [ undef, %for.body.preheader ] 96 %add = add nsw i32 %mul, %Red.06 106 %Red.0.lcssa = phi i32 [ undef, %entry ], [ %add.lcssa, %for.end.loopexit ] 107 ret i32 %Red.0.lcssa 125 %Red.06 = phi float [ %add, %for.body ], [ undef, %for.body.preheader ] 131 %add = fadd float %Red.06, %mul 141 %Red.0.lcssa = phi float [ undef, %entry ], [ %add.lcssa, %for.end.loopexit ] 142 ret float %Red.0.lcssa 248 %Red.06 = phi i32 [ %add, %for.body ], [ undef, %for.body.preheader ] 254 %add = add nsw i32 %mul, %Red.06 [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_report_decorator.h | 30 const char *Warning() { return Red(); } in Warning() 34 const char *Red() const { return ansi_ ? "\033[1m\033[31m" : ""; } in Red() function
|
/external/clang/test/FixIt/ |
D | typo.c | 16 enum Color { Red, Green, Blue }; enumerator 29 2.71818, 5.0, 6.0, Red
|
/external/guice/core/test/com/google/inject/ |
D | BindingAnnotationTest.java | 71 bindConstant().annotatedWith(Red.class).to("foo"); in testRequireExactAnnotationsDoesntBreakIfDefaultsExist() 120 @Inject @Red String s; 135 @interface Red { annotation in BindingAnnotationTest
|
/external/parameter-framework/upstream/test/xml-generator/testVector/ |
D | complex.pfw | 3 domainGroup: Red sequenceAware 4 Colors Includes Red
|
/external/flatbuffers/samples/ |
D | SampleBinary.cs | 53 Monster.AddColor(builder, Color.Red); in Main() 81 Assert(monster.Color == Color.Red, "monster.Color", Convert.ToString(monster.Color), in Main() 82 Convert.ToString(Color.Red)); in Main()
|
D | SampleBinary.java | 55 Monster.addColor(builder, Color.Red); in main() 80 assert monster.color() == Color.Red; in main()
|
D | SampleBinary.php | 61 \MyGame\Sample\Monster::AddColor($builder, \MyGame\Sample\Color::Red); 86 $success &= assert($monster->getColor() == \MyGame\Sample\Color::Red);
|
D | samplebinary.js | 55 MyGame.Sample.Monster.addColor(builder, MyGame.Sample.Color.Red) 80 assert.equal(monster.color(), MyGame.Sample.Color.Red);
|
/external/curl/tests/data/ |
D | test194 | 16 Server: Apache/1.3.19 (Unix) (Red-Hat/Linux) mod_ssl/2.8.1 OpenSSL/0.9.6 PHP/4.3.1 31 Server: Apache/1.3.19 (Unix) (Red-Hat/Linux) mod_ssl/2.8.1 OpenSSL/0.9.6 PHP/4.3.1
|
/external/clang/test/CodeGenObjC/ |
D | boxing.m | 89 typedef enum : NSInteger { Red, Green, Blue } Color; 91 @(Red); 92 Color col = Red;
|
/external/libxml2/result/ |
D | rdf1.rde | 38 3 3 #text 0 1 Red Hat Software 43 3 3 #text 0 1 Red Hat Software <bugs@redhat.com> 53 3 3 #text 0 1 Red Hat Package Manager
|
D | rdf1.rdr | 38 3 3 #text 0 1 Red Hat Software 43 3 3 #text 0 1 Red Hat Software <bugs@redhat.com> 53 3 3 #text 0 1 Red Hat Package Manager
|