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

<<81828384858687888990>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
SpecialCaseList.h 21 // If category is not specified, it is assumed to be empty string.
59 #include <string>
70 /// 0 and writes an error message to string.
72 create(const std::vector<std::string> &Paths, std::string &Error);
74 /// 0 and writes an error message to string.
76 std::string &Error);
80 createOrDie(const std::vector<std::string> &Paths);
95 bool createInternal(const std::vector<std::string> &Paths,
96 std::string &Error)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
SpecialCaseList.h 21 // If category is not specified, it is assumed to be empty string.
59 #include <string>
70 /// 0 and writes an error message to string.
72 create(const std::vector<std::string> &Paths, std::string &Error);
74 /// 0 and writes an error message to string.
76 std::string &Error);
80 createOrDie(const std::vector<std::string> &Paths);
95 bool createInternal(const std::vector<std::string> &Paths,
96 std::string &Error)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
SpecialCaseList.h 21 // If category is not specified, it is assumed to be empty string.
59 #include <string>
70 /// 0 and writes an error message to string.
72 create(const std::vector<std::string> &Paths, std::string &Error);
74 /// 0 and writes an error message to string.
76 std::string &Error);
80 createOrDie(const std::vector<std::string> &Paths);
95 bool createInternal(const std::vector<std::string> &Paths,
96 std::string &Error)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
SpecialCaseList.h 21 // If category is not specified, it is assumed to be empty string.
59 #include <string>
70 /// 0 and writes an error message to string.
72 create(const std::vector<std::string> &Paths, std::string &Error);
74 /// 0 and writes an error message to string.
76 std::string &Error);
80 createOrDie(const std::vector<std::string> &Paths);
95 bool createInternal(const std::vector<std::string> &Paths,
96 std::string &Error)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN'
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.cons/
default.pass.cpp 18 #include <string>
25 std::string s("dog");
27 assert(inout.str() == std::string("123 4.5 dog"));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
generic_category.pass.cpp 25 #include <string>
33 const std::string msg = e_cat1.message(-1);
43 std::string m1 = e_cat1.name();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_insert/
iter_initializer_list.pass.cpp 12 // <string>
17 #include <string>
25 std::string s("123456");
26 std::string::iterator i = s.insert(s.begin() + 3, {'a', 'b', 'c'});
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
dtor.pass.cpp 23 #include <string>
36 std::tuple<std::string> >::value, "");
38 std::tuple<int, std::string> >::value, "");
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/samples/
sample2.h 37 #include <string.h>
40 // A simple string class.
47 // Clones a 0-terminated C string, allocating memory using new.
54 // The default c'tor constructs a NULL string.
57 // Constructs a MyString by cloning a 0-terminated C string.
63 MyString(const MyString& string) : c_string_(NULL) {
64 Set(string.c_string_);
73 // Gets the 0-terminated C string this MyString object represents.
80 // Sets the 0-terminated C string this MyString object represents.
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/samples/
sample2.h 37 #include <string.h>
40 // A simple string class.
47 // Clones a 0-terminated C string, allocating memory using new.
54 // The default c'tor constructs a NULL string.
57 // Constructs a MyString by cloning a 0-terminated C string.
63 MyString(const MyString& string) : c_string_(NULL) {
64 Set(string.c_string_);
73 // Gets the 0-terminated C string this MyString object represents.
80 // Sets the 0-terminated C string this MyString object represents.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN'
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
json_util.h 70 const string& type_url,
76 TypeResolver* resolver, const string& type_url,
85 const string& type_url,
86 const string& binary_input,
87 string* json_output,
91 const string& type_url,
92 const string& binary_input,
93 string* json_output) {
106 const string& type_url,
112 const string& type_url
    [all...]
  /system/bt/service/common/bluetooth/util/
atomic_string.cc 21 AtomicString::AtomicString(const std::string& str) : str_(str) {}
23 std::string AtomicString::Get() const {
29 void AtomicString::Set(const std::string& str) {
  /system/bt/service/
settings.h 19 #include <string>
47 const std::string& android_ipc_socket_suffix() const {
68 std::string android_ipc_socket_suffix_;
  /system/chre/platform/linux/include/chre/platform/linux/
audio_source.h 21 #include <string>
44 AudioSource(const std::string& audioFilename,
53 const std::string audioFilename;
  /system/connectivity/wifilogd/
main_loop.h 21 #include <string>
34 explicit MainLoop(const std::string& socket_name);
35 MainLoop(const std::string& socket_name, std::unique_ptr<Os> os,
  /system/core/debuggerd/libdebuggerd/test/
open_files_list_test.cpp 18 #include <string.h>
21 #include <string>
43 EXPECT_EQ(file.second, std::string(tf.path));

Completed in 1276 milliseconds

<<81828384858687888990>>