| /external/tensorflow/tensorflow/core/profiler/internal/ |
| tfprof_utils.h | 19 #include <string> 30 string FormatNumber(int64 n); 32 string FormatTime(int64 micros); 34 string FormatMemory(int64 bytes); 36 string FormatShapes(const std::vector<int64>& shapes); 38 tensorflow::Status ParseCmdLine(const string& line, string* cmd, 41 string StringReplace(const string& str, const string& oldsub [all...] |
| /external/webrtc/talk/app/webrtc/ |
| jsep.h | 33 #include <string> 49 std::string line; 51 std::string description; 63 virtual std::string sdp_mid() const = 0; 69 virtual bool ToString(std::string* out) const = 0; 72 // Creates a IceCandidateInterface based on SDP string. 73 // Returns NULL if the sdp string can't be parsed. 75 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid, 77 const std::string& sdp, 107 virtual std::string session_id() const = 0 [all...] |
| /external/webrtc/webrtc/libjingle/xmpp/ |
| mucroomlookuptask.h | 14 #include <string> 21 std::string name; 22 std::string domain; 23 std::string hangout_id; 25 std::string full_name() const { 40 const std::string& room_name, 41 const std::string& room_domain); 49 const std::string& hangout_id); 53 const std::string& external_id, 54 const std::string& type) [all...] |
| /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/ |
| vk_layer_config.h | 42 const std::unordered_map<std::string, VkFlags> debug_actions_option_definitions = { 43 {std::string("VK_DBG_LAYER_ACTION_IGNORE"), VK_DBG_LAYER_ACTION_IGNORE}, 44 {std::string("VK_DBG_LAYER_ACTION_CALLBACK"), VK_DBG_LAYER_ACTION_CALLBACK}, 45 {std::string("VK_DBG_LAYER_ACTION_LOG_MSG"), VK_DBG_LAYER_ACTION_LOG_MSG}, 46 {std::string("VK_DBG_LAYER_ACTION_BREAK"), VK_DBG_LAYER_ACTION_BREAK}, 48 {std::string("VK_DBG_LAYER_ACTION_DEBUG_OUTPUT"), VK_DBG_LAYER_ACTION_DEBUG_OUTPUT}, 50 {std::string("VK_DBG_LAYER_ACTION_DEFAULT"), VK_DBG_LAYER_ACTION_DEFAULT}}; 52 const std::unordered_map<std::string, VkFlags> report_flags_option_definitions = { 53 {std::string("warn"), VK_DEBUG_REPORT_WARNING_BIT_EXT}, 54 {std::string("info"), VK_DEBUG_REPORT_INFORMATION_BIT_EXT} [all...] |
| /system/core/init/ |
| host_init_stubs.h | 24 #include <string> 36 std::string GetProperty(const std::string& key, const std::string& default_value); 37 bool GetBoolProperty(const std::string& key, bool default_value); 39 T GetIntProperty(const std::string&, T default_value, T = std::numeric_limits<T>::min(), 51 extern std::string default_console; 54 extern uint32_t (*property_set)(const std::string& name, const std::string& value); 55 uint32_t HandlePropertySet(const std::string& name, const std::string& value [all...] |
| parser.h | 22 #include <string> 54 virtual Result<Success> ParseSection(std::vector<std::string>&& args, 55 const std::string& filename, int line) = 0; 56 virtual Result<Success> ParseLineSection(std::vector<std::string>&&, int) { return Success(); }; 65 // They take the form of bool Callback(std::vector<std::string>&& args, std::string* err) 68 // indicating a failure and has an std::string* err parameter into which an error string can 70 using LineCallback = std::function<Result<Success>(std::vector<std::string>&&)>; 74 bool ParseConfig(const std::string& path) [all...] |
| /system/extras/simpleperf/ |
| event_type.h | 22 #include <string> 39 EventType(const std::string& name, uint32_t type, uint64_t config, 40 const std::string& description, const std::string& limited_arch) 48 std::string name; 51 std::string description; 52 std::string limited_arch; 55 bool SetTracepointEventsFilePath(const std::string& filepath); 56 std::string GetTracepointEvents(); 61 static std::string BuildString(const std::vector<const EventType*>& event_types) [all...] |
| /system/nfc/utils/include/ |
| config.h | 19 #include <string> 24 enum Type { UNSIGNED, STRING, BYTES }; 27 ConfigValue(std::string); 31 std::string getString() const; 35 bool parseFromString(std::string in); 39 std::string value_string_; 46 void parseFromFile(const std::string& file_name); 47 void parseFromString(const std::string& config); 48 void addConfig(const std::string& config, ConfigValue& value); 50 bool hasKey(const std::string& key) [all...] |
| /system/tools/hidl/utils/include/hidl-util/ |
| FqInstance.h | 21 #include <string> 36 // LOG(WARNING) << fqInstance.string(); 39 const std::string& getPackage() const; 43 const std::string& getInterface() const; 44 const std::string& getInstance() const; 66 __attribute__((warn_unused_result)) bool setTo(const std::string& s); 72 __attribute__((warn_unused_result)) bool setTo(const std::string& package, size_t majorVer, 73 size_t minorVer, const std::string& interface, 74 const std::string& instance); 76 const std::string& interface [all...] |
| /test/vts/agents/hal/ |
| AgentRequestHandler.h | 20 #include <string> 50 bool ListHals(const ::google::protobuf::RepeatedPtrField<string>& base_paths); 56 bool CheckDriverService(const string& service_name, bool* live); 70 bool CallApi(const string& call_payload, const string& uid); 73 bool GetAttribute(const string& payload); 84 bool SendApiResult(const string& func_name, const string& result, 85 const string& spec = ""); 89 string service_name_ [all...] |
| /external/antlr/antlr-3.4/runtime/C/include/ |
| antlr3string.h | 2 * Simple string interface allows indiscriminate allocation of strings 4 * one chunk via a string factory - saves lots of hassle in remembering what 46 /** Base string class tracks the allocations and provides simple string 47 * tracking functions. Mostly you can work directly on the string for things 54 /** The factory that created this string 58 /** Pointer to the current string value (starts at NULL unless 59 * the string allocator is told to create it with a pre known size. 63 /** Current length of the string up to and not including, the trailing '\0' 69 /** Current size of the string in bytes including the trailing '\0 [all...] |
| /external/tensorflow/tensorflow/python/util/ |
| transform_graph.i | 37 string TransformGraphWithStringInputs(string graph_def_string, 38 string inputs_string, 39 string outputs_string, 40 string transforms_string, 57 std::vector<string> inputs = tensorflow::str_util::Split(inputs_string, ','); 58 std::vector<string> outputs = 68 string result; 80 string TransformGraphWithStringInputs(string graph_def_string [all...] |
| /hardware/interfaces/health/1.0/ |
| types.hal | 93 string batteryStatusPath; 100 string batteryHealthPath; 106 string batteryPresentPath; 113 string batteryCapacityPath; 119 string batteryVoltagePath; 125 string batteryTemperaturePath; 131 string batteryTechnologyPath; 137 string batteryCurrentNowPath; 143 string batteryCurrentAvgPath; 149 string batteryChargeCounterPath [all...] |
| /prebuilts/go/darwin-x86/test/fixedbugs/ |
| issue15055.go | 10 type name string 12 _ = string("a", "b", nil) // ERROR "too many arguments to conversion to string: string\(.a., .b., nil\)" 14 _ = string() // ERROR "missing argument to conversion to string: string\(\)" 16 _ = map[string]string(nil, nil) // ERROR "too many arguments to conversion to map\[string\]string: \(map\[string\]string\)\(nil, nil\) [all...] |
| /prebuilts/go/linux-x86/test/fixedbugs/ |
| issue15055.go | 10 type name string 12 _ = string("a", "b", nil) // ERROR "too many arguments to conversion to string: string\(.a., .b., nil\)" 14 _ = string() // ERROR "missing argument to conversion to string: string\(\)" 16 _ = map[string]string(nil, nil) // ERROR "too many arguments to conversion to map\[string\]string: \(map\[string\]string\)\(nil, nil\) [all...] |
| /prebuilts/misc/common/swig/include/2.0.11/guile/ |
| std_string.i | 4 * SWIG typemaps for std::string 8 // std::string is typemapped by value 9 // This can prevent exporting methods which return a string 17 #include <string> 22 %naturalvar string; 24 class string; 26 %typemap(typecheck) string = char *; 27 %typemap(typecheck) const string & = char *; 29 %typemap(in) string (char * tempptr) { 35 SWIG_exception(SWIG_TypeError, "string expected") [all...] |
| /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/ |
| importer.h | 40 #include <string> 99 bool FindFileByName(const string& filename, FileDescriptorProto* output); 100 bool FindFileContainingSymbol(const string& symbol_name, 102 bool FindFileContainingExtension(const string& containing_type, 118 void AddError(const string& filename, 119 const string& element_name, 122 const string& message); 161 const FileDescriptor* Import(const string& filename); 185 virtual void AddError(const string& filename, int line, int column, 186 const string& message) = 0 [all...] |
| /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/ |
| importer.h | 40 #include <string> 99 bool FindFileByName(const string& filename, FileDescriptorProto* output); 100 bool FindFileContainingSymbol(const string& symbol_name, 102 bool FindFileContainingExtension(const string& containing_type, 118 void AddError(const string& filename, 119 const string& element_name, 122 const string& message); 161 const FileDescriptor* Import(const string& filename); 185 virtual void AddError(const string& filename, int line, int column, 186 const string& message) = 0 [all...] |
| /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/ |
| importer.h | 40 #include <string> 99 bool FindFileByName(const string& filename, FileDescriptorProto* output); 100 bool FindFileContainingSymbol(const string& symbol_name, 102 bool FindFileContainingExtension(const string& containing_type, 118 void AddError(const string& filename, 119 const string& element_name, 122 const string& message); 161 const FileDescriptor* Import(const string& filename); 185 virtual void AddError(const string& filename, int line, int column, 186 const string& message) = 0 [all...] |
| /prebuilts/tools/linux-x86_64/kythe/proto/ |
| analysis.proto | 64 string file_data_service = 2; 83 string revision = 2; 96 repeated string argument = 5; 103 repeated string source_file = 6; 108 string output_key = 7; 121 string linked_context = 2; 130 string source_context = 1; 156 string working_directory = 8; 162 string entry_context = 9; 167 string name = 1 [all...] |
| /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/ |
| importer.h | 40 #include <string> 99 bool FindFileByName(const string& filename, FileDescriptorProto* output); 100 bool FindFileContainingSymbol(const string& symbol_name, 102 bool FindFileContainingExtension(const string& containing_type, 118 void AddError(const string& filename, 119 const string& element_name, 122 const string& message); 161 const FileDescriptor* Import(const string& filename); 185 virtual void AddError(const string& filename, int line, int column, 186 const string& message) = 0 [all...] |
| /system/security/keystore/include/keystore/ |
| keystore_client_mock.h | 33 bool(const std::string& key_name, const std::string& data, 34 std::string* encrypted_data)); 36 bool(const std::string& key_name, const std::string& encrypted_data, 37 std::string* data)); 39 bool(keymaster_purpose_t purpose, const std::string& key_name, 41 const std::string& input_data, const std::string& signature_to_verify, 42 keymaster::AuthorizationSet* output_parameters, std::string* output_data)) [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
| DERIA5String.java | 9 * DER IA5String object - this is an ascii string. 15 private final byte[] string; field in class:DERIA5String 18 * return a IA5 string from the passed in object 48 * return an IA5 String from a tagged object. 75 * @param string the byte encoding of the characters making up the string. 78 byte[] string) 80 this.string = string; 85 * @param string the base string to use. [all...] |
| /external/tensorflow/tensorflow/core/kernels/ |
| remote_fused_graph_execute_utils.h | 74 ExecutorBuildRegistrar(const string& name, ExecutorBuildFunc func); 79 using ExecutorBuildRegistry = std::map<string, ExecutorBuildFunc>; 82 using TensorShapeMap = std::unordered_multimap<string, // node name 85 using ClusterInfo = std::tuple<std::unordered_set<string>, // node names 86 std::vector<string>, // border inputs 87 std::vector<string>>; // border outputs 90 static const ExecutorBuildFunc* GetExecutorBuildFunc(const string& name); 98 const std::vector<std::pair<string, Tensor>>& input_node_info_list, 99 const std::vector<string>& output_node_names, 109 const std::vector<std::pair<string, Tensor>>& input_node_info_list [all...] |
| /external/tensorflow/tensorflow/core/platform/cloud/ |
| retrying_file_system.h | 19 #include <string> 35 const string& filename, 38 Status NewWritableFile(const string& fname, 41 Status NewAppendableFile(const string& fname, 45 const string& filename, 48 Status FileExists(const string& fname) override; 50 Status GetChildren(const string& dir, std::vector<string>* result) override; 52 Status GetMatchingPaths(const string& dir, 53 std::vector<string>* result) override [all...] |