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

<<21222324252627282930>>

  /system/extras/simpleperf/
command.h 22 #include <string>
29 Command(const std::string& name, const std::string& short_help_string,
30 const std::string& long_help_string)
37 const std::string& Name() const {
41 const std::string& ShortHelpString() const {
45 const std::string LongHelpString() const {
49 virtual bool Run(const std::vector<std::string>& args) = 0;
52 bool NextArgumentOrError(const std::vector<std::string>& args, size_t* pi);
53 void ReportUnknownOption(const std::vector<std::string>& args, size_t i)
    [all...]
  /system/tools/hidl/
StringType.h 32 std::string typeName() const override;
34 std::string getCppType(
38 std::string getJavaType(bool /* forInitializer */) const override;
40 std::string getJavaSuffix() const override;
42 std::string getVtsType() const override;
46 const std::string &name,
47 const std::string &parcelObj,
55 const std::string &name,
56 const std::string & /*sanitizedName*/,
58 const std::string &parcelObj
    [all...]
  /external/libbrillo/brillo/errors/
error.h 9 #include <string>
27 const std::string& domain,
28 const std::string& code,
29 const std::string& message);
31 const std::string& domain,
32 const std::string& code,
33 const std::string& message,
40 const std::string& domain,
41 const std::string& code,
42 const std::string& message)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DirectoryString.java 22 private ASN1String string; field in class:DirectoryString
70 DERT61String string)
72 this.string = string;
76 DERPrintableString string)
78 this.string = string;
82 DERUniversalString string)
84 this.string = string;
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.cc 13 #include <string>
28 virtual bool MyIpAddress(std::string* first_ip_address) {
33 virtual bool MyIpAddressEx(std::string* ip_address_list) {
38 virtual bool DnsResolve(const std::string& host,
39 std::string* first_ip_address) {
44 virtual bool DnsResolveEx(const std::string& host,
45 std::string* ip_address_list) {
50 bool MyIpAddressImpl(std::string* first_ip_address) {
51 std::string my_hostname = GetHostName();
57 bool MyIpAddressExImpl(std::string* ip_address_list)
    [all...]
  /external/libbrillo/brillo/http/
http_form_data.h 9 #include <string>
49 FormField(const std::string& name,
50 const std::string& content_disposition,
51 const std::string& content_type,
52 const std::string& transfer_encoding);
58 virtual std::string GetContentDisposition() const;
62 virtual std::string GetContentType() const;
64 // Returns a string with all of the field headers, delimited by CRLF
66 std::string GetContentHeader() const;
77 std::string name_
    [all...]
  /external/parameter-framework/upstream/parameter/include/
ElementHandle.h 35 #include <string>
53 std::string getName() const;
67 std::string getDescription() const;
84 std::string getPath() const;
88 * Ie: a string identifying the type of Element.
90 std::string getKind() const;
103 bool getMappingData(const std::string &strKey, std::string &strValue) const;
105 /** Gets element structure description as XML string
107 * @return the output XML string
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
utils.h 40 NodeDef* GetNode(const string& name) const;
41 bool NodeExists(const string& name) const;
42 const std::set<NodeDef*>& GetOutputs(const string& node_name) const;
45 void AddNode(const string& name, NodeDef* node);
46 void RemoveNode(const string& name);
47 void UpdateInput(const string& node_name, const string& old_input_name,
48 const string& new_input_name);
49 void AddOutput(const string& node_name, const string& output_name)
    [all...]
  /frameworks/base/core/proto/android/os/
system_properties.proto 34 optional string name = 1;
35 optional string value = 2;
71 optional string appimageformat = 1;
72 optional string backgroundgctype = 2;
74 optional string dex2oat_filter = 4;
75 optional string dex2oat_flags = 5;
77 optional string dex2oat_Xms = 7;
78 optional string dex2oat_Xmx = 8;
80 optional string execution_mode = 10;
81 optional string extra_opts = 11
    [all...]
  /external/tensorflow/tensorflow/core/platform/
file_system.h 21 #include <string>
61 const string& fname, std::unique_ptr<RandomAccessFile>* result) = 0;
75 virtual Status NewWritableFile(const string& fname,
89 virtual Status NewAppendableFile(const string& fname,
103 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result) = 0;
106 virtual Status FileExists(const string& fname) = 0;
111 virtual bool FilesExist(const std::vector<string>& files,
117 virtual Status GetChildren(const string& dir,
118 std::vector<string>* result) = 0;
144 virtual Status GetMatchingPaths(const string& pattern
    [all...]
  /frameworks/base/cmds/incident_helper/src/
ih_util.h 22 #include <string>
29 typedef std::vector<std::string> header_t;
30 typedef std::vector<std::string> record_t;
31 typedef std::string (*trans_func) (const std::string&);
33 const std::string DEFAULT_WHITESPACE = " \t";
34 const std::string DEFAULT_NEWLINE = "\r\n";
35 const std::string TAB_DELIMITER = "\t";
36 const std::string COMMA_DELIMITER = ",";
37 const std::string PIPE_DELIMITER = "|"
    [all...]
  /system/tpm/trunks/
mock_tpm_utility.h 20 #include <string>
37 MOCK_METHOD1(AllocatePCR, TPM_RC(const std::string&));
39 TPM_RC(const std::string&,
40 const std::string&,
41 const std::string&));
42 MOCK_METHOD2(StirRandom, TPM_RC(const std::string&, AuthorizationDelegate*));
44 TPM_RC(size_t, AuthorizationDelegate*, std::string*));
46 TPM_RC(int, const std::string&, AuthorizationDelegate*));
47 MOCK_METHOD2(ReadPCR, TPM_RC(int, std::string*));
52 const std::string&
    [all...]
  /external/boringssl/src/crypto/test/
file_test.h 29 #include <string>
112 // silent suppressed the "PASS" string that is otherwise printed after
116 std::function<void(const std::string&)> comment_callback;
124 std::function<void(const std::string &)> comment_callback,
141 const std::string &GetType();
143 const std::string &GetParameter();
146 bool HasAttribute(const std::string &key);
151 bool GetAttribute(std::string *out_value, const std::string &key);
155 const std::string &GetAttributeOrDie(const std::string &key)
    [all...]
  /external/parameter-framework/upstream/test/test-platform/
TestPlatform.h 35 #include <string>
48 CTestPlatform(const std::string &strclass, uint16_t iPortNumber);
52 bool run(std::string &strError);
58 const IRemoteCommand &remoteCommand, std::string &strResult);
60 const IRemoteCommand &remoteCommand, std::string &strResult);
63 std::string &strResult);
65 std::string &strResult);
67 CommandReturn getSchemaUri(const IRemoteCommand &remotecommand, std::string &result);
68 CommandReturn setSchemaUri(const IRemoteCommand &remotecommand, std::string &result);
79 CommandReturn setCriterionState(const IRemoteCommand &remoteCommand, std::string &strResult)
    [all...]
  /frameworks/native/cmds/installd/
dexopt.h 37 bool clear_primary_reference_profile(const std::string& pkgname, const std::string& profile_name);
39 bool clear_primary_current_profile(const std::string& pkgname, const std::string& profile_name,
42 bool clear_primary_current_profiles(const std::string& pkgname, const std::string& profile_name);
51 const std::string& pkgname,
52 const std::string& profile_name);
69 const std::string& package,
70 const std::string& profile_name
    [all...]
  /system/update_engine/
omaha_request_params.h 22 #include <string>
58 const std::string& in_os_platform,
59 const std::string& in_os_version,
60 const std::string& in_os_sp,
61 const std::string& in_os_board,
62 const std::string& in_app_id,
63 const std::string& in_app_version,
64 const std::string& in_app_lang,
65 const std::string& in_target_channel,
66 const std::string& in_hwid
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERBMPString.java 14 private final char[] string; field in class:DERBMPString
17 * return a BMP String from the given object.
47 * return a BMP String from a tagged object.
73 * basic constructor - byte encoded string.
74 * @param string the encoded BMP STRING to wrap.
77 byte[] string)
79 char[] cs = new char[string.length / 2];
83 cs[i] = (char)((string[2 * i] << 8) | (string[2 * i + 1] & 0xff))
    [all...]
  /external/flatbuffers/grpc/src/compiler/
cpp_generator.h 48 #include <string>
49 #define GRPC_CUSTOM_STRING std::string
54 typedef GRPC_CUSTOM_STRING string; typedef in namespace:grpc
63 grpc::string services_namespace;
67 grpc::string grpc_search_path;
73 grpc::string GetHeaderPrologue(grpc_generator::File *file,
77 grpc::string GetHeaderIncludes(grpc_generator::File *file,
81 grpc::string GetSourceIncludes(grpc_generator::File *file,
85 grpc::string GetHeaderEpilogue(grpc_generator::File *file,
89 grpc::string GetSourcePrologue(grpc_generator::File *file
    [all...]
  /external/google-breakpad/src/processor/
cfi_frame_info.h 42 #include <string>
70 public map<string, ValueType> { };
75 void SetCFARule(const string &expression) { cfa_rule_ = expression; }
76 void SetRARule(const string &expression) { ra_rule_ = expression; }
77 void SetRegisterRule(const string &register_name, const string &expression) {
103 // Serialize the rules in this object into a string in the format
105 string Serialize() const;
110 typedef map<string, string> RuleMap
    [all...]
  /external/libbrillo/brillo/
data_encoding.h 8 #include <string>
18 using WebParamList = std::vector<std::pair<std::string, std::string>>;
20 // Encode/escape string to be used in the query portion of a URL.
23 BRILLO_EXPORT std::string UrlEncode(const char* data, bool encodeSpaceAsPlus);
25 inline std::string UrlEncode(const char* data) {
31 BRILLO_EXPORT std::string UrlDecode(const char* data);
33 // Converts a list of key-value pairs into a string compatible with
35 BRILLO_EXPORT std::string WebParamsEncode(const WebParamList& params,
38 inline std::string WebParamsEncode(const WebParamList& params)
    [all...]
  /external/tensorflow/tensorflow/core/framework/
reader_base.h 20 #include <string>
34 explicit ReaderBase(const string& name);
55 virtual Status ReadLocked(string* key, string* value, bool* produced,
62 virtual Status ReadUpToLocked(int64 num_records, std::vector<string>* keys,
63 std::vector<string>* values, int64* num_read,
75 virtual Status SerializeStateLocked(string* state);
76 virtual Status RestoreStateLocked(const string& state);
86 const string& current_work() const { return work_; }
89 const string& name() const { return name_;
    [all...]
  /external/tensorflow/tensorflow/core/util/
command_line_flags.h 20 #include <string>
34 // string some_name = "something";
38 // Flag("some_name", &some_name, "a string that affects Z")
41 // string usage = Flag::Usage(argv[0], flag_list);
65 Flag(const char* name, int32* dst, const string& usage_text);
66 Flag(const char* name, int64* dst, const string& usage_text);
67 Flag(const char* name, bool* dst, const string& usage_text);
68 Flag(const char* name, string* dst, const string& usage_text);
69 Flag(const char* name, float* dst, const string& usage_text)
    [all...]
  /system/libvintf/include/vintf/
RuntimeInfo.h 23 #include <string>
45 const std::string &osName() const;
47 const std::string &nodeName() const;
49 const std::string &osRelease() const;
51 const std::string &osVersion() const;
53 const std::string &hardwareId() const;
57 const std::map<std::string, std::string> &kernelConfigs() const;
63 const std::string &cpuInfo() const;
75 bool checkCompatibility(const CompatibilityMatrix& mat, std::string* error = nullptr
    [all...]
  /test/vts/drivers/hal/common/include/driver_manager/
VtsHalDriverManager.h 21 #include <string>
37 VtsHalDriverManager(const string& spec_dir, const int epoch_count,
38 const string& callback_socket_name);
44 DriverId LoadTargetComponent(const string& dll_file_name,
45 const string& spec_lib_file_path,
48 const string& package_name,
49 const string& component_name,
50 const string& hw_binder_service_name);
56 // Returns a string which contians the return results (a text format of the
58 // For error cases, returns string "error"
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.h 34 #include <string>
48 string expected_prefixes_path;
52 string EscapeTrigraphs(const string& to_escape);
55 string StripProto(const string& filename);
59 bool IsRetainedName(const string& name);
63 bool IsInitName(const string& name);
67 string FileName(const FileDescriptor* file);
72 string FilePath(const FileDescriptor* file)
    [all...]

Completed in 1463 milliseconds

<<21222324252627282930>>