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

<<101102103104105106107108109110>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/
MCTargetOptions.h 13 #include <string>
62 std::string ABIName;
63 std::string SplitDwarfFile;
67 std::vector<std::string> IASSearchPaths;
71 /// getABIName - If this returns a non-empty string this represents the
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Tooling/Core/
QualTypeNames.h 74 std::string getFullyQualifiedName(QualType QT,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCTargetOptions.h 13 #include <string>
62 std::string ABIName;
63 std::string SplitDwarfFile;
67 std::vector<std::string> IASSearchPaths;
71 /// getABIName - If this returns a non-empty string this represents the
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Tooling/Core/
QualTypeNames.h 74 std::string getFullyQualifiedName(QualType QT,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCTargetOptions.h 13 #include <string>
62 std::string ABIName;
63 std::string SplitDwarfFile;
67 std::vector<std::string> IASSearchPaths;
71 /// getABIName - If this returns a non-empty string this represents the
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Tooling/Core/
QualTypeNames.h 74 std::string getFullyQualifiedName(QualType QT,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCTargetOptions.h 13 #include <string>
62 std::string ABIName;
63 std::string SplitDwarfFile;
67 std::vector<std::string> IASSearchPaths;
71 /// getABIName - If this returns a non-empty string this represents the
  /prebuilts/go/darwin-x86/src/os/exec/
env_test.go 15 in []string
16 want []string
20 in: []string{"k1=v1", "k2=v2", "K1=v3"},
21 want: []string{"K1=v3", "k2=v2"},
25 in: []string{"k1=v1", "K1=V2", "k1=v3"},
26 want: []string{"k1=v3", "K1=V2"},
29 in: []string{"=a", "=b", "foo", "bar"},
30 want: []string{"=b", "foo", "bar"},
internal_test.go 15 writes []string
16 want string
25 writes: []string{"a"},
30 writes: []string{"abc", "d"},
35 writes: []string{"abc", "d", "e"},
40 writes: []string{"ab______________________yz"},
45 writes: []string{"ab_______________________y", "z"},
57 if got := string(w.Bytes()); got != tt.want {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7083.go 7 func f(m map[int]*string, i int) {
14 m := map[int]*string{}
  /prebuilts/go/linux-x86/src/os/exec/
env_test.go 15 in []string
16 want []string
20 in: []string{"k1=v1", "k2=v2", "K1=v3"},
21 want: []string{"K1=v3", "k2=v2"},
25 in: []string{"k1=v1", "K1=V2", "k1=v3"},
26 want: []string{"k1=v3", "K1=V2"},
29 in: []string{"=a", "=b", "foo", "bar"},
30 want: []string{"=b", "foo", "bar"},
internal_test.go 15 writes []string
16 want string
25 writes: []string{"a"},
30 writes: []string{"abc", "d"},
35 writes: []string{"abc", "d", "e"},
40 writes: []string{"ab______________________yz"},
45 writes: []string{"ab_______________________y", "z"},
57 if got := string(w.Bytes()); got != tt.want {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7083.go 7 func f(m map[int]*string, i int) {
14 m := map[int]*string{}
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
generated_enum_reflection.h 42 #include <string>
59 // Helper for EnumType_Parse functions: try to parse the string 'name' as an
63 const string& name,
68 const string& name,
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
generated_enum_reflection.h 42 #include <string>
59 // Helper for EnumType_Parse functions: try to parse the string 'name' as an
63 const string& name,
68 const string& name,
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
generated_enum_reflection.h 42 #include <string>
59 // Helper for EnumType_Parse functions: try to parse the string 'name' as an
63 const string& name,
68 const string& name,
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/unord/unord.map/
db_local_iterators_7.pass.cpp 19 #include <string>
30 typedef std::unordered_map<int, std::string> C;
39 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
40 min_allocator<std::pair<const int, std::string>>> C;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/strings/basic.string/string.modifiers/
erase_iter_db2.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string l2("123");
30 std::string::const_iterator i = l2.begin();
erase_iter_iter_db1.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string l2("123");
30 std::string::iterator i = l1.erase(l2.cbegin(), l1.cbegin()+1);
erase_iter_iter_db2.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string l2("123");
30 std::string::iterator i = l1.erase(l1.cbegin(), l2.cbegin()+1);
erase_iter_iter_db3.pass.cpp 10 // <string>
18 #include <string>
28 std::string l1("123");
29 std::string l2("123");
30 std::string::iterator i = l1.erase(l2.cbegin(), l2.cbegin()+1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/
bucket_count.pass.cpp 19 #include <string>
27 typedef std::unordered_multimap<int, std::string> C;
32 typedef std::unordered_multimap<int, std::string> C;
33 typedef std::pair<int, std::string> P;
db_local_iterators_7.pass.cpp 19 #include <string>
30 typedef std::unordered_multimap<int, std::string> C;
39 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
40 min_allocator<std::pair<const int, std::string>>> C;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
str.pass.cpp 24 assert(in.str() == std::string("123 4.5 dog"));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.derived/
message.pass.cpp 14 // virtual string message(int ev) const = 0;
18 #include <string>
26 std::string m1 = e_cat1.message(5);
27 std::string m2 = e_cat2.message(5);
28 std::string m3 = e_cat2.message(6);

Completed in 1207 milliseconds

<<101102103104105106107108109110>>