| /external/protobuf/gtest/samples/ |
| sample2.h | 37 #include <string.h> 40 // A simple string class. 48 // Clones a 0-terminated C string, allocating memory using new. 55 // The default c'tor constructs a NULL string. 58 // Constructs a MyString by cloning a 0-terminated C string. 64 MyString(const MyString& string) : c_string_(NULL) { 65 Set(string.c_string_); 74 // Gets the 0-terminated C string this MyString object represents. 81 // Sets the 0-terminated C string this MyString object represents.
|
| /external/protobuf/python/google/protobuf/pyext/ |
| descriptor_database.h | 51 bool FindFileByName(const string& filename, 55 bool FindFileContainingSymbol(const string& symbol_name, 62 bool FindFileContainingExtension(const string& containing_type,
|
| /external/protobuf/src/google/protobuf/compiler/ |
| zip_writer.h | 76 bool Write(const string& filename, const string& contents); 81 string name;
|
| /external/protobuf/src/google/protobuf/util/ |
| json_util.h | 70 const string& type_url, 76 TypeResolver* resolver, const string& type_url, 85 const string& type_url, 86 const string& binary_input, 87 string* json_output, 91 const string& type_url, 92 const string& binary_input, 93 string* json_output) { 106 const string& type_url, 112 const string& type_url [all...] |
| /external/python/cpython2/Lib/json/ |
| scanner.py | 28 def _scan_once(string, idx): 30 nextchar = string[idx] 35 return parse_string(string, idx + 1, encoding, strict) 37 return parse_object((string, idx + 1), encoding, strict, 40 return parse_array((string, idx + 1), _scan_once) 41 elif nextchar == 'n' and string[idx:idx + 4] == 'null': 43 elif nextchar == 't' and string[idx:idx + 4] == 'true': 45 elif nextchar == 'f' and string[idx:idx + 5] == 'false': 48 m = match_number(string, idx) 56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN' [all...] |
| /external/skia/src/sksl/lex/ |
| RegexParser.h | 14 #include <string> 23 RegexNode parse(std::string source); 82 std::string fSource;
|
| /external/skqp/src/sksl/lex/ |
| RegexParser.h | 14 #include <string> 23 RegexNode parse(std::string source); 82 std::string fSource;
|
| /external/spirv-llvm/lib/SPIRV/ |
| SPIRV.h | 44 #include <string> 69 /// \brief Check if a string contains SPIR-V binary. 70 bool IsSPIRVBinary(std::string &Img); 78 std::string &ErrMsg, bool FromText, bool ToText); 83 bool ConvertSPIRV(std::string &Input, std::string &Out, 84 std::string &ErrMsg, bool ToText); 86 /// \brief Check if a string contains SPIR-V in internal text format. 87 bool IsSPIRVText(std::string &Img); 96 bool WriteSPIRV(llvm::Module *M, llvm::raw_ostream &OS, std::string &ErrMsg) [all...] |
| /external/spirv-llvm/lib/SPIRV/llvm/Support/ |
| SPIRV.h | 44 #include <string> 69 /// \brief Check if a string contains SPIR-V binary. 70 bool IsSPIRVBinary(std::string &Img); 78 std::string &ErrMsg, bool FromText, bool ToText); 83 bool ConvertSPIRV(std::string &Input, std::string &Out, 84 std::string &ErrMsg, bool ToText); 86 /// \brief Check if a string contains SPIR-V in internal text format. 87 bool IsSPIRVText(std::string &Img); 96 bool WriteSPIRV(llvm::Module *M, llvm::raw_ostream &OS, std::string &ErrMsg) [all...] |
| /external/swiftshader/third_party/LLVM/utils/TableGen/ |
| FixedLenDecoderEmitter.h | 33 std::string Decoder; 35 OperandInfo(std::string D) 53 std::string PredicateNamespace, 54 std::string GPrefix = "if (", 55 std::string GPostfix = " == MCDisassembler::Fail) return MCDisassembler::Fail;", 56 std::string ROK = "MCDisassembler::Success", 57 std::string RFail = "MCDisassembler::Fail", 58 std::string L = "") : 75 std::string PredicateNamespace; 76 std::string GuardPrefix, GuardPostfix [all...] |
| /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| Host.h | 29 #include <string> 45 /// The target triple is a string in the format of: 49 std::string getDefaultTargetTriple(); 53 std::string getProcessTriple(); 66 /// \param Features - A string mapping feature names to either
|
| /external/swiftshader/third_party/subzero/src/ |
| PNaClTranslator.h | 21 #include <string> 42 void translate(const std::string &IRFilename, 46 void translateBuffer(const std::string &IRFilename,
|
| /external/tensorflow/tensorflow/compiler/tf2xla/ |
| dump_graph.cc | 33 std::unordered_map<string, int> counts; 36 string MakeUniquePath(string name) { 54 string path = strings::StrCat(flags->tf_dump_graph_prefix, "/", name); 64 string DumpGraphDefToFile(const string& name, GraphDef const& graph_def) { 65 string path = MakeUniquePath(name); 75 string DumpGraphToFile(const string& name, Graph const& graph, 85 string DumpFunctionDefToFile(const string& name, FunctionDef const& fdef) [all...] |
| /external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
| cpu_compiler.h | 51 CpuAotCompilationOptions(string triple, string cpu_name, string features, 52 string entry_point_name, 59 const string& triple() const { return triple_; } 61 const string& cpu_name() const { return cpu_name_; } 63 const string& features() const { return features_; } 65 const string& entry_point_name() const { return entry_point_name_; } 70 const string triple_; 71 const string cpu_name_ [all...] |
| /external/tensorflow/tensorflow/contrib/lite/testing/ |
| join.h | 20 #include <string> 27 string Join(T* data, size_t len, const string& delimiter) {
|
| /external/tensorflow/tensorflow/contrib/lite/toco/tflite/ |
| import.h | 25 // Parse the given string as TF Lite flatbuffer and return a new tf.mini model. 27 const string &input_file_contents); 32 using TensorsTable = std::vector<string>; 35 // builtin, the string representation of the corresponding enum value is used 37 using OperatorsTable = std::vector<string>;
|
| /external/tensorflow/tensorflow/contrib/saved_model/cc/saved_model/ |
| signature_def_utils_test.cc | 45 const string kSignatureKey = "my_signature"; 46 const string kMethodName = "my_method"; 47 const string kInput1Key = "input_one_key"; 48 const string kInput1Name = "input_one"; 49 const string kInput2Key = "input_two_key"; 50 const string kInput2Name = "input_two"; 51 const string kOutput1Key = "output_one_key"; 52 const string kOutput1Name = "output_one"; 53 const string kOutput2Key = "output_two_key"; 54 const string kOutput2Name = "output_two" [all...] |
| /external/tensorflow/tensorflow/core/common_runtime/ |
| graph_runner.h | 20 #include <string> 55 typedef std::vector<std::pair<string, Tensor>> NamedTensorList; 58 const std::vector<string>& output_names,
|
| session.cc | 16 #include <string> 30 const std::vector<std::pair<string, Tensor> >& inputs, 31 const std::vector<string>& output_tensor_names, 32 const std::vector<string>& target_node_names, 38 Status Session::PRunSetup(const std::vector<string>& input_names, 39 const std::vector<string>& output_names, 40 const std::vector<string>& target_nodes, 41 string* handle) { 46 Status Session::PRun(const string& handle, 47 const std::vector<std::pair<string, Tensor> >& inputs [all...] |
| session_factory.h | 19 #include <string> 59 const std::vector<string>& containers) { 64 static void Register(const string& runtime_type, SessionFactory* factory);
|
| /external/tensorflow/tensorflow/core/kernels/data/ |
| stats_aggregator.h | 19 #include <string> 30 // by a string name. 47 virtual void AddToHistogram(const string& name, 76 string DebugString() { return "StatsAggregatorResource"; }
|
| /external/tensorflow/tensorflow/core/platform/ |
| test.cc | 29 string TmpDir() { return FLAGS_test_tmpdir; } 32 string TmpDir() { 44 string SrcDir() {
|
| /external/v8/testing/gtest/samples/ |
| sample2.h | 37 #include <string.h> 40 // A simple string class. 47 // Clones a 0-terminated C string, allocating memory using new. 54 // The default c'tor constructs a NULL string. 57 // Constructs a MyString by cloning a 0-terminated C string. 63 MyString(const MyString& string) : c_string_(NULL) { 64 Set(string.c_string_); 73 // Gets the 0-terminated C string this MyString object represents. 80 // Sets the 0-terminated C string this MyString object represents.
|
| /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
| sample2.h | 37 #include <string.h> 40 // A simple string class. 47 // Clones a 0-terminated C string, allocating memory using new. 54 // The default c'tor constructs a NULL string. 57 // Constructs a MyString by cloning a 0-terminated C string. 63 MyString(const MyString& string) : c_string_(NULL) { 64 Set(string.c_string_); 73 // Gets the 0-terminated C string this MyString object represents. 80 // Sets the 0-terminated C string this MyString object represents.
|
| /external/webrtc/talk/app/webrtc/ |
| sctputils.h | 31 #include <string> 46 std::string* label, 51 bool WriteDataChannelOpenMessage(const std::string& label,
|