HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 1526 - 1550 of 27455) sorted by null

<<61626364656667686970>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_generator.h 40 #include <string>
59 const string& parameter,
61 string* error) const;
  /external/chromium_org/third_party/webrtc/test/testsupport/android/
root_path_android_chromium.cc 17 std::string OutputPathImpl();
23 std::string ProjectRootPathAndroid() {
29 std::string OutputPathAndroid() {
  /external/chromium_org/third_party/webrtc/test/testsupport/
perf_test_unittest.cc 13 #include <string>
21 std::string expected = "RESULT measurementmodifier: trace= 42 units\n";
22 std::string output;
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_capture_device.h 14 #include <string>
29 std::string device_name() const;
34 std::string device_name_;
  /external/chromium_org/ui/chromeos/network/
network_info.h 8 #include <string>
24 NetworkInfo(const std::string& path);
27 std::string service_path;
  /external/chromium_org/ui/gl/
gl_context_stub_with_extensions.cc 18 std::string GLContextStubWithExtensions::GetExtensions() {
23 version_str_ = std::string(version_str ? version_str : "");
26 std::string GLContextStubWithExtensions::GetGLVersion() {
  /external/clang/include/clang/StaticAnalyzer/Frontend/
AnalysisConsumer.h 22 #include <string>
41 const std::string &output,
43 ArrayRef<std::string> plugins);
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.h 18 #include <string>
30 virtual std::string EncodeToString(
35 const std::string& secret) const;
secretencoder.h 19 #include <string>
33 // Encodes a byte array representation of a secret to a string.
35 // @return a string representation of the given secret
36 virtual std::string EncodeToString(
39 // Decodes the string representation of the secret to a byte array.
40 // @param secret a string representation of the secret
43 const std::string& secret) const = 0;
  /external/hamcrest/library/src/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java 11 * Tests if a string is equal to another string, ignoring any changes in whitespace.
13 public class IsEqualIgnoringWhiteSpace extends TypeSafeMatcher<String> {
15 // TODO: Replace String with CharSequence to allow for easy interopability between
16 // String, StringBuffer, StringBuilder, CharBuffer, etc (joe).
18 private final String string; field in class:IsEqualIgnoringWhiteSpace
20 public IsEqualIgnoringWhiteSpace(String string) {
21 if (string == null) {
    [all...]
  /external/libcxx/test/containers/unord/unord.map/
max_load_factor.pass.cpp 24 #include <string>
32 typedef std::unordered_map<int, std::string> C;
33 typedef std::pair<int, std::string> P;
38 typedef std::unordered_map<int, std::string> C;
39 typedef std::pair<int, std::string> P;
47 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
48 min_allocator<std::pair<const int, std::string>>> C;
49 typedef std::pair<int, std::string> P;
54 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
55 min_allocator<std::pair<const int, std::string>>> C
    [all...]
  /external/libcxx/test/containers/unord/unord.multimap/
max_load_factor.pass.cpp 24 #include <string>
32 typedef std::unordered_multimap<int, std::string> C;
33 typedef std::pair<int, std::string> P;
38 typedef std::unordered_multimap<int, std::string> C;
39 typedef std::pair<int, std::string> P;
47 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
48 min_allocator<std::pair<const int, std::string>>> C;
49 typedef std::pair<int, std::string> P;
54 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
55 min_allocator<std::pair<const int, std::string>>> C
    [all...]
  /external/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
default_ctor.pass.cpp 18 #include <string>
29 virtual std::string message(int ev) const {return std::string();}
  /external/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code.pass.cpp 19 #include <string>
27 std::string what_message(se.what());
28 assert(what_message.find("Not a directory") != std::string::npos);
ctor_int_error_category.pass.cpp 19 #include <string>
27 std::string what_message(se.what());
28 assert(what_message.find("Not a directory") != std::string::npos);
  /external/libcxx/test/re/re.alg/re.alg.replace/
test4.pass.cpp 26 std::string phone_book("555-1234, 555-2345, 555-3456");
27 std::string r = std::regex_replace(phone_book, phone_numbers,
33 std::string phone_book("555-1234, 555-2345, 555-3456");
34 std::string r = std::regex_replace(phone_book, phone_numbers,
41 std::string phone_book("555-1234, 555-2345, 555-3456");
42 std::string r = std::regex_replace(phone_book, phone_numbers,
49 std::string phone_book("555-1234, 555-2345, 555-3456");
50 std::string r = std::regex_replace(phone_book, phone_numbers,
57 std::string phone_book("555-1234, 555-2345, 555-3456");
58 std::string r = std::regex_replace(phone_book, phone_numbers
    [all...]
test5.pass.cpp 28 std::string r = std::regex_replace(phone_book, phone_numbers,
29 std::string("123-$&"));
35 std::string r = std::regex_replace(phone_book, phone_numbers,
36 std::string("123-$&"),
43 std::string r = std::regex_replace(phone_book, phone_numbers,
44 std::string("123-&"),
51 std::string r = std::regex_replace(phone_book, phone_numbers,
52 std::string("123-$&"),
59 std::string r = std::regex_replace(phone_book, phone_numbers,
60 std::string("123-$&")
    [all...]
  /external/libcxx/test/strings/basic.string/string.modifiers/string_op_plus_equal/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.modifiers/string_op_plus_equal/Android.mk
19 test_name := strings/basic.string/string.modifiers/string_op_plus_equal/string
20 test_src := string.pass.cpp
23 test_name := strings/basic.string/string.modifiers/string_op_plus_equal/char
27 test_name := strings/basic.string/string.modifiers/string_op_plus_equal/pointe
    [all...]
  /external/libcxx/test/strings/basic.string/string.nonmembers/string_op+/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.nonmembers/string_op+/Android.mk
19 test_name := strings/basic.string/string.nonmembers/string_op+/string_char
23 test_name := strings/basic.string/string.nonmembers/string_op+/pointer_string
27 test_name := strings/basic.string/string.nonmembers/string_op+/string_string
31 test_name := strings/basic.string/string.nonmembers/string_op+/string_pointe
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/
main.cpp 1 #include <string>
8 std::string q("hello world");
9 std::string Q("quite a long std::strin with lots of info inside it");
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/
main.cpp 1 #include <string>
8 std::string q("hello world");
9 std::string Q("quite a long std::strin with lots of info inside it");
  /external/llvm/include/llvm/Support/
PluginLoader.h 24 void operator=(const std::string &Filename);
26 static std::string& getPlugin(unsigned num);
31 static cl::opt<PluginLoader, false, cl::parser<std::string> >
  /external/llvm/lib/Target/XCore/
XCoreSubtarget.cpp 28 XCoreSubtarget::XCoreSubtarget(const std::string &TT, const std::string &CPU,
29 const std::string &FS, const TargetMachine &TM)
  /external/llvm/unittests/ADT/
FoldingSet.cpp 16 #include <string>
22 // Unaligned string test.
27 // An aligned string
28 std::string str1= "a test string";
31 // An unaligned string
32 std::string str2 = ">" + str1;
  /external/oprofile/libpp/
xml_utils.h 31 static std::string get_timer_setup(size_t count);
32 static std::string get_event_setup(std::string event, size_t count,
33 std::string unit_mask);
34 static std::string get_profile_header(std::string cpu_name,
40 static void add_option(tag_t tag, std::string const & value);
41 static void add_option(tag_t tag, std::vector<std::string> const & value);
42 static void add_option(tag_t tag, std::list<std::string> const & value);
44 static void output_xml_header(std::string const & command_options
    [all...]

Completed in 3684 milliseconds

<<61626364656667686970>>