HomeSort by relevance Sort by last modified time
    Searched refs:cf (Results 26 - 50 of 370) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dhcpcd/dhcpcd-hooks/
50-yp.conf 12 local cf=/etc/yp.conf."$interface" prefix= x= pid=
13 rm -f "$cf"
14 echo "$signature" > "$cf"
20 echo "domain $new_nis_domain broadcast" >> "$cf"
26 echo "$prefix$x" >> "$cf"
29 cat "$cf" > /etc/yp.conf
30 rm -f "$cf"
50-ntp.conf 24 local cf="$state_dir/ntp.conf.$interface"
47 [ -e "$cf" ] && rm -f "$cf"
51 cp "$ntp_conf" "$cf"
55 "$ntp_conf" > "$cf"
59 echo "$signature_base${header:+ $from }$header" >> "$cf"
60 printf "$search$servers" >> "$cf"
61 echo "$signature_base_end${header:+ $from }$header" >> "$cf"
67 if change_file "$ntp_conf" "$cf"; then
74 local cf="$ntp_conf_dir/$interface" x
    [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);
  /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...]
  /external/compiler-rt/lib/lsan/
lsan.cc 29 CommonFlags *cf = common_flags(); local
30 SetCommonFlagsDefaults(cf);
31 cf->external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH");
32 cf->malloc_context_size = 30;
33 cf->detect_leaks = true;
35 ParseCommonFlagsFromString(cf, GetEnv("LSAN_OPTIONS"));
  /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;
AttLineNumberTable.java 17 package com.android.dx.cf.attrib;
19 import com.android.dx.cf.code.LineNumberList;
BaseLocalVariables.java 17 package com.android.dx.cf.attrib;
19 import com.android.dx.cf.code.LocalVariableList;
  /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;
AttributeList.java 17 package com.android.dx.cf.iface;
Field.java 17 package com.android.dx.cf.iface;
Method.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/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager_unittest.cc 84 scoped_ptr<ConfigFile> cf(new ConfigFile());
85 EXPECT_TRUE(cf->empty());
87 cf.reset(new ConfigFile(""));
88 EXPECT_TRUE(cf->empty());
90 cf.reset(new ConfigFile(kConfigFileWithNoNameProperty));
91 EXPECT_TRUE(cf->empty());
93 cf.reset(new ConfigFile(kConfigFileWithNoHwidProperty));
94 EXPECT_TRUE(cf->empty());
96 cf.reset(new ConfigFile(kConfigFileWithNoNewLineAtEnd));
97 EXPECT_FALSE(cf->empty())
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 253 static void cfopen(cfile *cf, const char *path, off_t off,
265 if ((cf->f = fopen(path, "rb")) == NULL)
267 if ((fseeko(cf->f, off, SEEK_SET)) != 0)
270 if ((cf->u.bz2 = BZ2_bzReadOpen(&bz2_err, cf->f, 0, 0,
274 if ((cf->u.xz = xzdopen(cf->f, &lzma_err)) == NULL)
276 /* cf->f belongs to the xzfile now, don't access it
278 cf->f = NULL;
285 if ((cf->u.gz = gzdopen(fd, "rb")) == NULL
369 cfile cf, df, ef; local
    [all...]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type.pass.cpp 19 typedef std::complex<float> cf; typedef
21 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }};
24 assert ( std::get<cf>(t1).real() == 1 ); // find at the end
25 assert ( std::get<cf>(t1).imag() == 2 );
29 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }};
32 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantTags.java 17 package com.android.dx.cf.cst;
  /external/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type.pass.cpp 19 typedef std::complex<float> cf; typedef
21 auto t1 = std::make_pair<int, cf> ( 42, { 1,2 } );
23 assert ( std::get<cf>(t1).real() == 1 );
24 assert ( std::get<cf>(t1).imag() == 2 );
pairs.by.type2.fail.cpp 18 typedef std::complex<float> cf; typedef

Completed in 635 milliseconds

12 3 4 5 6 7 8 91011>>