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

<<21222324252627282930>>

  /external/parameter-framework/upstream/parameter/
XmlElementSerializingContext.cpp 34 using std::string;
36 CXmlElementSerializingContext::CXmlElementSerializingContext(string &strError) : base(strError)
42 const string &xmlUri)
55 const string &CXmlElementSerializingContext::getXmlUri() const
  /external/parameter-framework/upstream/remote-processor/
AnswerMessage.h 39 CAnswerMessage(const std::string &strAnswer, bool bSuccess);
43 const std::string &getAnswer() const;
58 void setAnswer(const std::string &strAnswer);
61 std::string _strAnswer;
  /external/parameter-framework/upstream/test/tmpfile/posix/
TmpFile.cpp 41 std::string TmpFile::mktmp()
43 using std::string;
48 throwErrnoError("Could not create tmp file with pattern \"" + string(path) + '"');
51 throwErrnoError("Could not close tmp file \"" + string(path) + '"');
  /external/parameter-framework/upstream/xmlserializer/
XmlSerializingContext.h 34 #include <string>
52 CXmlSerializingContext(std::string &strError);
56 void appendLineToError(const std::string &strAppend);
67 std::string _strXmlError;
  /external/perfetto/src/ipc/test/
client_unittest_messages.proto 23 optional string data = 1;
27 optional string data =
  /external/proguard/src/proguard/util/
StringMatcher.java 33 * Checks whether the given string matches.
34 * @param string the string to match.
35 * @return a boolean indicating whether the string matches the criterion.
37 public boolean matches(String string);
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.h 37 // simply stores two values a string and an integer, which are returned via
40 #import <string>
44 Widget(int number, const std::string& name);
51 // Public accessors to the string data
52 std::string GetStringValue() const;
58 std::string name_;
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_options.h 36 #include <string>
52 string dllexport_decl;
57 string annotation_pragma_name;
58 string annotation_guard_name;
  /external/sfntly/cpp/src/test/
test_xml_utils.h 24 typedef std::map<std::string, std::string> AttributeMap;
28 const std::string& name);
30 const std::string& name);
  /external/stressapptest/src/
os_factory.cc 21 #include <string.h>
24 #include <string>
30 OsLayer *OsLayerFactory(const std::map<std::string, std::string> &options) {
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaSubtarget.cpp 23 AlphaSubtarget::AlphaSubtarget(const std::string &TT, const std::string &CPU,
24 const std::string &FS)
26 std::string CPUName = CPU;
30 // Parse features string.
AlphaSubtarget.h 19 #include <string>
38 AlphaSubtarget(const std::string &TT, const std::string &CPU,
39 const std::string &FS);
41 /// ParseSubtargetFeatures - Parses features string setting specified
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430Subtarget.cpp 24 MSP430Subtarget::MSP430Subtarget(const std::string &TT,
25 const std::string &CPU,
26 const std::string &FS) :
28 std::string CPUName = "generic";
30 // Parse features string.
MSP430Subtarget.h 22 #include <string>
33 MSP430Subtarget(const std::string &TT, const std::string &CPU,
34 const std::string &FS);
36 /// ParseSubtargetFeatures - Parses features string setting specified
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreSubtarget.h 19 #include <string>
33 XCoreSubtarget(const std::string &TT, const std::string &CPU,
34 const std::string &FS);
36 /// ParseSubtargetFeatures - Parses features string setting specified
  /external/tensorflow/tensorflow/contrib/lite/examples/label_image/
label_image.h 19 #include "tensorflow/contrib/lite/string.h"
31 string model_name = "./mobilenet_quant_v1_224.tflite";
32 string input_bmp_name = "./grace_hopper.bmp";
33 string labels_file_name = "./labels.txt";
34 string input_layer_type = "uint8_t";
  /external/tensorflow/tensorflow/contrib/lite/testing/
test_runner.h 19 #include <string>
21 #include "tensorflow/contrib/lite/string.h"
35 virtual void LoadModel(const string& bin_file_path) = 0;
45 virtual void ReshapeTensor(int id, const string& csv_values) = 0;
56 virtual void SetInput(int id, const string& csv_values) = 0;
61 virtual void SetExpectation(int id, const string& csv_values) = 0;
73 virtual string ReadOutput(int id) = 0;
76 void SetModelBaseDir(const string& path) {
84 string GetFullPath(const string& path) { return model_base_dir_ + path;
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
cluster_utils.cc 15 #include <string>
19 bool StrContains(const string& x, const string& search_pattern) {
20 return x.find(search_pattern) != string::npos;
  /external/tensorflow/tensorflow/contrib/session_bundle/
test_util.cc 26 string TestSrcDirPath(const string& relative_path) {
27 const string base_path = tensorflow::testing::TensorFlowSrcRoot();
28 const string contrib_path = tensorflow::io::JoinPath(
  /external/tensorflow/tensorflow/contrib/tensorboard/plugins/trace/
trace_info.proto 26 string name = 1;
27 string op_type = 2;
28 string device = 3;
36 string file_path = 1;
46 string dtype = 2;
50 repeated string consumers = 4;
55 string file_path = 1;
56 string source_code = 2;
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
trace_events_to_json.h 25 // Converts trace events in the trace proto to a JSON string that can be
27 string TraceEventsToJson(const Trace &trace);
  /external/tensorflow/tensorflow/core/common_runtime/
build_graph_options.h 27 std::vector<string> feed_endpoints;
28 std::vector<string> fetch_endpoints;
32 std::vector<string> target_nodes;
41 string DebugString() const;
  /external/tensorflow/tensorflow/core/lib/strings/
base64.h 19 #include <string>
27 Status Base64Encode(StringPiece data, bool with_padding, string* encoded);
28 Status Base64Encode(StringPiece data, string* encoded); // with_padding=false.
33 Status Base64Decode(StringPiece data, string* decoded);
stringprintf.h 16 // Printf variants that place their output in a C++ string.
19 // string result = strings::Printf("%d %s\n", 10, "hello");
27 #include <string>
35 // Return a C++ string
36 extern string Printf(const char* format, ...)
37 // Tell the compiler to do printf format string checking.
40 // Append result to a supplied string
41 extern void Appendf(string* dst, const char* format, ...)
42 // Tell the compiler to do printf format string checking.
46 // string. All other routines are just convenience wrappers around it
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
auth_provider.h 19 #include <string>
33 virtual Status GetToken(string* t) = 0;
35 static Status GetToken(AuthProvider* provider, string* token) {
46 Status GetToken(string* token) override {

Completed in 1194 milliseconds

<<21222324252627282930>>