/external/clang/test/Index/ |
load-decls.c | 2 Red, 6 Rouge = Red 11 // CHECK: load-decls.c:2:3: EnumConstantDecl=Red:2:3 (Definition) Extent=[2:3 - 2:6] 15 // CHECK: load-decls.c:6:11: DeclRefExpr=Red:2:3 Extent=[6:11 - 6:14]
|
complete-enums.cpp | 5 Red = 17, 13 case Color::Red; 20 // CHECK-CC1: EnumConstantDecl:{ResultType Color}{Text Color::}{TypedText Red} (7) 25 // CHECK-CC2: EnumConstantDecl:{ResultType Color}{Text Color::}{TypedText Red} (7)
|
complete-enums.c | 12 case Red:
|
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} (16) 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 [all...] |
annotate-tokens.c | 11 enum Color { Red, Green, Blue }; 25 case Red: 32 return Red; 141 // CHECK: Identifier: "Red" [25:8 - 25:11] DeclRefExpr=Red:11:14 156 // CHECK: Identifier: "Red" [32:12 - 32:15] DeclRefExpr=Red:11:14
|
/external/clang/test/CodeCompletion/ |
enum-switch-case.c | 2 Red, 13 case Red: 42 // CHECK-CC2-NEXT: COMPLETION: Red : [#enum Color#]Red
|
enum-switch-case.cpp | 3 Red, 15 case N::Red:
|
enum-switch-case-qualified.cpp | 6 Red, 29 // CHECK-CC1-NEXT: Red : [#M::N::C::Color#]N::C::Red
|
macros.c | 2 Red, Green, Blue 37 // CC2: Red
|
/external/clang/test/PCH/ |
enum.c | 10 int i = Red;
|
enum.h | 4 Red,
|
/external/clang/test/CXX/over/over.built/ |
p25.cpp | 4 enum class Color { Red, Green, Blue };
|
/external/clang/test/FixIt/ |
typo.c | 16 enum Color { Red, Green, Blue }; 29 2.71818, 5.0, 6.0, Red
|
fixit.c | 55 Red // expected-error{{missing ',' between enumerators}}
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_report_decorator.h | 26 const char *Red() const { return ansi_ ? "\033[1m\033[31m" : ""; }
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
for_each.h | 59 typename Functionality, typename Red, typename Result> 64 Red reduction, Result reduction_start,
|
omp_loop.h | 64 typename Red, 69 Op o, Fu& f, Red r, Result base,
|
omp_loop_static.h | 64 typename Red, 69 Op o, Fu& f, Red r,
|
par_loop.h | 65 typename Red, 70 Op o, Fu& f, Red r, Result base,
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
PODRedBlackTree.h | 26 // A red-black tree, which is a form of a balanced binary tree. It 35 // The data type T that is stored in this red-black tree must be only 51 // Note that when complex types are stored in this red/black tree, it 63 // This red-black tree is designed to be _augmented_; subclasses can 69 // The design of this red-black tree comes from Cormen, Leiserson, 109 // Constructs a new red-black tree without allocating an arena. 122 // Constructs a new red-black tree, allocating temporary objects 134 // Constructs a new red-black tree, allocating temporary objects 247 Red = 1, 257 // Constructor. Newly-created nodes are colored red [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/ |
dxgitype.idl | 75 float Red;
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/ |
dxgitype.idl | 75 float Red;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
EnumMapTest.java | 38 Red, Green, Blue {}; 111 enumEmptyMap.put(Color.Red, 2); 123 enumSizeMap.put(Color.Red, 2); 135 enumSizeMap.put(Color.Red, 2); 164 assertNull("Constructor fails", enumMap.get(Color.Red)); //$NON-NLS-1$ 165 enumMap.put(Color.Red, 1); 166 assertEquals("Wrong value", 1, enumMap.get(Color.Red)); //$NON-NLS-1$ 213 assertNull("Constructor fails", enumMap.get(Color.Red)); //$NON-NLS-1$ 214 enumMap.put(Color.Red, 1); 215 assertEquals("Wrong value", 1, enumMap.get(Color.Red)); //$NON-NLS-1 [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
EnumMapTest.java | 40 Red, Green, Blue {}; 113 enumEmptyMap.put(Color.Red, 2); 125 enumSizeMap.put(Color.Red, 2); 137 enumSizeMap.put(Color.Red, 2); 166 assertNull("Constructor fails", enumMap.get(Color.Red)); 167 enumMap.put(Color.Red, 1); 168 assertEquals("Wrong value", 1, enumMap.get(Color.Red)); 215 assertNull("Constructor fails", enumMap.get(Color.Red)); 216 enumMap.put(Color.Red, 1); 217 assertEquals("Wrong value", 1, enumMap.get(Color.Red)); [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloNode.java | 64 /** create a red box straight above the blue one at (1,3,1) */ 66 Geometry red = new Geometry("Box", box2); local 69 mat2.setColor("Color", ColorRGBA.Red); 70 red.setMaterial(mat2); 78 pivot.attachChild(red);
|