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

  /external/autotest/client/deps/ibusclient/src/
ibusclient.cc 43 // Converts |type_string| into GVariantClass.
44 GVariantClass GetGVariantClassFromStringOrDie(const std::string& type_string) {
45 if (type_string == "boolean") {
47 } else if (type_string == "int") {
49 } else if (type_string == "double") {
51 } else if (type_string == "string") {
53 } else if (GetElementType(type_string) != type_string) {
56 printf("FAIL (unknown type: %s)\n", type_string.c_str());
70 // dummy value by |type_string|. "boolean", "int", "double", or "string" ar
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_recv.py 203 t = param.type_string()
276 type_string = param.type_string()
281 print '%s %s const %s = (%s) (%s(pc + %s));' % (indent, type_string, param.name, type_string, cond, offset)
291 print '%s const %s %s = %s;' % (indent, type_string, param.name, location)
296 print '%s %s %s = %s%s;' % (indent, type_string, param.name, cond, location)
298 print '%s %s %s;' % (indent, type_string, param.name)
351 print ' %s = (%s) (pc + %s); break;' % (param.name, param.type_string(), o)
354 print ' %s = (%s) %s( (%s *) (pc + %s), %s ); break;' % (param.name, param.type_string(), swap_func, self.real_types[sub[0]], o, count_name
    [all...]
typeexpr.py 115 def __init__(self, type_string, extra_types = None):
118 if not type_string:
121 self.original_string = type_string
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
gl_XML.py 318 list.append( p.type_string() )
513 def type_string(self): member in class:gl_parameter
glX_proto_size.py 541 src = '(%s *)' % (p.type_string())
  /external/v8/tools/turbolizer/
node.js 65 var type_string = this.type;
66 if (type_string == undefined) return "";
67 if (type_string.length > 24) {
68 type_string = type_string.substr(0, 25) + "...";
70 return type_string;
  /art/runtime/interpreter/
interpreter_common.h 361 const char* type_string = dex_file->StringDataByIdx(string_idx); local
363 if (UNLIKELY(type_string == nullptr)) {
370 return type_string;
392 const char* type_string = GetStringDataByDexStringIndexOrThrow<do_access_check>(shadow_frame, local
394 if (UNLIKELY(type_string == nullptr)) {
399 char type_first_letter = type_string[0];
498 const char* type_string = GetStringDataByDexStringIndexOrThrow<do_access_check>(shadow_frame, local
500 if (UNLIKELY(do_access_check && type_string == nullptr)) {
506 char type_first_letter = type_string[0];
    [all...]
  /external/v8/test/cctest/interpreter/
generate-bytecode-expectations.cc 123 const char* type_string) {
124 if (strcmp(type_string, "number") == 0) {
126 } else if (strcmp(type_string, "string") == 0) {
128 } else if (strcmp(type_string, "mixed") == 0) {
  /hardware/libhardware/include/hardware/
context_hub.h 183 const char *type_string; // Type as a string. eg: "GPS" member in struct:physical_sensor_description_t
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
aclhelpers.py 92 for type_string, regex in re_map.items():
94 return type_string
  /external/chromium-trace/catapult/tracing/bin/
symbolize_trace 53 type_string = result[result.find('\0') + 1:]
54 return bool(re.match(r'\: (ELF|Mach-O) (32|64)-bit\b', type_string))
  /system/connectivity/shill/
device_info.cc 262 string type_string; local
264 if (GetDeviceInfoContents(iface_name, kInterfaceType, &type_string) &&
265 base::TrimString(type_string, "\n", &type_string) &&
266 !base::StringToInt(type_string, &arp_type)) {
    [all...]
  /external/autotest/scheduler/
monitor_db_functional_test.py 240 type_string = working_directory.rsplit('-', 1)[1]
241 pidfile_type = _PidfileType.get_value(type_string)
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/v8/src/crankshaft/
hydrogen-instructions.cc 1249 String* type_string = TypeOfString(constant, isolate()); local
    [all...]
  /prebuilts/tools/common/jasmin/
jasmin.jar 

Completed in 493 milliseconds