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

<<211212213214215216217218219220>>

  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.h 28 extern llvm::cl::list<std::string> ExcludeTypes;
29 extern llvm::cl::list<std::string> ExcludeSymbols;
30 extern llvm::cl::list<std::string> ExcludeCompilands;
31 extern llvm::cl::list<std::string> IncludeTypes;
32 extern llvm::cl::list<std::string> IncludeSymbols;
33 extern llvm::cl::list<std::string> IncludeCompilands;
45 extern llvm::cl::opt<std::string> DumpStreamDataIdx;
46 extern llvm::cl::opt<std::string> DumpStreamDataName;
65 extern llvm::cl::list<std::string> InputFilename;
  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
TestNanolets.java 76 String[] args = {};
85 public static void main(String[] args) {
87 String uri = "def";
93 String uri = "photos/abc/def";
113 String string = new String(readContents(entity), "UTF-8"); local
115 "<html><body>User handler. Method: GET<br><h1>Uri parameters:</h1><div> Param: id&nbsp;Value: blabla</div><h1>Query parameters:</h1></body></html>", string);
121 string = new String(readContents(entity), "UTF-8")
150 String string = new String(readContents(entity), "UTF-8"); local
162 String string = new String(readContents(entity), "UTF-8"); local
174 String string = new String(readContents(entity), "UTF-8"); local
186 String string = new String(readContents(entity), "UTF-8"); local
198 String string = new String(readContents(entity), "UTF-8"); local
243 String string = new String(readContents(entity), "UTF-8"); local
255 String string = new String(readContents(entity), "UTF-8"); local
267 String string = new String(readContents(entity), "UTF-8"); local
286 String string = new String(readContents(entity), "UTF-8"); local
328 String string = new String(readContents(entity), "UTF-8"); local
    [all...]
  /external/oj-libjdwp/src/share/npt/
