Searched defs:CONST (Results 1 - 25 of 33) sorted by relevance

12

/external/compiler-rt/test/BlocksRuntime/
H A Dcopyconstructor.C17 #define CONST const macro
22 TestObject(CONST TestObject& inObj);
26 TestObject& operator=(CONST TestObject& inObj);
28 int version() CONST { return _version; }
33 TestObject::TestObject(CONST TestObject& inObj)
56 TestObject& TestObject::operator=(CONST TestObject& inObj)
H A Dreference.C20 #define CONST const macro
25 TestObject(CONST TestObject& inObj);
29 TestObject& operator=(CONST TestObject& inObj);
33 int version() CONST { return _version; }
38 TestObject::TestObject(CONST TestObject& inObj)
61 TestObject& TestObject::operator=(CONST TestObject& inObj)
/external/deqp/framework/randomshaders/
H A DrsgVariable.cpp50 case STORAGE_CONST: str << Token::CONST; break; member in class:rsg::Token
H A DrsgToken.hpp108 CONST, enumerator in enum:rsg::Token::Type
/external/chromium_org/v8/src/base/
H A Dwin32-headers.h68 #undef CONST macro
/external/clang/test/SemaCXX/
H A Dimplicit-member-functions.cpp26 operator = (CONST);
38 static const B CONST; member in class:PR6570::B
H A Dcxx1y-variable-templates_in_class.cpp5 #define CONST const macro
12 template<typename T> CONST T wrong; // expected-error {{member 'wrong' declared as a template}}
13 template<typename T> CONST T wrong_init = 5; // expected-error {{member 'wrong_init' declared as a template}}
14 template<typename T, typename T0> static CONST T right = T(100);
15 template<typename T> static CONST T right<T,int> = 5;
16 template<typename T> CONST int right<int,T>; // expected-error {{member 'right' declared as a template}}
17 template<typename T> CONST float right<float,T> = 5; // expected-error {{member 'right' declared as a template}}
18 template<> static CONST int right<int,int> = 7; // expected-error {{explicit specialization of 'right' in class scope}}
19 template<> static CONST float right<float,int>; // expected-error {{explicit specialization of 'right' in class scope}}
20 template static CONST in
[all...]
H A Dcxx1y-variable-templates_top_level.cpp6 #define CONST const macro
8 #define CONST constexpr macro
15 CONST T cpi = T(3.1415926535897932385); // expected-note {{template is declared here}}
17 template<typename T> extern CONST T vc;
43 CONST T const_circular_area(T r) {
48 CONST float t = const_circular_area(2.0) - 12;
51 CONST int test = (t > 0) && (t < 1);
135 template CONST int pi0b<int>; // expected-error {{type 'const int' of explicit instantiation of 'pi0b' does not match expected type 'int'}}
147 CONST T pi1a = T(3.1415926535897932385); // expected-note {{variable template 'pi1a' declared here}}
151 CONST
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcompiler.h165 * CONST instead of const. Pass -DNO_CONST to compilers where this matters.
168 # define CONST macro
170 # define CONST const macro
H A Dget.c64 #undef CONST macro
178 #define CONST(value) \ macro
597 { GL_MAX_MODELVIEW_STACK_DEPTH, CONST(MAX_MODELVIEW_STACK_DEPTH), NO_EXTRA },
598 { GL_MAX_PROJECTION_STACK_DEPTH, CONST(MAX_PROJECTION_STACK_DEPTH), NO_EXTRA },
599 { GL_MAX_TEXTURE_STACK_DEPTH, CONST(MAX_TEXTURE_STACK_DEPTH), NO_EXTRA },
644 { GL_SHADER_COMPILER, CONST(1), extra_ARB_ES2_compatibility },
809 { GL_SHADER_COMPILER, CONST(1), NO_EXTRA },
811 { GL_NUM_SHADER_BINARY_FORMATS, CONST(0), NO_EXTRA },
812 { GL_SHADER_BINARY_FORMATS, CONST(0), NO_EXTRA },
839 { GL_CURRENT_RASTER_INDEX, CONST(
[all...]
/external/chromium_org/v8/src/
H A Dinterface.h17 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
50 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
81 if (*ok) Chase()->flags_ |= VALUE + CONST;
112 bool IsConst() { return Chase()->flags_ & CONST; }
184 CONST = 2, // This type describes a constant enumerator in enum:v8::internal::Interface::Flags
H A Dglobals.h675 CONST, // declared via 'const' declarations enumerator in enum:v8::internal::VariableMode
716 return (mode >= CONST && mode <= MODULE) || mode == CONST_LEGACY;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h34 CONST = 1, // value is a constant enumerator in enum:llvm::SDDbgValue::DbgValueKind
70 kind = CONST;
95 const Value *getConst() { assert (kind==CONST); return u.Const; }
/external/mesa3d/src/mesa/main/
H A Dcompiler.h165 * CONST instead of const. Pass -DNO_CONST to compilers where this matters.
168 # define CONST macro
170 # define CONST const macro
H A Dget.c64 #undef CONST macro
178 #define CONST(value) \ macro
597 { GL_MAX_MODELVIEW_STACK_DEPTH, CONST(MAX_MODELVIEW_STACK_DEPTH), NO_EXTRA },
598 { GL_MAX_PROJECTION_STACK_DEPTH, CONST(MAX_PROJECTION_STACK_DEPTH), NO_EXTRA },
599 { GL_MAX_TEXTURE_STACK_DEPTH, CONST(MAX_TEXTURE_STACK_DEPTH), NO_EXTRA },
644 { GL_SHADER_COMPILER, CONST(1), extra_ARB_ES2_compatibility },
809 { GL_SHADER_COMPILER, CONST(1), NO_EXTRA },
811 { GL_NUM_SHADER_BINARY_FORMATS, CONST(0), NO_EXTRA },
812 { GL_SHADER_BINARY_FORMATS, CONST(0), NO_EXTRA },
839 { GL_CURRENT_RASTER_INDEX, CONST(
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Dansidecl.h112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
193 #define CONST const macro
232 #define CONST macro
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegOps.java50 public static final int CONST = 5; field in class:RegOps
318 case CONST: return "const";
/external/javassist/src/main/javassist/compiler/
H A DTokenId.java27 int CONST = 308; // reserved keyword field in interface:TokenId
/external/libyuv/files/source/
H A Dcompare.cc130 #define CONST macro
132 #define CONST static const macro
135 CONST uvec32 kHash16x33 = { 0x92d9e201, 0, 0, 0 }; // 33 ^ 16
136 CONST uvec32 kHashMul0 = {
142 CONST uvec32 kHashMul1 = {
148 CONST uvec32 kHashMul2 = {
154 CONST uvec32 kHashMul3 = {
H A Drow_posix.cc26 #define CONST macro
28 #define CONST static const
34 CONST vec8 kARGBToY = {
38 CONST vec8 kARGBToU = {
42 CONST vec8 kARGBToV = {
47 CONST vec8 kBGRAToY = {
51 CONST vec8 kBGRAToU = {
55 CONST vec8 kBGRAToV = {
60 CONST vec8 kABGRToY = {
64 CONST vec
[all...]
H A Dscale.cc116 #define CONST macro
118 #define CONST static const macro
122 CONST uvec8 kShuf0 =
126 CONST uvec8 kShuf1 =
130 CONST uvec8 kShuf2 =
134 CONST uvec8 kShuf01 =
138 CONST uvec8 kShuf11 =
142 CONST uvec8 kShuf21 =
146 CONST uvec8 kMadd01 =
150 CONST uvec
[all...]
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc292 #ifndef CONST
294 #define CONST /* blank */ macro
296 #define CONST const
664 (s, nd0, nd, y9, dplen) CONST char *s; int nd0, nd, dplen; ULong y9;
666 (CONST char *s, int nd0, int nd, ULong y9, int dplen)
1452 static CONST double
1462 static CONST double
1465 static CONST double tinytens[] = { 1e-16, 1e-32, 1e-64, 1e-128,
1480 static CONST double tinytens[] = { 1e-16, 1e-32, 1e-64 };
1484 static CONST doubl
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDops.java142 new Dop(Opcodes.CONST_4, Opcodes.CONST,
146 new Dop(Opcodes.CONST_16, Opcodes.CONST,
149 public static final Dop CONST = field in class:Dops
150 new Dop(Opcodes.CONST, Opcodes.CONST,
154 new Dop(Opcodes.CONST_HIGH16, Opcodes.CONST,
155 Opcodes.CONST, Form21h.THE_ONE, true);
1126 set(CONST);
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DOpcodeInfo.java142 public static final Info CONST = field in class:OpcodeInfo
143 new Info(Opcodes.CONST, "const",
1125 set(CONST);
H A DOpcodes.java64 public static final int CONST = 0x14; field in class:Opcodes

Completed in 4022 milliseconds

12