Home
last modified time | relevance | path

Searched refs:type_and_name (Results 1 – 25 of 75) sorted by relevance

123

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/traced/probes/ftrace/
H A Dformat_parser.cc68 std::string type_and_name(buffer); in ParseFtraceEventBody() local
70 FtraceEvent::Field field{type_and_name, offset, size, is_signed == 1}; in ParseFtraceEventBody()
72 if (IsCommonFieldName(GetNameFromTypeAndName(type_and_name))) { in ParseFtraceEventBody()
100 std::string GetNameFromTypeAndName(const std::string& type_and_name) { in GetNameFromTypeAndName() argument
101 size_t right = type_and_name.size(); in GetNameFromTypeAndName()
105 if (type_and_name[type_and_name.size() - 1] == ']') { in GetNameFromTypeAndName()
106 right = type_and_name.rfind('['); in GetNameFromTypeAndName()
111 size_t left = type_and_name.rfind(' ', right); in GetNameFromTypeAndName()
116 std::string result = type_and_name.substr(left, right - left); in GetNameFromTypeAndName()
195 *os << "FtraceEvent::Field(" << field.type_and_name << ", " << field.offset in PrintTo()
H A Dproto_translation_table.cc254 bool InferFtraceType(const std::string& type_and_name, in InferFtraceType() argument
271 if (Contains(type_and_name, "__data_loc char[] ")) { in InferFtraceType()
274 type_and_name.c_str(), size); in InferFtraceType()
281 if (Contains(type_and_name, "char[] ")) { in InferFtraceType()
285 if (Contains(type_and_name, "char * ")) { in InferFtraceType()
296 if (base::StartsWith(type_and_name, "bool ")) { in InferFtraceType()
301 if (base::StartsWith(type_and_name, "ino_t ") || in InferFtraceType()
302 base::StartsWith(type_and_name, "i_ino ")) { in InferFtraceType()
312 if (base::StartsWith(type_and_name, "dev_t ")) { in InferFtraceType()
328 if (Contains(type_and_name, "common_pid") && size == 4) { in InferFtraceType()
[all …]
H A Dformat_parser.h33 std::string type_and_name; member
39 return std::tie(type_and_name, offset, size, is_signed) ==
40 std::tie(other.type_and_name, other.offset, other.size,
54 std::string GetNameFromTypeAndName(const std::string& type_and_name);
H A Dproto_translation_table.h73 bool InferFtraceType(const std::string& type_and_name,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/traced/probes/ftrace/
H A Dformat_parser.cc68 std::string type_and_name(buffer); in ParseFtraceEventBody() local
70 FtraceEvent::Field field{type_and_name, offset, size, is_signed == 1}; in ParseFtraceEventBody()
72 if (IsCommonFieldName(GetNameFromTypeAndName(type_and_name))) { in ParseFtraceEventBody()
100 std::string GetNameFromTypeAndName(const std::string& type_and_name) { in GetNameFromTypeAndName() argument
101 size_t right = type_and_name.size(); in GetNameFromTypeAndName()
105 if (type_and_name[type_and_name.size() - 1] == ']') { in GetNameFromTypeAndName()
106 right = type_and_name.rfind('['); in GetNameFromTypeAndName()
111 size_t left = type_and_name.rfind(' ', right); in GetNameFromTypeAndName()
116 std::string result = type_and_name.substr(left, right - left); in GetNameFromTypeAndName()
195 *os << "FtraceEvent::Field(" << field.type_and_name << ", " << field.offset in PrintTo()
H A Dproto_translation_table.cc255 bool InferFtraceType(const std::string& type_and_name, in InferFtraceType() argument
272 if (Contains(type_and_name, "__data_loc char[] ")) { in InferFtraceType()
275 type_and_name.c_str(), size); in InferFtraceType()
282 if (Contains(type_and_name, "char[] ")) { in InferFtraceType()
286 if (Contains(type_and_name, "char * ")) { in InferFtraceType()
293 if ((base::StartsWith(type_and_name, "void*") || in InferFtraceType()
294 base::StartsWith(type_and_name, "void *")) && in InferFtraceType()
306 if (base::StartsWith(type_and_name, "bool ")) { in InferFtraceType()
311 if (base::StartsWith(type_and_name, "ino_t ") || in InferFtraceType()
312 base::StartsWith(type_and_name, "i_ino ")) { in InferFtraceType()
[all …]
H A Dformat_parser.h33 std::string type_and_name; member
39 return std::tie(type_and_name, offset, size, is_signed) ==
40 std::tie(other.type_and_name, other.offset, other.size,
54 std::string GetNameFromTypeAndName(const std::string& type_and_name);
H A Dproto_translation_table.h74 bool InferFtraceType(const std::string& type_and_name,
/dports/devel/grpc134/grpc-1.34.1/tools/buildgen/plugins/
H A Dlist_api.py33 type_and_name, args_and_close = api_declaration.split('(', 1)
35 last_space = type_and_name.rfind(' ')
36 last_star = type_and_name.rfind('*')
38 return_type = type_and_name[0:type_end + 1].strip()
39 name = type_and_name[type_end + 1:].strip()
/dports/devel/grpc/grpc-1.42.0/tools/buildgen/plugins/
H A Dlist_api.py34 type_and_name, args_and_close = api_declaration.split('(', 1)
36 last_space = type_and_name.rfind(' ')
37 last_star = type_and_name.rfind('*')
39 return_type = type_and_name[0:type_end + 1].strip()
40 name = type_and_name[type_end + 1:].strip()
/dports/devel/grpc130/grpc-1.30.2/tools/buildgen/plugins/
H A Dlist_api.py33 type_and_name, args_and_close = api_declaration.split('(', 1)
35 last_space = type_and_name.rfind(' ')
36 last_star = type_and_name.rfind('*')
38 return_type = type_and_name[0:type_end + 1].strip()
39 name = type_and_name[type_end + 1:].strip()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/tools/buildgen/plugins/
H A Dlist_api.py33 type_and_name, args_and_close = api_declaration.split('(', 1)
35 last_space = type_and_name.rfind(' ')
36 last_star = type_and_name.rfind('*')
38 return_type = type_and_name[0:type_end + 1].strip()
39 name = type_and_name[type_end + 1:].strip()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/tools/ftrace_proto_gen/
H A Dproto_gen_utils.cc199 if (std::regex_match(field.type_and_name, std::regex(R"(char \w+\[\d+\])"))) in InferProtoType()
204 if (Contains(field.type_and_name, "char[] ")) in InferProtoType()
206 if (Contains(field.type_and_name, "char * ")) in InferProtoType()
210 if (StartsWith(field.type_and_name, "char *")) in InferProtoType()
214 if (StartsWith(field.type_and_name, "char ") && field.size == 0) in InferProtoType()
219 if (StartsWith(field.type_and_name, "ino_t ") || in InferProtoType()
220 StartsWith(field.type_and_name, "i_ino ") || in InferProtoType()
221 StartsWith(field.type_and_name, "dev_t ")) { in InferProtoType()
H A Dftrace_proto_gen.cc99 std::string name = GetNameFromTypeAndName(field.type_and_name); in GenerateProto()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/tools/ftrace_proto_gen/
H A Dproto_gen_utils.cc199 if (std::regex_match(field.type_and_name, std::regex(R"(char \w+\[\d+\])"))) in InferProtoType()
204 if (Contains(field.type_and_name, "char[] ")) in InferProtoType()
206 if (Contains(field.type_and_name, "char * ")) in InferProtoType()
210 if (StartsWith(field.type_and_name, "char *")) in InferProtoType()
214 if (StartsWith(field.type_and_name, "char ") && field.size == 0) in InferProtoType()
219 if (StartsWith(field.type_and_name, "ino_t ") || in InferProtoType()
220 StartsWith(field.type_and_name, "i_ino ") || in InferProtoType()
221 StartsWith(field.type_and_name, "dev_t ")) { in InferProtoType()
H A Dftrace_proto_gen.cc97 std::string name = GetNameFromTypeAndName(field.type_and_name); in GenerateProto()
/dports/math/symengine/symengine-0.8.1/symengine/utilities/teuchos/
H A DTeuchos_RCPNode.cpp216 const std::string type_and_name( extra_data.typeName() + std::string(":") + name ); in set_extra_data() local
217 extra_data_map_t::iterator itr = extra_data_map_->find(type_and_name); in set_extra_data()
221 ,"Error, the type:name pair \'" << type_and_name in set_extra_data()
230 (*extra_data_map_)[type_and_name] = in set_extra_data()
246 const std::string type_and_name( type_name + std::string(":") + name ); in get_extra_data() local
249 ,"Error, the type:name pair \'" << type_and_name << "\' is not found!" ); in get_extra_data()
260 const std::string type_and_name( type_name + std::string(":") + name ); in get_optional_extra_data() local
261 extra_data_map_t::iterator itr = extra_data_map_->find(type_and_name); in get_optional_extra_data()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/teuchos/core/src/
H A DTeuchos_RCPNode.cpp225 const std::string type_and_name( extra_data.typeName() + std::string(":") + name ); in set_extra_data() local
226 extra_data_map_t::iterator itr = extra_data_map_->find(type_and_name); in set_extra_data()
230 ,"Error, the type:name pair \'" << type_and_name in set_extra_data()
239 (*extra_data_map_)[type_and_name] = in set_extra_data()
255 const std::string type_and_name( type_name + std::string(":") + name ); in get_extra_data() local
258 ,"Error, the type:name pair \'" << type_and_name << "\' is not found!" ); in get_extra_data()
269 const std::string type_and_name( type_name + std::string(":") + name ); in get_optional_extra_data() local
270 extra_data_map_t::iterator itr = extra_data_map_->find(type_and_name); in get_optional_extra_data()
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/gyp/util/
H A Dprotoresources.py229 def _StripStyles(self, entry, type_and_name): argument
235 full_name = '{}/{}'.format(type_and_name, entry.key.name)
249 type_and_name = '{}/{}'.format(type_name, entry.name)
250 if not self.keep_predicate(type_and_name):
251 logging.debug('Stripped %s/%s', self.partial_path, type_and_name)
254 self._StripStyles(entry, type_and_name)
/dports/lang/v8/v8-9.6.180.12/build/android/gyp/util/
H A Dprotoresources.py229 def _StripStyles(self, entry, type_and_name): argument
235 full_name = '{}/{}'.format(type_and_name, entry.key.name)
249 type_and_name = '{}/{}'.format(type_name, entry.name)
250 if not self.keep_predicate(type_and_name):
251 logging.debug('Stripped %s/%s', self.partial_path, type_and_name)
254 self._StripStyles(entry, type_and_name)
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/gyp/util/
H A Dprotoresources.py229 def _StripStyles(self, entry, type_and_name): argument
235 full_name = '{}/{}'.format(type_and_name, entry.key.name)
249 type_and_name = '{}/{}'.format(type_name, entry.name)
250 if not self.keep_predicate(type_and_name):
251 logging.debug('Stripped %s/%s', self.partial_path, type_and_name)
254 self._StripStyles(entry, type_and_name)
/dports/converters/tnef/tnef-1.4.12/src/
H A Dattr.c232 uint32 type_and_name; in attr_read() local
242 type_and_name = geti32(in); in attr_read()
244 attr->type = (type_and_name >> 16); in attr_read()
245 attr->name = ((type_and_name << 16) >> 16); in attr_read()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/Scripts/webkit2/
H A Dmessages.py140 …return [Parameter(*type_and_name.rsplit(' ', 1)) for type_and_name in parameter_string.split(', ')]
/dports/biology/vcflib/vcflib-1.0.2/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1246 type_and_name = [struct]
1247 type_and_name.extend(name_tokens)
1248 type_and_name.extend((var_token, next_token))
1249 return self._GetMethod(type_and_name, 0, None, False)
/dports/math/suitesparse-klu/SuiteSparse-5.10.1/GraphBLAS/CUDA/test/googlemock/scripts/generator/cpp/
H A Dast.py1285 type_and_name = [struct]
1286 type_and_name.extend(name_tokens)
1287 type_and_name.extend((var_token, next_token))
1288 return self._GetMethod(type_and_name, 0, None, False)

123