/external/clang/test/Index/ |
blocks.c | 3 typedef int int_t; typedef 9 ^ int_t(struct foo *foo) { return (int_t) foo->x + i; }(&_foo); function 21 // CHECK: blocks.c:9:5: TypeRef=int_t:3:13 Extent=[9:5 - 9:10] 28 // CHECK: blocks.c:9:38: TypeRef=int_t:3:13 Extent=[9:38 - 9:43]
|
/external/mesa3d/src/compiler/glsl/ |
lower_vertex_id.cpp | 85 const glsl_type *const int_t = glsl_type::int_type; local 88 VertexID = new(mem_ctx) ir_variable(int_t, "__VertexID", 92 gl_VertexID = new(mem_ctx) ir_variable(int_t, "gl_VertexIDMESA", 102 gl_BaseVertex = new(mem_ctx) ir_variable(int_t, "gl_BaseVertex",
|
builtin_variables.cpp | 425 const glsl_type * const int_t; member in class:__anon32987::builtin_variable_generator 445 bool_t(glsl_type::bool_type), int_t(glsl_type::int_type), [all...] |
/external/clang/test/FixIt/ |
fixit.c | 50 // CHECK: const typedef int int_t; 51 const typedef typedef int int_t; // expected-warning {{duplicate 'typedef'}} typedef
|
/external/clang/test/SemaCXX/ |
ms-interface.cpp | 20 using int_t = int;
|
/external/v8/src/base/ |
macros.h | 401 template <typename int_t, typename float_t, typename biggest_int_t = int64_t> 403 static_assert(sizeof(int_t) < sizeof(biggest_int_t), 404 "int_t can't be bounds checked by the compiler"); 406 static_cast<float_t>(std::numeric_limits<int_t>::min()) - 1; 408 static_cast<float_t>(std::numeric_limits<int_t>::max()) + 1; 411 static_cast<biggest_int_t>(std::numeric_limits<int_t>::min()); 414 static_cast<biggest_int_t>(std::numeric_limits<int_t>::max());
|
logging.h | 135 using int_t = typename std::conditional< 139 PrintCheckOperand(os, static_cast<int_t>(static_cast<underlying_t>(val)));
|
/external/autotest/tko/ |
utils_unittest.py | 38 for int_t, str_t in itertools.izip(int_times, str_times): 39 date_int = utils.get_timestamp({"key": int_t}, "key")
|
/external/clang/test/Sema/ |
format-strings.c | 322 typedef enum { A } int_t; typedef in typeref:enum:__anon17779 323 void f0(int_t x) { printf("%d\n", x); } [all...] |