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

<<121122123124125126127128129130>>

  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 73 string text_;
76 void AddError(const string& filename, int line, int column,
77 const string& message) {
90 void ExpectFileMatches(const string& virtual_filename,
91 const string& physical_filename) {
92 string* expected_contents = FindPtrOrNull(files_, virtual_filename);
96 string actual_contents;
109 virtual io::ZeroCopyOutputStream* Open(const string& filename) {
110 string** map_slot = &files_[filename];
112 *map_slot = new string;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generated_code.rb 15 optional :optional_string, :string, 8
26 repeated :repeated_string, :string, 28
30 map :map_int32_string, :int32, :string, 61
31 map :map_int64_string, :int64, :string, 62
32 map :map_uint32_string, :uint32, :string, 63
33 map :map_uint64_string, :uint64, :string, 64
34 map :map_bool_string, :bool, :string, 65
35 map :map_string_string, :string, :string, 66
36 map :map_string_msg, :string, :message, 67, "A.B.C.TestMessage
    [all...]
  /external/python/cpython3/Lib/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, strict)
37 return parse_object((string, idx + 1), 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/tensorflow/tensorflow/compiler/xla/legacy_flags/
debug_options_parsers.h 31 string comma_separated_values) {
32 std::vector<string> extra_options_parts =
39 if (eq_pos == string::npos) {
42 string value = "";
58 // The NAME string (with its preceding semicolon) is optional.
60 HloReducePrecisionOptions* options, string option_string) {
61 // Split off "LOCATION" from remainder of string.
62 std::vector<string> eq_split =
67 string& location = eq_split[0];
82 // Split off "E,M" from remainder of string
    [all...]
  /external/tensorflow/tensorflow/core/api_def/
update_api_def_test.cc 27 const string op_def_text = R"opdef(
35 const string op_def_text_with_doc = R"opdef(
53 const string op_text = R"(
78 const string op_def_text = R"opdef(
92 const string op_def_text_with_doc = R"opdef(
115 const string op1_text = R"(
122 const string op2_text = R"(
129 const string op3_text = R"(
141 string updated_text =
144 EXPECT_EQ(string::npos, updated_text.find("Summary for Op2"))
    [all...]
  /external/tensorflow/tensorflow/core/util/
device_name_utils.h 19 #include <string>
26 // In TensorFlow a device name is a string of the following form:
49 static string FullName(const string& job, int replica, int task,
50 const string& type, int id);
78 string job;
84 string type;
94 static string CanonicalizeDeviceName(StringPiece fullname);
136 static string LocalName(StringPiece type, int id);
140 static string LocalName(StringPiece fullname)
    [all...]
  /external/tensorflow/tensorflow/python/eager/
python_eager_op_gen.cc 47 string AttrVarName(const string& attr_name,
48 std::unordered_map<string, string>* attr_expressions) {
49 const string var = strings::StrCat("_attr_", attr_name);
54 void AddInferredAttr(const string& indentation, const string& attr_name,
55 const string& value_expression, string* result,
56 std::unordered_map<string, string>* attr_expressions)
    [all...]
  /external/webrtc/webrtc/test/testsupport/
iosfileutils.mm 18 #include <string.h>
28 NSString* NSStringFromStdString(const std::string& stdString) {
29 // std::string may contain null termination character so we construct
36 std::string StdStringFromNSString(NSString* nsString) {
38 return std::string(reinterpret_cast<const char*>([charData bytes]),
45 std::string IOSResourcePath(std::string name, std::string extension) {
  /frameworks/base/core/proto/android/os/
ps.proto 32 optional string label = 1;
33 // String representation of uid.
34 optional string user = 2;
53 optional string wchan = 8;
55 optional string addr = 9;
82 optional string rtprio = 13; // Number or -
112 optional string time = 16;
113 // Command with all its arguments as a string.
114 optional string cmd = 17;
  /frameworks/base/media/mca/filterfw/native/core/
native_program.cpp 23 #include <string>
45 bool NativeProgram::OpenLibrary(const std::string& lib_name) {
57 bool NativeProgram::BindProcessFunction(const std::string& func_name) {
68 bool NativeProgram::BindInitFunction(const std::string& func_name) {
75 bool NativeProgram::BindSetValueFunction(const std::string& func_name) {
82 bool NativeProgram::BindGetValueFunction(const std::string& func_name) {
89 bool NativeProgram::BindResetFunction(const std::string& func_name) {
96 bool NativeProgram::BindTeardownFunction(const std::string& func_name) {
126 bool NativeProgram::CallSetValue(const std::string& key, const std::string& value)
    [all...]
  /frameworks/native/cmds/lshal/
TableEntry.h 22 #include <string>
71 std::string interfaceName{};
72 std::string transport{};
76 std::string serverCmdline{};
79 std::vector<std::string> clientCmdlines{};
82 std::string hash{};
92 std::string getThreadUsage() const {
100 std::string isReleased() const;
102 std::string getField(TableColumnType type) const;
105 std::string to_string() const
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
CallTypeHelper.java 61 incomingName = resources.getString(R.string.type_incoming);
62 incomingPulledName = resources.getString(R.string.type_incoming_pulled);
63 outgoingName = resources.getString(R.string.type_outgoing);
64 outgoingPulledName = resources.getString(R.string.type_outgoing_pulled);
65 missedName = resources.getString(R.string.type_missed);
66 incomingVideoName = resources.getString(R.string.type_incoming_video);
67 incomingVideoPulledName = resources.getString(R.string.type_incoming_video_pulled);
68 outgoingVideoName = resources.getString(R.string.type_outgoing_video);
69 outgoingVideoPulledName = resources.getString(R.string.type_outgoing_video_pulled);
70 missedVideoName = resources.getString(R.string.type_missed_video)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/LineEditor/
LineEditor.h 17 #include <string>
40 /// \return The line, or llvm::Optional<std::string>() on EOF.
41 llvm::Optional<std::string> readLine() const;
46 static std::string getDefaultHistoryPath(StringRef ProgName);
60 std::string Text;
63 std::vector<std::string> Completions;
69 Completion(const std::string &TypedText, const std::string &DisplayText)
74 std::string TypedText;
78 std::string DisplayText
    [all...]

Completed in 806 milliseconds

<<121122123124125126127128129130>>