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

<<81828384858687888990>>

  /external/tensorflow/tensorflow/contrib/lite/tools/
gen_op_registration.cc 15 #include <string>
24 string NormalizeCustomOpName(const string& op) {
25 string method(op);
32 std::vector<string>* builtin_ops,
33 std::vector<string>* custom_ops) {
  /external/tensorflow/tensorflow/contrib/mpi_collectives/
mpi_message.proto 38 string tensor_name = 4;
60 string tensor_name = 2;
63 string error_message = 3;
  /external/tensorflow/tensorflow/core/common_runtime/
device_mgr.h 19 #include <string>
48 // Returns a string listing all devices.
49 string DebugString() const;
51 // Returns a string of all the device mapping.
52 string DeviceMappingString() const;
60 void ClearContainers(gtl::ArraySlice<string> containers) const;
62 int NumDeviceType(const string& type) const;
73 std::unordered_map<string, int> device_type_counts_;
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_cache_wrapper.h 19 #include <string>
32 virtual void ListWorkers(std::vector<string>* workers) const {
43 virtual WorkerInterface* CreateWorker(const string& target) {
52 virtual void ReleaseWorker(const string& target, WorkerInterface* worker) {
60 virtual bool GetDeviceLocalityNonBlocking(const string& device,
68 virtual void GetDeviceLocalityAsync(const string& device,
  /external/tensorflow/tensorflow/core/kernels/
summary_interface.h 37 virtual Status WriteTensor(int64 global_step, Tensor t, const string& tag,
38 const string& serialized_metadata) = 0;
41 const string& tag) = 0;
44 const string& tag) = 0;
46 virtual Status WriteImage(int64 global_step, Tensor t, const string& tag,
49 virtual Status WriteAudio(int64 global_step, Tensor t, const string& tag,
  /external/tensorflow/tensorflow/core/lib/gtl/
map_util_test.cc 20 #include <string>
28 typedef std::map<string, string> Map;
32 // key or value type, such as const char* -> string.
37 string str;
43 typedef std::map<string, string> Map;
47 // key or value type, such as const char* -> string.
  /external/tensorflow/tensorflow/core/lib/io/
buffered_inputstream.h 44 Status ReadNBytes(int64 bytes_to_read, string* result) override;
68 Status ReadLine(string* result);
76 string ReadLineAsString();
82 Status ReadAll(string* result);
88 Status ReadLineHelper(string* result, bool include_eol);
92 string buf_; // the buffer itself.
path.h 25 string JoinPathImpl(std::initializer_list<tensorflow::StringPiece> paths);
42 // string path = io::JoinPath("/mydir", filename);
43 // string path = io::JoinPath(FLAGS_test_srcdir, filename);
44 // string path = io::JoinPath("/full", "path", "to", "filename);
46 string JoinPath(const T&... args) {
73 // string manipulation, completely independent of process state.
74 string CleanPath(tensorflow::StringPiece path);
82 // passed string is assumed to be a path
89 string CreateURI(tensorflow::StringPiece scheme, tensorflow::StringPiece host,
93 string GetTempFilename(const string& extension)
    [all...]
  /external/tensorflow/tensorflow/core/lib/png/
png_io.h 29 // these can be decoded without copying the data into a C++ string.
34 #include <string>
62 std::vector<std::pair<string, string> >* metadata);
66 // string png_string; /* fill with input PNG format data */
88 // string png_string;
97 int channel_bits, int compression, string* png_string,
98 const std::vector<std::pair<string, string> >* metadata);
  /external/webrtc/talk/media/devices/
win32deviceinfo.cc 32 bool GetUsbId(const Device& device, std::string* usb_id) {
37 if (vid_location == std::string::npos ||
43 if (pid_location == std::string::npos ||
47 std::string id_vendor = device.id.substr(vid_location + sizeof(vid) - 1,
49 std::string id_product = device.id.substr(pid_location + sizeof(pid) -1,
58 bool GetUsbVersion(const Device& device, std::string* usb_version) {
  /external/webrtc/webrtc/base/
macutils.h 18 #include <string>
27 bool ToUtf8(const CFStringRef str16, std::string* str8);
28 bool ToUtf16(const std::string& str8, CFStringRef* str16);
31 void DecodeFourChar(UInt32 fc, std::string* out);
48 bool GetQuickTimeVersion(std::string* version);
52 bool RunAppleScript(const std::string& script);
  /external/webrtc/webrtc/libjingle/xmpp/
saslmechanism.cc 38 std::string
39 SaslMechanism::Base64Encode(const std::string & plain) {
43 std::string
44 SaslMechanism::Base64Decode(const std::string & encoded) {
48 std::string
50 std::string result;
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.h 18 #include <string>
56 FileOutputFrameReceiver(const std::string& base_out_filename, uint32_t ssrc);
63 std::string out_filename_;
77 std::string codecName;
82 std::string inputFile;
83 std::string outputFile;
  /frameworks/av/media/libmedia/include/media/
CounterMetric.h 21 #include <string>
58 const std::string& metric_name,
59 const std::string& attribute_name)
84 const std::string& metric_name() const { return metric_name_; };
87 const std::string metric_name_;
88 const std::string attribute_name_;
  /frameworks/base/core/proto/android/app/
notification_channel_group.proto 32 optional string id = 1;
33 optional string name = 2;
34 optional string description = 3;
  /frameworks/base/core/proto/android/os/
message.proto 28 optional string callback = 2;
34 // String representation of an arbitrary object to send to the recipient.
35 optional string obj = 6 [ (.android.privacy).dest = DEST_EXPLICIT ];
37 optional string target = 7;
  /frameworks/base/libs/androidfw/tests/
CommonHelpers.h 21 #include <string>
33 void SetTestDataPath(const std::string& path);
35 const std::string& GetTestDataPath();
37 std::string GetStringFromPool(const ResStringPool* pool, uint32_t idx);
44 return out << str.string();
48 return out << String8(str).string();
  /frameworks/base/media/mca/filterfw/native/core/
time_util.h 20 #include <string>
34 explicit NamedStopWatch(const string& name);
38 void SetName(const string& name) { mName = name; }
43 const string& Name() const { return mName; }
48 string mName;
57 explicit ScopedTimer(const string& stop_watch_name);
  /frameworks/base/media/mca/filterpacks/native/base/
time_util.h 20 #include <string>
34 explicit NamedStopWatch(const std::string& name);
38 void SetName(const std::string& name) { mName = name; }
43 const std::string& Name() const { return mName; }
48 std::string mName;
57 explicit ScopedTimer(const std::string& stop_watch_name);
  /frameworks/base/tools/aapt2/
ResourcesInternal.proto 32 string resource_name = 1;
39 string resource_name = 1;
49 string source_path = 4;
  /frameworks/base/tools/aapt2/filter/
Filter.h 20 #include <string>
33 virtual bool Keep(const std::string& path) = 0;
41 explicit PrefixFilter(std::string prefix) : prefix_(std::move(prefix)) {
45 bool Keep(const std::string& path) override {
50 const std::string prefix_;
62 bool Keep(const std::string& path) override {
  /frameworks/compile/mclinker/include/mcld/Script/
OutputFormatCmd.h 14 #include <string>
27 typedef std::vector<std::string> FormatList;
32 explicit OutputFormatCmd(const std::string& pFormat);
33 OutputFormatCmd(const std::string& pDefault,
34 const std::string& pBig,
35 const std::string& pLittle);
  /hardware/interfaces/wifi/1.2/default/tests/
mock_wifi_legacy_hal.h 38 MOCK_METHOD2(setDfsFlag, wifi_error(const std::string&, bool));
40 wifi_error(const std::string&,
43 wifi_error(const std::string&, const NanCallbackHandlers&));
45 wifi_error(const std::string&, transaction_id));
47 wifi_error(const std::string&, transaction_id,
48 const std::string&));
  /packages/apps/Dialer/java/com/android/dialer/util/
MoreStrings.java 26 * Returns the given string if it is non-null; the empty string otherwise.
28 * @param string the string to test and possibly return
29 * @return {@code string} itself if it is non-null; {@code ""} if it is null
31 public static String nullToEmpty(@Nullable String string) {
32 return (string == null) ? "" : string;
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/issue10219.dir/
a.go 8 S string
13 P string
21 func (s *S) M(p string) {

Completed in 1467 milliseconds

<<81828384858687888990>>