HomeSort by relevance Sort by last modified time
    Searched refs:type_and_name (Results 1 - 9 of 9) sorted by null

  /external/grpc-grpc/tools/buildgen/plugins/
list_api.py 33 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()
  /external/perfetto/src/traced/probes/ftrace/
format_parser.cc 68 std::string type_and_name(buffer);
70 FtraceEvent::Field field{type_and_name, offset, size, is_signed == 1};
72 if (IsCommonFieldName(GetNameFromTypeAndName(type_and_name))) {
99 std::string GetNameFromTypeAndName(const std::string& type_and_name) {
100 size_t right = type_and_name.size();
104 if (type_and_name[type_and_name.size() - 1] == ']') {
105 right = type_and_name.rfind('[');
110 size_t left = type_and_name.rfind(' ', right);
115 std::string result = type_and_name.substr(left, right - left)
    [all...]
format_parser.h 33 std::string type_and_name; member in struct:perfetto::FtraceEvent::Field
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);
proto_translation_table.cc 44 std::string name = GetNameFromTypeAndName(field.type_and_name);
124 if (!InferFtraceType(ftrace_field.type_and_name, ftrace_field.size,
131 ftrace_field.type_and_name.c_str(), ftrace_field.size,
170 if (GetNameFromTypeAndName(ftrace_field.type_and_name) !=
251 bool InferFtraceType(const std::string& type_and_name,
260 if (Match(type_and_name.c_str(), R"(char [a-zA-Z_]+\[[0-9]+\])")) {
268 if (Contains(type_and_name, "__data_loc char[] ")) {
271 type_and_name.c_str(), size);
278 if (Contains(type_and_name, "char[] ")) {
282 if (Contains(type_and_name, "char * "))
    [all...]
proto_translation_table.h 67 bool InferFtraceType(const std::string& type_and_name,
  /external/perfetto/tools/ftrace_proto_gen/
proto_gen_utils.cc 239 if (std::regex_match(field.type_and_name, std::regex(R"(char \w+\[\d+\])")))
244 if (Contains(field.type_and_name, "char[] "))
246 if (Contains(field.type_and_name, "char * "))
250 if (StartsWith(field.type_and_name, "char *"))
254 if (StartsWith(field.type_and_name, "char ") && field.size == 0)
259 if (StartsWith(field.type_and_name, "ino_t ") ||
260 StartsWith(field.type_and_name, "i_ino ") ||
261 StartsWith(field.type_and_name, "dev_t ")) {
ftrace_proto_gen.cc 114 std::string name = GetNameFromTypeAndName(field.type_and_name);
  /external/google-breakpad/src/testing/scripts/generator/cpp/
ast.py     [all...]
  /external/googletest/googlemock/scripts/generator/cpp/
ast.py     [all...]

Completed in 503 milliseconds