HomeSort by relevance Sort by last modified time
    Searched defs:cpp (Results 26 - 50 of 71) sorted by null

12 3

  /external/e2fsprogs/e2fsck/
argv_parse.c 143 char **av, **cpp; local
155 for (cpp = av; *cpp; cpp++) {
156 if (cpp != av)
158 printf("'%s'", *cpp);
message.c 240 const char **cpp, *str; local
243 for (cpp = abbrevs; *cpp; cpp++) {
244 if (ch == *cpp[0])
247 if (*cpp && recurse < 10) {
248 str = _(*cpp) + 1;
profile_helpers.c 112 char **cpp; local
117 for (cpp = list->list; *cpp; cpp++) {
118 if (!strcmp(*cpp, str))
journal.c 927 const char * const * cpp; local
987 for (cpp = journal_names; *cpp; cpp++) {
988 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, *cpp,
989 strlen(*cpp), 0, &ino);
993 if (*cpp == 0)
1001 pctx.str = *cpp;
1010 if ((retval = ext2fs_unlink(fs, EXT2_ROOT_INO, *cpp, ino, 0)) != 0)
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 38 #include <google/protobuf/compiler/cpp/cpp_enum.h>
39 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
46 namespace cpp { namespace in namespace:google::protobuf::compiler
255 } // namespace cpp
cpp_file.cc 35 #include <google/protobuf/compiler/cpp/cpp_file.h>
36 #include <google/protobuf/compiler/cpp/cpp_enum.h>
37 #include <google/protobuf/compiler/cpp/cpp_service.h>
38 #include <google/protobuf/compiler/cpp/cpp_extension.h>
39 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
40 #include <google/protobuf/compiler/cpp/cpp_message.h>
41 #include <google/protobuf/compiler/cpp/cpp_field.h>
49 namespace cpp { namespace in namespace:google::protobuf::compiler
605 } // namespace cpp
cpp_plugin_unittest.cc 37 #include <google/protobuf/compiler/cpp/cpp_generator.h>
49 namespace cpp { namespace in namespace:google::protobuf::compiler
118 } // namespace cpp
cpp_bootstrap_unittest.cc 47 #include <google/protobuf/compiler/cpp/cpp_generator.h>
63 namespace cpp { namespace in namespace:google::protobuf::compiler
155 } // namespace cpp
cpp_enum_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_enum_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
358 } // namespace cpp
cpp_message_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_message_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
43 namespace cpp { namespace in namespace:google::protobuf::compiler
267 } // namespace cpp
cpp_primitive_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_primitive_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
379 } // namespace cpp
cpp_service.cc 35 #include <google/protobuf/compiler/cpp/cpp_service.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
43 namespace cpp { namespace in namespace:google::protobuf::compiler
331 } // namespace cpp
cpp_string_field.cc 35 #include <google/protobuf/compiler/cpp/cpp_string_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace cpp { namespace in namespace:google::protobuf::compiler
439 } // namespace cpp
cpp_helpers.cc 39 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
48 namespace cpp { namespace in namespace:google::protobuf::compiler
338 } // namespace cpp
  /bionic/libc/kernel/tools/
find_headers.py 8 import sys, cpp, glob, os, re, getopt, kernel namespace
kernel.py 7 import sys, cpp, re, os.path, string, time namespace
133 list = cpp.BlockParser().parseFile(path)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
PKIXParameters_ImplTest.java 66 CertPathParameters cpp = new PKIXParameters(ks); local
67 assertTrue(cpp instanceof PKIXParameters);
86 PKIXParameters cpp = new PKIXParameters(ks); local
87 assertEquals("size", 1, cpp.getTrustAnchors().size());
  /external/chromium/webkit/glue/
cpp_variant_unittest.cc 178 CppVariant cpp; local
180 cpp.Set(true);
181 cpp.CopyToNPVariant(&np);
182 EXPECT_EQ(cpp.type, np.type);
183 EXPECT_EQ(cpp.value.boolValue, np.value.boolValue);
186 cpp.Set(17);
187 cpp.CopyToNPVariant(&np);
188 EXPECT_EQ(cpp.type, np.type);
189 EXPECT_EQ(cpp.value.intValue, np.value.intValue);
192 cpp.Set(3.1415)
219 CppVariant cpp; local
276 CppVariant cpp; local
322 CppVariant cpp; local
331 CppVariant cpp; local
347 CppVariant cpp; local
475 CppVariant cpp; local
    [all...]
  /external/clang/test/SemaCXX/
const-cast.cpp 8 typedef cp *cpp; typedef
9 typedef cpp *cppp;
cstyle-cast.cpp 9 typedef cp *cpp; typedef
10 typedef cpp *cppp;
  /external/e2fsprogs/misc/
logsave.c 253 char *outfn, **cpp; local
288 for (cpp = argv; *cpp; cpp++) {
289 send_output(*cpp, 0, send_flag);
filefrag.c 385 char **cpp; local
411 for (cpp=argv+optind; *cpp; cpp++)
412 frag_report(*cpp);
  /bionic/libc/netbsd/nameser/
ns_name.c 483 const u_char **cpp, **lpp, *eob, *msg; local
490 lpp = cpp = NULL;
493 for (cpp = dnptrs; *cpp != NULL; cpp++)
495 lpp = cpp; /* end of list to search */
539 if (lastdnptr != NULL && cpp < lastdnptr - 1 &&
541 *cpp++ = dstp;
542 *cpp = NULL;
743 const u_char * const *cpp; local
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 101 if source.endswith(".cpp"):
106 raise DataParseError("don't know how to import %s (expecting .cpp/.S)" namespace
364 source = "%s/%s.cpp" % (location, op)
539 c_fp = open("%s/InterpC-%s.cpp" % (output_dir, target_arch), "w")
  /external/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 131 HChar** cpp; local
168 for (cpp = origenv; cpp && *cpp; cpp++)
177 for (cpp = ret; *origenv; )
178 *cpp++ = *origenv++;
179 *cpp = NULL;
181 vg_assert(envc == (cpp - ret));
184 for (cpp = ret; cpp && *cpp; cpp++)
324 char **cpp; local
    [all...]

Completed in 2036 milliseconds

12 3