Home
last modified time | relevance | path

Searched refs:Red (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/external/guava/guava-tests/test/com/google/common/reflect/
DTypeTokenResolutionTest.java291 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/opencv3/doc/py_tutorials/py_ml/py_knn/py_knn_understanding/
Dpy_knn_understanding.markdown18 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
30 One method is to check who is his nearest neighbour. From the image, it is clear it is the Red
31 Triangle family. So he is also added into Red Triangle. This method is called simply **Nearest
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 !!!
[all …]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/
Dtricky01.dat19 <font color=red><i>Italic and Red<p>Italic and Red </font> Just italic.</p> Italic only.</i> Plain
20 <p>I should not be red. <font color=red>Red. <i>Italic and red.</p>
21 <p>Italic and red. </i> Red.</font> I should not be red.</p>
31 | "Italic and Red"
36 | "Italic and Red "
45 | "Red. "
58 | " Red."
/external/giflib/
Dquantize.c71 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/clang/test/Index/
Dannotate-tokens.c11 enum Color { Red, Green, Blue }; enumerator
25 case Red: in g()
32 return Red; in g()
Dload-decls.c2 Red, enumerator
6 Rouge = Red
Dcomplete-enums.cpp5 Red = 17, enumerator
13 case Color::Red; in f()
Dcomplete-type-factors.m4 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)
Dcomplete-enums.c12 case Red: in f()
/external/clang/test/CodeCompletion/
Denum-switch-case.c2 Red, enumerator
13 case Red:
Denum-switch-case.cpp3 Red, enumerator
15 case N::Red:
/external/guice/core/test/com/googlecode/guice/
DJsr330Test.java83 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/
DteglSimpleConfigCase.cpp118 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/compiler-rt/lib/sanitizer_common/
Dsanitizer_report_decorator.h30 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/
Dtypo.c16 enum Color { Red, Green, Blue }; enumerator
29 2.71818, 5.0, 6.0, Red
/external/guice/core/test/com/google/inject/
DBindingAnnotationTest.java71 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/
Dcomplex.pfw3 domainGroup: Red sequenceAware
4 Colors Includes Red
/external/curl/tests/data/
Dtest19416 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/
Dboxing.m89 typedef enum : NSInteger { Red, Green, Blue } Color;
91 @(Red);
92 Color col = Red;
/external/libxml2/result/
Drdf1.rdr38 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
Drdf1.rde38 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
Drdf1.sax40 SAX.characters(Red Hat Software, 16)
45 SAX.characters(Red Hat Software , 17)
58 SAX.characters(Red Hat Package Manager, 23)
/external/parameter-framework/upstream/test/xml-generator/PFConfig/
Dcriteria.txt1 InclusiveCriterion Colors : Red Green Blue
/external/clang/test/PCH/
Denum.c10 int i = Red;
Denum.h4 Red, enumerator

12345678910>>...15