/external/compiler-rt/lib/asan/ |
asan_activation.cc | 32 void RegisterActivationFlags(FlagParser *parser, Flags *f, CommonFlags *cf) { 36 RegisterFlag(parser, #Name, "", &cf->Name); 41 RegisterIncludeFlags(parser, cf); 46 CommonFlags cf; local 48 RegisterActivationFlags(&parser, &f, &cf); 50 cf.SetDefaults(); 52 allocator_options.CopyTo(&f, &cf); 53 cf.malloc_context_size = malloc_context_size; 55 cf.coverage = coverage; 56 cf.coverage_dir = coverage_dir [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeFactory.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.attrib.RawAttribute; 20 import com.android.dx.cf.iface.Attribute; 21 import com.android.dx.cf.iface.ParseException; 22 import com.android.dx.cf.iface.ParseObserver; 61 * @param cf {@code non-null;} class file to parse from 69 public final Attribute parse(DirectClassFile cf, int context, int offset, 71 if (cf == null) { 72 throw new NullPointerException("cf == null"); 82 ByteArray bytes = cf.getBytes() [all...] |
AttributeListParser.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.iface.Attribute; 20 import com.android.dx.cf.iface.ParseException; 21 import com.android.dx.cf.iface.ParseObserver; 22 import com.android.dx.cf.iface.StdAttributeList; 31 private final DirectClassFile cf; field in class:AttributeListParser 55 * @param cf {@code non-null;} class file to parse from 60 public AttributeListParser(DirectClassFile cf, int context, int offset, 62 if (cf == null) { 63 throw new NullPointerException("cf == null") [all...] |
FieldListParser.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.iface.AttributeList; 20 import com.android.dx.cf.iface.Member; 21 import com.android.dx.cf.iface.StdField; 22 import com.android.dx.cf.iface.StdFieldList; 37 * @param cf {@code non-null;} the class file to parse from 42 public FieldListParser(DirectClassFile cf, CstType definer, int offset, 44 super(cf, definer, offset, attributeFactory);
|
MethodListParser.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.iface.AttributeList; 20 import com.android.dx.cf.iface.Member; 21 import com.android.dx.cf.iface.StdMethod; 22 import com.android.dx.cf.iface.StdMethodList; 37 * @param cf {@code non-null;} the class file to parse from 42 public MethodListParser(DirectClassFile cf, CstType definer, 44 super(cf, definer, offset, attributeFactory);
|
StdAttributeFactory.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.attrib.AttAnnotationDefault; 20 import com.android.dx.cf.attrib.AttBootstrapMethods; 21 import com.android.dx.cf.attrib.AttCode; 22 import com.android.dx.cf.attrib.AttConstantValue; 23 import com.android.dx.cf.attrib.AttDeprecated; 24 import com.android.dx.cf.attrib.AttEnclosingMethod; 25 import com.android.dx.cf.attrib.AttExceptions; 26 import com.android.dx.cf.attrib.AttInnerClasses; 27 import com.android.dx.cf.attrib.AttLineNumberTable [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 139 struct conf *cf; 143 cf = calloc(sizeof(struct conf), 1); 144 cf->l1 = genlist_init(); 145 cf->l2 = genlist_init(); 147 genlist_insert(cf->l1, "Ahoj"); 148 genlist_insert(cf->l1, "Cau"); 149 genlist_insert(cf->l1, "Nazdar"); 150 genlist_insert(cf->l1, "Te buch"); 152 genlist_append(cf->l2, "Curak"); 153 genlist_append(cf->l2, "Kozy") [all...] |
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttDeprecated.java | 17 package com.android.dx.cf.attrib;
|
AttSynthetic.java | 17 package com.android.dx.cf.attrib;
|
BaseAttribute.java | 17 package com.android.dx.cf.attrib; 19 import com.android.dx.cf.iface.Attribute;
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
FieldList.java | 17 package com.android.dx.cf.iface;
|
MethodList.java | 17 package com.android.dx.cf.iface;
|
/external/clang/test/Sema/ |
warn-bad-function-cast.c | 10 _Complex double cf(void); 22 (void)cf(); 30 (_Complex float)cf(); 41 (double)cf(); /* expected-warning {{cast from function call of type '_Complex double' to non-matching type 'double'}} */
|
/external/libcxx/test/std/utilities/utility/pairs/pair.astuple/ |
pairs.by.type2.fail.cpp | 18 typedef std::complex<float> cf; typedef
|
/external/python/cpython2/Lib/test/ |
test_cfgparser.py | 37 self.cf = self.config_class(allow_no_value=self.allow_no_value) 39 self.cf = self.config_class(defaults, 41 return self.cf 44 cf = self.newconfig(defaults) 46 cf.readfp(sio) 47 return cf 76 cf = self.fromstring(config_string) 77 L = cf.sections() 96 eq(cf.get('Foo Bar', 'foo'), 'bar') 97 eq(cf.get('Spacey Bar', 'foo'), 'bar' [all...] |
/art/test/004-ReferenceMap/ |
build | 41 jar -cf classes.jar classes.dex
|
/art/test/004-StackWalk/ |
build | 38 jar -cf classes.jar classes.dex
|
/external/compiler-rt/lib/lsan/ |
lsan.cc | 42 CommonFlags cf; local 43 cf.CopyFrom(*common_flags()); 44 cf.external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH"); 45 cf.malloc_context_size = 30; 46 cf.intercept_tls_get_addr = true; 47 cf.detect_leaks = true; 48 cf.exitcode = 23; 49 OverrideCommonFlags(cf);
|
/external/desugar/test/java/com/google/devtools/build/android/desugar/classes_for_testing_type_inference/ |
generate_jar.sh | 25 jar cf test_subjects.jar testsubjects/TestSubject.clas
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_flags.cc | 61 CommonFlags cf; local 62 cf.CopyFrom(*common_flags()); 63 cf.allow_addr2line = true; 66 cf.abort_on_error = false; 69 cf.detect_deadlocks = true; 71 cf.print_suppressions = false; 72 cf.stack_trace_format = " #%n %f %S %M"; 73 cf.exitcode = 66; 74 cf.intercept_tls_get_addr = true; 75 OverrideCommonFlags(cf); [all...] |
/external/libaom/libaom/av1/encoder/x86/ |
encodetxb_avx2.c | 40 const tran_low_t *cf = coeff; local 43 const __m256i c0 = yy_loadu_256(cf); 44 const __m256i c1 = yy_loadu_256(cf + 8); 51 cf += 16; 56 const __m256i coeffA = yy_loadu_256(cf); 57 const __m256i coeffB = yy_loadu_256(cf + 8); 58 const __m256i coeffC = yy_loadu_256(cf + 16); 59 const __m256i coeffD = yy_loadu_256(cf + 24); 77 cf += 32; 83 const __m256i coeffA = yy_loadu_256(cf); [all...] |
encodetxb_sse4.c | 36 const tran_low_t *cf = coeff; local 39 const __m128i coeffA = xx_loadu_128(cf); 40 const __m128i coeffB = xx_loadu_128(cf + 4); 47 cf += (width << 1); 52 const __m128i coeffA = xx_loadu_128(cf); 53 const __m128i coeffB = xx_loadu_128(cf + 4); 59 cf += width; 66 const __m128i coeffA = xx_loadu_128(cf); 67 const __m128i coeffB = xx_loadu_128(cf + 4); 68 const __m128i coeffC = xx_loadu_128(cf + 8) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_flags_test.cc | 128 CommonFlags cf; local 130 RegisterCommonFlags(&parser, &cf); 132 cf.SetDefaults(); 133 EXPECT_TRUE(cf.symbolize); 134 EXPECT_STREQ(".", cf.coverage_dir); 136 cf.symbolize = false; 137 cf.coverage = true; 138 cf.coverage_direct = true; 139 cf.log_path = "path/one"; 142 EXPECT_TRUE(cf.symbolize) [all...] |
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
ir-a2xx.h | 130 struct ir2_instruction * ir2_instr_create(struct ir2_cf *cf, int instr_type); 140 struct ir2_cf *cf = ir2_cf_create(shader, ALLOC); local 141 if (!cf) 142 return cf; 143 cf->alloc.type = type; 144 cf->alloc.size = size; 145 return cf; 148 ir2_instr_create_alu(struct ir2_cf *cf, instr_vector_opc_t vop, instr_scalar_opc_t sop) 150 struct ir2_instruction *instr = ir2_instr_create(cf, IR2_ALU); 158 ir2_instr_create_vtx_fetch(struct ir2_cf *cf, int ci, int cis [all...] |
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
mask.pass.cpp | 27 typedef std::ctype<char> CF; 28 const CF& cf = std::use_facet<CF>(l); local 39 assert( cf.is(CF::upper, 'A')); 41 assert(!cf.is(CF::lower, 'A')); 43 assert( cf.is(CF::alpha, 'A')) [all...] |