/external/deqp/external/vulkancts/framework/vulkan/ |
vkStrUtil.cpp | 29 struct CharPtr 33 CharPtr (const char* ptr_) : ptr(ptr_) {} 36 std::ostream& operator<< (std::ostream& str, const CharPtr& ptr) 44 inline CharPtr getCharPtrStr (const char* ptr) 46 return CharPtr(ptr);
|
/external/clang/test/SemaCXX/ |
warn-cast-align.cpp | 10 typedef char *CharPtr; 11 a = CharPtr(P); 31 typedef char *CharPtr; 32 a = CharPtr(P);
|
/external/google-breakpad/src/testing/test/ |
gmock-more-actions_test.cc | 279 inline const char* CharPtr(const char* s) { return s; } 287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), 288 CharPtr("4"), CharPtr("5"), CharPtr("6"), 289 CharPtr("7")))); 298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3") [all...] |
gmock-generated-actions_test.cc | 165 inline const char* CharPtr(const char* s) { return s; } 296 EXPECT_EQ(s + 2, a.Perform(make_tuple(CharPtr(s), 0.5, Short(2)))); 310 EXPECT_EQ("4310", a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), 2.5, 311 CharPtr("3"), CharPtr("4")))); 320 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"), 321 CharPtr("3"), CharPtr("4")))) [all...] |
/external/googletest/googlemock/test/ |
gmock-more-actions_test.cc | 279 inline const char* CharPtr(const char* s) { return s; } 287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), 288 CharPtr("4"), CharPtr("5"), CharPtr("6"), 289 CharPtr("7")))); 298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3") [all...] |
gmock-generated-actions_test.cc | 165 inline const char* CharPtr(const char* s) { return s; } 296 EXPECT_EQ(s + 2, a.Perform(make_tuple(CharPtr(s), 0.5, Short(2)))); 310 EXPECT_EQ("4310", a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), 2.5, 311 CharPtr("3"), CharPtr("4")))); 320 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"), 321 CharPtr("3"), CharPtr("4")))) [all...] |
/external/v8/testing/gmock/test/ |
gmock-more-actions_test.cc | 279 inline const char* CharPtr(const char* s) { return s; } 287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), 288 CharPtr("4"), CharPtr("5"), CharPtr("6"), 289 CharPtr("7")))); 298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3") [all...] |
gmock-generated-actions_test.cc | 165 inline const char* CharPtr(const char* s) { return s; } 296 EXPECT_EQ(s + 2, a.Perform(make_tuple(CharPtr(s), 0.5, Short(2)))); 310 EXPECT_EQ("4310", a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), 2.5, 311 CharPtr("3"), CharPtr("4")))); 320 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"), 321 CharPtr("3"), CharPtr("4")))) [all...] |
/external/clang/test/Sema/ |
cast.c | 29 typedef char *CharPtr; 42 (void) (CharPtr) v; 56 (void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer type 'Int' (aka 'int')}} 63 (void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer type 'Int' (aka 'int')}} 78 (void) (CharPtr) v; 158 (void) (CharPtr) v; 161 void testCharPtr(CharPtr v) { 166 (void) (CharPtr) v [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
ParseInf.c | 53 CHAR8 *CharPtr;
128 CharPtr = strstr (InputBuffer, "//");
129 if (CharPtr != 0) {
130 CharPtr[0] = 0;
610 CHAR8 *CharPtr;
627 CharPtr = strstr (InputBuffer, "//");
628 if (CharPtr != 0) {
629 CharPtr[0] = 0;
632 CharPtr = strstr (InputBuffer, "#");
633 if (CharPtr != 0) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
ParseInf.c | 57 CHAR8 *CharPtr;
124 CharPtr = strstr (InputBuffer, "//");
125 if (CharPtr != 0) {
126 CharPtr[0] = 0;
680 CHAR8 *CharPtr;
697 CharPtr = strstr (InputBuffer, "//");
698 if (CharPtr != 0) {
699 CharPtr[0] = 0;
702 CharPtr = strstr (InputBuffer, "#");
703 if (CharPtr != 0) { [all...] |
/external/fmtlib/fmt/ |
printf.h | 228 typedef typename BasicWriter<Char>::CharPtr CharPtr; 229 CharPtr out = CharPtr();
|
format.h | 816 typedef stdext::checked_array_iterator<Char*> CharPtr; 818 typedef Char *CharPtr; [all...] |