HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3651 - 3675 of 46739) sorted by null

<<141142143144145146147148149150>>

  /external/google-benchmark/src/
colorprint.h 6 #include <string>
20 std::string FormatString(const char* msg, va_list args);
21 std::string FormatString(const char* msg, ...);
  /external/google-breakpad/src/common/linux/tests/
crash_generator.h 38 #include <string>
63 string GetCoreFilePath() const;
66 string GetDirectoryOfProcFilesCopy() const;
  /external/google-breakpad/src/google_breakpad/processor/
source_line_resolver_interface.h 37 #include <string>
62 const string &map_file) = 0;
65 const string &map_buffer) = 0;
67 // Add an interface to load symbol using C-String data instead of string.
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 75 #include <string>
153 bool RegisterFlagValidator(const std::string* flag,
154 bool (*validate_fn)(const char*, const std::string&));
169 std::string name; // the name of the flag
170 std::string type; // the type of the flag: int32, etc
171 std::string description; // the "help text" associated with the flag
172 std::string current_value; // the current value, as a string
173 std::string default_value; // the default value, as a string
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.cc 20 #include <string>
27 std::string HexadecimalEncoder::EncodeToString(
33 const std::string& secret) const {
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
serverpairingsession.h 18 #include <string>
38 const std::string &server_name);
70 std::string server_name_;
  /external/guava/guava-tests/test/com/google/common/eventbus/
StringCatcher.java 31 * required <em>not</em> to call ({@link #methodWithoutAnnotation(String)}).
36 private List<String> events = Lists.newArrayList();
39 public void hereHaveAString(@Nullable String string) {
40 events.add(string);
43 public void methodWithoutAnnotation(@Nullable String string) {
47 public List<String> getEvents() {
  /external/libavc/encoder/
ih264e_trace.h 102 #define AEV_TRACE(string, value, range) \
105 fprintf( g_enc_trace.fp, "%-40s:%8d R:%d\n", string, value, range); \
114 #define AEV_TRACE(string, value, range)
  /external/libbrillo/brillo/dbus/
mock_exported_object_manager.h 8 #include <string>
31 const std::string& interface_name,
35 const std::string& interface_name));
  /external/libchrome/base/threading/
worker_pool_posix.h 29 #include <string>
50 PosixDynamicThreadPool(const std::string& name_prefix,
70 const std::string name_prefix_;
  /external/libchrome/base/trace_event/
memory_allocator_dump_guid.cc 15 uint64_t HashString(const std::string& str) {
29 MemoryAllocatorDumpGuid::MemoryAllocatorDumpGuid(const std::string& guid_str)
33 std::string MemoryAllocatorDumpGuid::ToString() const {
  /external/libchrome/dbus/
exported_object.h 12 #include <string>
58 typedef base::Callback<void (const std::string& interface_name,
59 const std::string& method_name,
80 virtual bool ExportMethodAndBlock(const std::string& interface_name,
81 const std::string& method_name,
91 virtual void ExportMethod(const std::string& interface_name,
92 const std::string& method_name,
115 void ExportMethodInternal(const std::string& interface_name,
116 const std::string& method_name,
122 const std::string& interface_name
    [all...]
  /external/libcxx/test/libcxx/extensions/hash/
specializations.pass.cpp 14 #include <string>
20 std::hash<std::string>()("test"));
21 assert(__gnu_cxx::hash<char *>()(str) == std::hash<std::string>()("test"));
  /external/libcxx/test/libcxx/strings/basic.string/string.modifiers/
erase_iter_db1.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string::const_iterator i = l1.end();
erase_iter_iter_db4.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string::iterator i = l1.erase(l1.cbegin()+1, l1.cbegin());
  /external/libcxx/test/std/experimental/utilities/meta/meta.detect/
detected_t.pass.cpp 14 #include <string>
31 std::string Foo() { return ""; }
47 test<wrongFoo, std::string>();
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 38 std::string("123-$&"));
40 assert(buf == std::string("123-555-1234, 123-555-2345, 123-555-3456"));
50 std::string("123-$&"),
53 assert(buf == std::string("123-$555-1234, 123-$555-2345, 123-$555-3456"));
63 std::string("123-&"),
66 assert(buf == std::string("123-555-1234, 123-555-2345, 123-555-3456"));
76 std::string("123-$&"),
79 assert(buf == std::string("123-555-1234123-555-2345123-555-3456"));
89 std::string("123-$&"),
92 assert(buf == std::string("123-555-1234, 555-2345, 555-3456"))
    [all...]
  /external/libcxx/test/std/re/re.submatch/re.submatch.op/
stream.pass.cpp 27 typedef std::basic_string<CharT> string; typedef
28 typedef std::sub_match<typename string::const_iterator> SM;
41 test(std::string("123"));
  /external/libcxx/test/std/strings/basic.string/string.cons/
dtor_noexcept.pass.cpp 12 // <string>
16 #include <string>
32 std::string s;
38 typedef std::string C;
  /external/libcxx/test/std/strings/string.conversions/
to_string.pass.cpp 10 // <string>
12 // string to_string(int val);
13 // string to_string(unsigned val);
14 // string to_string(long val);
15 // string to_string(unsigned long val);
16 // string to_string(long long val);
17 // string to_string(unsigned long long val);
18 // string to_string(float val);
19 // string to_string(double val);
20 // string to_string(long double val)
    [all...]
  /external/libcxx/utils/google-benchmark/src/
colorprint.h 6 #include <string>
20 std::string FormatString(const char* msg, va_list args);
21 std::string FormatString(const char* msg, ...);
  /external/libpng/contrib/mips-msa/
linux.c 24 #include <string.h>
32 char *string = "msa"; local
48 int val = strcmp(string, word);
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 59 #include <string>
80 std::string Name;
100 /// name string specified on functions which use this strategy.
101 const std::string &getName() const { return Name; }
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 18 #include <string>
26 /// output a simple switch tree to classify the input string.
33 typedef std::pair<std::string, std::string> StringPair;
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolCompilandEnv.cpp 25 std::string PDBSymbolCompilandEnv::getValue() const {
27 if (Value.Type != PDB_VariantType::String)
28 return std::string();
29 return std::string(Value.Value.String);

Completed in 1304 milliseconds

<<141142143144145146147148149150>>