| /external/clang/test/SemaCXX/ |
| illegal-member-initialization.cpp | 4 A() : value(), cvalue() { } // expected-error {{reference to type 'int' requires an initializer}} 6 const int cvalue; member in struct:A 15 // expected-error {{constructor for 'X' must explicitly initialize the const member 'cvalue'}} \ 19 const int cvalue; // expected-note{{declared here}} member in struct:X
|
| /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/ |
| construct_types.pass.cpp | 200 const int cvalue = 43; local 208 test_pmr_uses_alloc<ET>(cvalue); 209 test_pmr_not_uses_alloc<PMR>(cvalue); 210 test_pmr_uses_alloc<PMA>(cvalue); 211 test_pmr_uses_alloc<ET>(cvalue, std::move(value)); 212 test_pmr_not_uses_alloc<PMR>(cvalue, std::move(value)); 213 test_pmr_uses_alloc<PMA>(cvalue, std::move(value)); 222 test_non_pmr_uses_alloc<STDA>(std_alloc, cvalue); 223 test_non_pmr_uses_alloc<TESTA>(test_alloc, cvalue); 224 test_non_pmr_uses_alloc<STDA>(std_alloc, cvalue, std::move(value)) [all...] |
| /external/ltp/testcases/kernel/syscalls/fork/ |
| fork04.c | 169 char *penv, *cenv, *pvalue, *cvalue; local 195 cvalue = strchr(cstring, ':'); 196 if (cvalue == NULL) { 202 *cvalue = '\0'; 203 cvalue++; 204 if (*cvalue == '\0') { 217 if (strcmp(pvalue, cvalue) != 0) { 220 penv, pvalue, cvalue); 223 penv, cvalue);
|
| /external/tensorflow/tensorflow/java/src/main/native/ |
| operation_builder_jni.cc | 151 jbyte* cvalue = env->GetByteArrayElements(value, nullptr); local 152 TF_SetAttrString(d, cname, cvalue, env->GetArrayLength(value)); 153 env->ReleaseByteArrayElements(value, cvalue, JNI_ABORT); 184 std::unique_ptr<ctype[]> cvalue(new ctype[n]); \ 187 cvalue[i] = static_cast<ctype>(elems[i]); \ 189 TF_SetAttr##name##List(d, cname, cvalue.get(), n); \ 250 std::unique_ptr<int64_t[]> cvalue; 254 cvalue.reset(new int64_t[num_dims]); 257 cvalue[i] = static_cast<int64_t>(elems[i]); 262 TF_SetAttrShape(d, cname, cvalue.get(), static_cast<int>(num_dims)) [all...] |
| /external/libjpeg-turbo/ |
| jcphuff.c | 623 cvalue += r; \ 625 temp = cvalue[0]; \ 626 temp2 = cvalue[DCTSIZE2]; \ 647 cvalue++; \ 662 const JCOEF *cvalue; local 675 cvalue = values = (JCOEF *)PAD((size_t)values_unaligned, 16); 678 cvalue = values = values_unaligned; 705 int diff = ((values + DCTSIZE2 / 2) - cvalue); 708 cvalue += r; 715 if (cvalue < (values + Sl)) { /* If there are trailing zeroes, * [all...] |
| /external/e2fsprogs/misc/ |
| fuse2fs.c | 2607 const void *cvalue; local [all...] |
| /external/libchrome/base/debug/ |
| activity_tracker.h | 436 char cvalue = value ? 1 : 0; local 437 Set(name, BOOL_VALUE, &cvalue, sizeof(cvalue)); [all...] |