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

<<31323334353637383940>>

  /external/webrtc/webrtc/libjingle/xmpp/
mucroomconfigtask.h 14 #include <string>
25 const std::string& room_name,
26 const std::vector<std::string>& room_features);
40 static XmlElement* MakeRequest(const std::string& room_name,
41 const std::vector<std::string>& room_features);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code_string.pass.cpp 14 // system_error(error_code ec, const string& what_arg);
19 #include <string>
24 std::string what_arg("test message");
27 std::string what_message(se.what());
28 assert(what_message.find(what_arg) != std::string::npos);
29 assert(what_message.find("Not a directory") != std::string::npos);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.create/
make_unique.single.pass.cpp 12 #include <string>
25 std::unique_ptr<std::string> p2 = std::make_unique<std::string> ( "Meow!" );
27 p2 = std::make_unique<std::string> ();
29 p2 = std::make_unique<std::string> ( 6, 'z' );
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
io.h 18 #include <string>
26 bool IsAbsolutePath(const std::string& path);
30 // '/' or '\' to the end of the given string. If the component is '..' or '.',
31 // returns an empty string. If '/' or '\' is the last char of the given string,
32 // also returns an empty string.
34 // dir_a/dir_b/.. => <empty string>
35 // dir_a/dir_b/. => <empty string>
36 // dir_a/dirb/c/ => <empty string>
39 std::string GetBaseFileName(const std::string& file_path)
    [all...]
  /system/core/init/