utf.c 32 #include <string.h>
145 utf8sToUtf8mLength(struct UtfInst *ui, jbyte *string, int length)
154 byte = (unsigned char)string[i];
162 if ( (i+1) >= length || (string[i+1] & 0xC0) != 0x80 ) {
169 if ( (i+2) >= length || (string[i+1] & 0xC0) != 0x80
170 || (string[i+2] & 0xC0) != 0x80 ) {
177 if ( (i+3) >= length || (string[i+1] & 0xC0) != 0x80
178 || (string[i+2] & 0xC0) != 0x80
179 || (string[i+3] & 0xC0) != 0x80 ) {
203 utf8sToUtf8m(struct UtfInst *ui, jbyte *string, int length, jbyte *newString, int newLength
    [all...]
  /external/parameter-framework/upstream/parameter/
ArrayParameter.h 37 CArrayParameter(const std::string &strName, const CTypeElement *pTypeElement);
52 bool access(std::vector<std::string> &astrValues, bool bSet,
57 virtual bool accessValue(CPathNavigator &pathNavigator, std::string &strValue, bool bSet,
63 virtual void showProperties(std::string &strResult) const;
69 bool setValues(size_t uiStartIndex, size_t offset, const std::string &strValue,
72 std::string getValues(size_t baseOffset, CParameterAccessContext &parameterAccessContext) const;
73 std::string logValue(CParameterAccessContext &context) const override;
83 bool doSetValue(const std::string &strValue, size_t offset,
85 void doGetValue(std::string &strValue, size_t offset,
ParameterType.h 39 #include <string>
47 CParameterType(const std::string &strName);
54 std::string getUnit() const;
55 void setUnit(const std::string &strUnit);
64 // String
65 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
67 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
107 virtual void showProperties(std::string &strResult) const;
164 std::string _strUnit;
166 static const std::string gUnitPropertyName
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message_field.h 39 #include <string>
71 void GenerateArenaManipulationCode(const map<string, string>& variables,
78 map<string, string> variables_;
105 const map<string, string>& variables, io::Printer* printer) const;
140 map<string, string> variables_;
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_field.h 35 #include <string>
70 virtual void DetermineForwardDeclarations(set<string>* fwd_decls) const;
85 string variable(const char* key) const {
90 const string& field_flags = variable("fieldflags");
91 return field_flags.find("GPBFieldTextFormatNameCustom") != string::npos;
93 string generated_objc_name() const { return variable("name"); }
94 string raw_field_name() const { return variable("raw_field_name"); }
103 map<string, string> variables_;
objectivec_map_field.cc 32 #include <string>
70 return (isKey ? "String" : "Object");
102 std::vector<string> field_flags;
106 string::npos) {
110 const string& value_field_flags =
112 if (value_field_flags.find("GPBFieldHasDefaultValue") != string::npos) {
115 if (value_field_flags.find("GPBFieldHasEnumDescriptor") != string::npos) {
132 string class_name("GPB");
165 set<string>* fwd_decls) const {
170 const string& value_storage_type
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_database.cc 64 string path = file.has_package() ? file.package() : string();
87 const string& name, Value value) {
100 typename map<string, Value>::iterator iter = FindLastLessOrEqual(name);
104 by_symbol_.insert(typename map<string, Value>::value_type(name, value));
131 by_symbol_.insert(iter, typename map<string, Value>::value_type(name, value));
175 const string& filename) {
181 const string& name) {
182 typename map<string, Value>::iterator iter = FindLastLessOrEqual(name);
190 const string& containing_type
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_get_none.py 5 import os, string
29 for x in string.ascii_letters:
35 data = d.get(string.ascii_letters[0])
36 self.assertEqual(data, string.ascii_letters[0]*40)
46 self.assertEqual(count, len(string.ascii_letters))
57 for x in string.ascii_letters:
63 data = d.get(string.ascii_letters[0])
64 self.assertEqual(data, string.ascii_letters[0]*40)
80 self.assertEqual(count, len(string.ascii_letters))
  /external/skia/tools/bookmaker/
selfCheck.cpp 71 void checkMethod(string topic, const Definition* csChild, vector<string>* reported) {
89 string subtopic(child->fContentStart,
91 string fullname = topic + '_' + subtopic;
116 string topicName = topic->fName;
117 vector<string> methodNames;
118 vector<string> reported;
119 string prefix = cs->fName + "::";
124 string fullname = topicName + '_' + missing;
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 59 #include <string>
77 typedef SPIRVMap<Type, std::string> MapType; \
174 inline std::vector<std::string>
175 getVec(const std::string &S, char Delim) {
176 std::vector<std::string> Strs;
178 std::string Item;
184 inline std::unordered_set<std::string>
185 getUnordSet(const std::string &S, char Delim = ' ') {
186 std::unordered_set<std::string> Strs;
188 std::string Item
    [all...]
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOModule.h 25 #include <string>
53 std::string& errMsg);
56 std::string& errMsg);
61 std::string& errMsg);
63 std::string& errMsg);
79 bool ParseSymbols(std::string &errMsg);
90 std::string &errMsg);
98 std::string& name);
104 std::string& errMsg);
  /external/swiftshader/third_party/LLVM/unittests/Support/
raw_ostream_test.cpp 19 template<typename T> std::string printToString(const T &Value) {
20 std::string res;
28 template<typename T> std::string printToString(const T &Value,
42 template<typename T> std::string printToStringUnbuffered(const T &Value) {
43 std::string res;
54 // String
56 EXPECT_EQ("hello", printToString(std::string("hello")));
85 // String
87 EXPECT_EQ("hello", printToStringUnbuffered(std::string("hello")));
121 std::string Str
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_execution_profile_test.cc 32 std::vector<std::vector<string>> SplitIntoLinesAndWords(
34 std::vector<std::vector<string>> result;
35 for (const string& line : tensorflow::str_util::Split(lines, '\n')) {
36 std::vector<string> words;
37 for (const string& word : tensorflow::str_util::Split(line, ' ')) {
87 string rendered_profile = execution_profile.ToString(
89 std::vector<std::vector<string>> lines_and_words =
93 const std::vector<string>& line_2 = lines_and_words[2];
94 const std::vector<string>& line_3 = lines_and_words[3];
  /external/tensorflow/tensorflow/compiler/xla/
xla.proto 58 repeated string opname_substrings_to_suffix = 5;
67 string xla_generate_hlo_graph = 1;
73 string xla_hlo_graph_path = 4;
80 string xla_log_hlo_text = 6;
83 string xla_generate_hlo_text_to = 7;
87 string xla_dump_optimized_hlo_proto_to = 8;
93 string xla_dump_computations_to = 10;
97 string xla_dump_executions_to = 11;
101 repeated string xla_disable_hlo_passes = 30;
116 // Embed the compiler IR as a string in the executable
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/
predictor_test.cc 37 string TestDataPath() {
38 return string(StrCat(tensorflow::testing::TensorFlowSrcRoot(), "/",
45 const string &response = item.GetText();
82 IncludeAnyResponesIn(std::unordered_set<string>({"Thanks very much"})));
100 EXPECT_THAT(&predictions, IncludeAnyResponesIn(std::unordered_set<string>(
123 string line;
126 const std::vector<string> fields = absl::StrSplit(line, '\t');
132 const string &msg = fields[0];
142 EXPECT_THAT(&predictions, IncludeAnyResponesIn(std::unordered_set<string>(
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
loader.cc 30 string AddCommas(T n) {
32 string s = strings::StrCat(n);
49 string path;
50 string events;
51 string experiment_name;
52 string run_name;
53 string user_name;
61 string usage = Flags::Usage(argv[0], flag_list);
99 string record;
  /external/tensorflow/tensorflow/core/common_runtime/
device_mgr.cc 33 for (const string& name :
38 for (const string& name :
70 string DeviceMgr::DebugString() const {
71 string out;
78 string DeviceMgr::DeviceMappingString() const {
79 string out;
105 void DeviceMgr::ClearContainers(gtl::ArraySlice<string> containers) const {
112 for (const string& c : containers) {
122 int DeviceMgr::NumDeviceType(const string& type) const {
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_cache_logger.cc 71 void WorkerCacheLogger::Save(const string& device, int64 step_id,
87 const string& tensor_name,
88 const string& src_device,
89 const string& dst_device,
97 const string& tensor_name,
98 const string& src_device,
99 const string& dst_device,
100 int64 bytes, const string& details,
101 const string& transfer_method_name) {
  /external/tensorflow/tensorflow/core/framework/
log_memory.cc 23 const string LogMemory::kLogMemoryLabel = "__LOG_MEMORY__";
32 string type_name = proto.GetTypeName();
34 if (index != string::npos) type_name = type_name.substr(index + 1);
41 void LogMemory::RecordStep(const int64 step_id, const string& handle) {
48 void LogMemory::RecordTensorAllocation(const string& kernel_name,
59 const string& allocator_name) {
66 void LogMemory::RecordTensorOutput(const string& kernel_name,
77 void LogMemory::RecordRawAllocation(const string& operation,
90 void LogMemory::RecordRawDeallocation(const string& operation,
  /external/tensorflow/tensorflow/core/graph/
graph_def_builder.h 34 // static const string kOpName = "Identity";
45 // static const string kOpName = "Identity";
102 // Returns a string representation of the status associated with *this.
103 // Returns the string `"OK"` if the status doesn't have any error.
104 string StatusToString() const { return status_->ToString(); }
109 string GetNameForOp(StringPiece op) const;
138 string name_;
139 string device_;
141 std::vector<std::pair<string, AttrValue>> attrs_;
174 bool HasFunction(const string& name)
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties.h 61 bool HasInputProperties(const string& name) const;
62 bool HasOutputProperties(const string& name) const;
64 const string& node_name) const;
66 const string& node_name) const;
106 const std::unordered_map<string, std::unordered_set<int>>& fed_ports,
112 const std::unordered_map<string, std::unordered_set<int>>& fed_ports,
120 const std::unordered_map<string, std::unordered_set<int>>& fed_ports,
125 std::map<string, std::vector<OpInfo::TensorProperties>> input_properties_;
126 std::map<string, std::vector<OpInfo::TensorProperties>> output_properties_;
  /external/tensorflow/tensorflow/core/kernels/
merge_v2_checkpoints_op_test.cc 16 #include <string>
36 void WriteCheckpoint(const string& prefix, gtl::ArraySlice<string> names,
66 const std::vector<string> prefixes = {
71 const string& kMergedPrefix = prefixes[2];
82 AddInput<string>(TensorShape({2}),
83 [&prefixes](int i) -> string { return prefixes[i]; });
85 AddInput<string>(TensorShape({}), [kMergedPrefix](int unused) -> string {
  /external/webrtc/webrtc/base/
stringutils.cc 96 std::string *s) {
98 while ((pos = s->find(search, pos, search_len)) != std::string::npos) {
122 std::string string_trim(const std::string& s) {
123 std::string::size_type first = s.find_first_not_of(kWhitespace);
124 std::string::size_type last = s.find_last_not_of(kWhitespace);
126 if (first == std::string::npos || last == std::string::npos) {
127 return std::string("");

Completed in 1795 milliseconds

<<211212213214215216217218219220>>