Home
last modified time | relevance | path

Searched refs:raw_type (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/trace_processor/
Dsqlite_utils.h412 const char* raw_type = in GetColumnsForTable() local
414 if (!name || !raw_type || !*name) { in GetColumnsForTable()
420 if (strcmp(raw_type, "UNSIGNED INT") == 0) { in GetColumnsForTable()
422 } else if (strcmp(raw_type, "BIG INT") == 0) { in GetColumnsForTable()
424 } else if (strcmp(raw_type, "INT") == 0) { in GetColumnsForTable()
426 } else if (strcmp(raw_type, "STRING") == 0) { in GetColumnsForTable()
428 } else if (strcmp(raw_type, "DOUBLE") == 0) { in GetColumnsForTable()
430 } else if (!*raw_type) { in GetColumnsForTable()
435 PERFETTO_FATAL("Unknown column type '%s' on table %s", raw_type, in GetColumnsForTable()
/external/v8/src/torque/
Dimplementation-visitor.cc1343 const Type* raw_type = declarations()->LookupType(decl->name); in Visit() local
1344 if (!raw_type->IsStructType()) { in Visit()
1349 const StructType* struct_type = StructType::cast(raw_type); in Visit()