import_parser.h 20 #include <string>
31 Result<Success> ParseSection(std::vector<std::string>&& args, const std::string& filename,
38 std::string filename_;
40 std::vector<std::pair<std::string, int>> imports_;
  /system/extras/tests/kernel.config/
nfs_test.cpp 17 #include <string>
23 std::string fs;
25 EXPECT_TRUE(fs.find("\tnfs\n") == std::string::npos);
26 EXPECT_TRUE(fs.find("\tnfs4\n") == std::string::npos);
27 EXPECT_TRUE(fs.find("\tnfsd\n") == std::string::npos);
  /system/hardware/interfaces/net/netd/1.1/
INetd.hal 33 * string for a route that does not specify an
39 * string for a directly-connected route. If non-empty,
45 addRouteToOemNetwork(uint64_t networkHandle, string ifname,
46 string destination, string nexthop)
56 * string for a route that does not specify an
62 * string for a directly-connected route. If non-empty,
68 removeRouteFromOemNetwork(uint64_t networkHandle, string ifname,
69 string destination, string nexthop
    [all...]
  /system/netd/tests/dns_responder/
dns_responder_client.h 18 std::string host;
19 std::string entry;
20 std::string ip4;
21 std::string ip6;
26 static void SetupMappings(unsigned num_hosts, const std::vector<std::string>& domains,
29 bool SetResolversForNetwork(const std::vector<std::string>& servers,
30 const std::vector<std::string>& domains, const std::vector<int>& params);
32 bool SetResolversForNetwork(const std::vector<std::string>& servers,
33 const std::vector<std::string>& searchDomains,
34 const std::string& params)
    [all...]
  /system/tools/aidl/
import_resolver.h 20 #include <string>
33 const std::vector<std::string>& import_paths);
38 std::string FindImportFile(const std::string& canonical_name) const;
42 std::vector<std::string> import_paths_;
type_cpp.h 21 #include <string>
36 const std::string& package,
37 const std::string& aidl_type,
38 const std::vector<std::string>& header,
39 const std::string& cpp_type,
40 const std::string& read_method,
41 const std::string& write_method,
44 const std::string& src_file_name = "",
54 std::string CppType() const { return cpp_type_; }
55 const std::string& ReadFromParcelMethod() const
    [all...]
  /system/tpm/trunks/
mock_blob_parser.h 20 #include <string>
34 bool(const TPM2B_PUBLIC&, const TPM2B_PRIVATE&, std::string*));
36 bool(const std::string&, TPM2B_PUBLIC*, TPM2B_PRIVATE*));
41 std::string*));
43 bool(const std::string&,
  /system/update_engine/common/
fake_prefs.h 21 #include <string>
42 bool GetString(const std::string& key, std::string* value) const override;
43 bool SetString(const std::string& key, const std::string& value) override;
44 bool GetInt64(const std::string& key, int64_t* value) const override;
45 bool SetInt64(const std::string& key, const int64_t value) override;
46 bool GetBoolean(const std::string& key, bool* value) const override;
47 bool SetBoolean(const std::string& key, const bool value) override;
49 bool Exists(const std::string& key) const override
    [all...]
  /system/vold/fs/
Vfat.h 22 #include <string>
30 status_t Check(const std::string& source);
31 status_t Mount(const std::string& source, const std::string& target, bool ro,
34 status_t Format(const std::string& source, unsigned long numSectors);
  /external/clang/include/clang/Frontend/
CodeGenOptions.h 23 #include <string>
98 std::string CodeModel;
102 std::string CoverageFile;
104 /// The version string to put into coverage files.
108 std::string DebugPass;
110 /// The string to embed in debug information as the current working directory.
111 std::string DebugCompilationDir;
113 /// The string to embed in the debug information for the compile unit, if
115 std::string DwarfDebugFlags;
117 std::map<std::string, std::string> DebugPrefixMap
    [all...]
  /external/jsoncpp/include/json/
writer.h 13 #include <string>
32 virtual std::string write(const Value& root) = 0;
50 /** \brief Drop the "null" string from the writer's output for nullValues.
60 virtual std::string write(const Value& root);
65 std::string document_;
102 * \return String containing the JSON document that represents the root value.
104 virtual std::string write(const Value& root);
110 void pushValue(const std::string& value);
112 void writeWithIndent(const std::string& value);
118 static std::string normalizeEOL(const std::string& text)
    [all...]
  /system/security/keystore/include/keystore/
keystore_client.h 19 #include <string>
64 virtual bool encryptWithAuthentication(const std::string& key_name, const std::string& data,
65 int32_t flags, std::string* encrypted_data) = 0;
70 virtual bool decryptWithAuthentication(const std::string& key_name,
71 const std::string& encrypted_data,
72 std::string* data) = 0;
79 virtual bool oneShotOperation(KeyPurpose purpose, const std::string& key_name,
81 const std::string& input_data,
82 const std::string& signature_to_verify
    [all...]
  /test/vts/utils/native/trace_processor/
VtsTraceProcessor.h 43 void CleanupTraces(const std::string& path);
45 void ProcessTraceForLatencyProfiling(const std::string& trace_file);
48 void DedupTraces(const std::string& trace_dir);
58 const std::string& coverage_file_dir, const std::string& trace_file_dir,
61 void ParseTrace(const std::string& trace_file);
64 void ConvertTrace(const std::string& trace_file);
69 void GetTestListForHal(const std::string& test_trace_dir,
70 const std::string& output_file,
76 bool ParseBinaryTrace(const std::string& trace_file, bool ignore_timestamp
    [all...]
  /build/blueprint/pathtools/
glob_test.go 28 pattern string
29 matches []string
30 excludes []string
31 deps []string
39 matches: []string{"a/", "b/", "c/", "d.ext", "e.ext"},
40 deps: []string{"."},
44 matches: []string{"d.ext", "e.ext"},
45 deps: []string{"."},
49 matches: []string{"a/a/", "b/a"},
50 deps: []string{".", "a", "b", "c"}
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralString.java 15 private final byte[] string; field in class:DERGeneralString
74 DERGeneralString(byte[] string)
76 this.string = string;
80 * Construct a GeneralString from the passed in String.
82 * @param string the string to be contained in this object.
84 public DERGeneralString(String string)
86 this.string = Strings.toByteArray(string)
    [all...]
DERT61String.java 9 * DER T61String (also the teletex string), try not to use this if you don't need to. The standard support the encoding for
16 private byte[] string; field in class:DERT61String
19 * return a T61 string from the passed in object.
49 * return an T61 String from a tagged object.
75 * basic constructor - string encoded as a sequence of bytes.
77 * @param string the byte encoding of the string to be wrapped.
80 byte[] string)
82 this.string = Arrays.clone(string);
    [all...]
DERVisibleString.java 18 private final byte[] string; field in class:DERVisibleString
21 * Return a Visible String from the passed in object.
51 * Return a Visible String from a tagged object.
77 * Basic constructor - byte encoded string.
80 byte[] string)
82 this.string = string;
88 * @param string the string to be carried in the VisibleString object,
91 String string
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcTestSubcase.hpp 63 virtual std::string Title() = 0;
64 virtual std::string Purpose() = 0;
65 virtual std::string Method() = 0;
66 virtual std::string PassCriteria() = 0;
67 std::string VertexShader();
68 std::string VertexShader2();
70 std::string TessControlShader();
71 std::string TessControlShader2();
73 std::string TessEvalShader();
74 std::string TessEvalShader2()
    [all...]
  /external/freetype/builds/mac/
ascii2mpw.py 3 import string
7 mpw_line = string.replace(asc_line, "\\xA5", "\245")
8 mpw_line = string.replace(mpw_line, "\\xB6", "\266")
9 mpw_line = string.replace(mpw_line, "\\xC4", "\304")
10 mpw_line = string.replace(mpw_line, "\\xC5", "\305")
11 mpw_line = string.replace(mpw_line, "\\xFF", "\377")
12 mpw_line = string.replace(mpw_line, "\n", "\r")
13 mpw_line = string.replace(mpw_line, "\\n", "\n")
17 asc_line = string.replace(mpw_line, "\n", "\\n")
18 asc_line = string.replace(asc_line, "\r", "\n"
    [all...]
  /external/libchrome/base/
sys_info.h 12 #include <string>
70 // Returns a descriptive string for the current machine model or an empty
71 // string if the machine model is unknown or an error occured.
73 // Android, and Chrome OS. This returns an empty string on other platforms.
74 static std::string HardwareModelName();
77 static std::string OperatingSystemName();
80 static std::string OperatingSystemVersion();
96 static std::string OperatingSystemArchitecture();
101 // an empty string is returned.
102 static std::string CPUModelName()
    [all...]
  /external/parameter-framework/upstream/xmlserializer/
XmlElement.h 33 #include <string>
50 std::string getType() const;
51 std::string getPath() const;
52 std::string getNameAttribute() const;
53 bool hasAttribute(const std::string &strAttributeName) const;
58 * reading it or conversion from string to T fails, false is returned. In
62 * Note: if T==string, no conversion takes place.
70 bool getAttribute(const std::string &name, T &value) const;
72 std::string getTextContent() const;
75 bool getChildElement(const std::string &strType, CXmlElement &childElement) const
    [all...]

Completed in 1321 milliseconds

<<31323334353637383940>>