/external/guice/core/test/com/google/inject/ |
D | BindingAnnotationTest.java | 37 bindConstant().annotatedWith(Blue.class).to("foo"); in testAnnotationWithValueMatchesKeyWithTypeOnly() 53 bindConstant().annotatedWith(Blue.class).to("foo"); in testRequireExactAnnotationsDisablesFallback() 116 @Inject @Blue(5) String s; 129 @interface Blue { annotation in BindingAnnotationTest 149 public Blue createBlue(final int value) { in createBlue() 150 return new Blue() { in createBlue() 156 return Blue.class; in createBlue() 160 return o instanceof Blue in createBlue() 161 && ((Blue) o).value() == value; in createBlue()
|
/external/parameter-framework/upstream/test/xml-generator/testVector/ |
D | second.pfw | 9 confGroup: Blue 10 Colors Includes Blue 12 # Inherits from "EddGroup" domainGroup, "Blue" confGroup 17 # Inherits from "EddGroup" domainGroup and "Blue" confGroup
|
D | complex.pfw | 32 conf: Blue.dot 33 Colors Includes Blue
|
/external/opencv3/doc/py_tutorials/py_ml/py_knn/py_knn_understanding/ |
D | py_knn_understanding.markdown | 18 In the image, there are two families, Blue Squares and Red Triangles. We call each family as 27 should be added to one of these Blue/Red families. We call that process, **Classification**. What we 34 But there is a problem with that. Red Triangle may be the nearest. But what if there are lot of Blue 35 Squares near to him? Then Blue Squares have more strength in that locality than Red Triangle. So 38 families. He has two Red and one Blue (there are two Blues equidistant, but since k=3, we take only 39 one of them), so again he should be added to Red family. But what if we take k=7? Then he has 5 Blue 40 families and 2 Red families. Great!! Now he should be added to Blue family. So it all changes with 41 value of k. More funny thing is, what if k = 4? He has 2 Red and 2 Blue neighbours. It is a tie !!! 47 Red families are more closer to him than the other 2 Blue families. So he is more eligible to be 69 So here, we label the Red family as **Class-0** (so denoted by 0) and Blue family as **Class-1** [all …]
|
/external/giflib/ |
D | quantize.c | 71 long Red, Green, Blue; in GifQuantizeBuffer() local 136 OutputColorMap[i].Blue = 0; in GifQuantizeBuffer() 144 Red = Green = Blue = 0; in GifQuantizeBuffer() 149 Blue += QuantizedColor->RGB[2]; in GifQuantizeBuffer() 154 OutputColorMap[i].Blue = (Blue << (8 - BITS_PER_PRIM_COLOR)) / j; in GifQuantizeBuffer() 173 if (MaxRGBError[2] < ABS(OutputColorMap[Index].Blue - BlueInput[i])) in GifQuantizeBuffer() 174 MaxRGBError[2] = ABS(OutputColorMap[Index].Blue - BlueInput[i]); in GifQuantizeBuffer()
|
D | gifalloc.c | 98 Object->Colors[i + j].Blue); in DumpColorMap() 150 && ColorIn1->Colors[CrntSlot - 1].Blue == 0) in GifUnionColorMap() 187 Map[j].Red = Map[j].Green = Map[j].Blue = 0; in GifUnionColorMap()
|
/external/clang/test/Index/ |
D | annotate-tokens.c | 11 enum Color { Red, Green, Blue }; enumerator 29 return Blue; in g() 31 case Blue: in g()
|
D | complete-type-factors.m | 4 Red, Green, Blue 36 // CHECK-CC1: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (32) 50 // CHECK-CC2: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (16) 65 // CHECK-CC3: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (65) 81 // CHECK-CC4: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (65) 99 // CHECK-CC6: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (16) 117 // CHECK-CC7: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (16) 129 // CHECK-CC8: EnumConstantDecl:{ResultType enum Color}{TypedText Blue} (65)
|
D | load-decls.c | 4 Blue, enumerator
|
D | complete-enums.cpp | 7 Blue enumerator
|
/external/deqp/modules/egl/ |
D | teglSimpleConfigCase.cpp | 118 template <int Red, int Green, int Blue, int Alpha> 123 c.blueSize() == Blue && in colorBits() 127 template <int Red, int Green, int Blue, int Alpha> 132 c.blueSize() != Blue || in notColorBits()
|
D | teglRenderCase.cpp | 371 template <int Red, int Green, int Blue, int Alpha> 376 c.blueSize() == Blue && in colorBits() 380 template <int Red, int Green, int Blue, int Alpha> 385 c.blueSize() != Blue || in notColorBits()
|
/external/icu/icu4j/ |
D | stylesheet.css | 30 .NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */ 77 color: Blue; 82 color: Blue; 117 color: Blue;
|
/external/clang/test/SemaCXX/ |
D | make_integer_seq.cpp | 43 Blue }; enumerator 44 using illformed1 = ErrorSeq<Color, Blue>; // expected-note{{in instantiation}}
|
/external/clang/test/CXX/class.access/ |
D | p6.cpp | 84 class Green {}; class Blue {}; class 105 …Outer::A<B, Blue>::foo(); // expected-error {{no member named 'foo' in 'test3::Outer::A<test3::B, … in test()
|
/external/parameter-framework/upstream/test/xml-generator/PFConfig/ |
D | criteria.txt | 1 InclusiveCriterion Colors : Red Green Blue
|
/external/clang/test/PCH/ |
D | enum.h | 6 Blue enumerator
|
/external/clang/test/CodeCompletion/ |
D | macros.c | 2 Red, Green, Blue enumerator
|
D | enum-switch-case.c | 6 Blue, enumerator
|
D | enum-switch-case-qualified.cpp | 10 Blue, enumerator
|
D | enum-switch-case.cpp | 7 Blue, enumerator
|
/external/clang/test/CXX/over/over.built/ |
D | p25.cpp | 4 enum class Color { Red, Green, Blue }; enumerator
|
/external/opencv3/doc/py_tutorials/py_ml/py_kmeans/py_kmeans_understanding/ |
D | py_kmeans_understanding.markdown | 65 \f$C1 \leftrightarrow Red\_Points\f$ and \f$C2 \leftrightarrow Blue\_Points\f$ is minimum. 67 …\sum_{All\: Red\_Points}distance(C1,Red\_Point) + \sum_{All\: Blue\_Points}distance(C2,Blue\_Point…
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_report_decorator.h | 37 const char *Blue() const { return ansi_ ? "\033[1m\033[34m" : ""; } in Blue() function
|
/external/clang/test/FixIt/ |
D | typo.c | 16 enum Color { Red, Green, Blue }; enumerator
|