/external/clang/utils/TableGen/ |
NeonEmitter.cpp | 429 static std::string TypeString(const char mod, StringRef typestr) { 443 char type = ClassifyType(typestr, quad, poly, usgn); 523 static std::string BuiltinTypeString(const char mod, StringRef typestr, 538 char type = ClassifyType(typestr, quad, poly, usgn); 617 static void InstructionTypeCode(const StringRef &typeStr, 623 char type = ClassifyType(typeStr, quad, poly, usgn); 694 static std::string MangleName(const std::string &name, StringRef typestr, 702 InstructionTypeCode(typestr, ck, quad, typeCode); 1010 /// typestr + class kind, generate the proper set of FileCheck [all...] |
/external/elfutils/libasm/ |
asm_newscn.c | 66 const char *typestr = ""; local 89 typestr = ",@progbits"; 91 typestr = ",@nobits"; 97 result->name, flagstr, typestr);
|
/external/iptables/extensions/ |
libip6t_dst.c | 32 parse_opts_num(const char *idstr, const char *typestr) 41 "dst: no valid digits in %s `%s'", typestr, idstr); 46 typestr, idstr); 50 "dst: error parsing %s `%s'", typestr, idstr);
|
libip6t_hbh.c | 34 parse_opts_num(const char *idstr, const char *typestr) 43 "hbh: no valid digits in %s `%s'", typestr, idstr); 48 typestr, idstr); 52 "hbh: error parsing %s `%s'", typestr, idstr);
|
/external/ppp/pppd/plugins/radius/ |
dict.c | 43 char typestr[AUTH_ID_LEN]; local 108 n = sscanf(buffer, "%s%s%s%s%s", dummystr, namestr, valstr, typestr, vendorstr); 145 if (strcmp (typestr, "string") == 0) 149 else if (strcmp (typestr, "integer") == 0) 153 else if (strcmp (typestr, "ipaddr") == 0) 157 else if (strcmp (typestr, "date") == 0)
|
/external/chromium_org/chrome/browser/extensions/api/identity/ |
account_tracker_unittest.cc | 58 const char * typestr = "INVALID"; local 61 typestr = "ADD"; 64 typestr = "REM"; 67 typestr = " IN"; 70 typestr = "OUT"; 74 typestr,
|
/external/chromium_org/v8/tools/ |
gen-postmortem-metadata.py | 189 typestr = ''; 216 typestr += line; 230 entries = typestr.split(',');
|
/external/v8/tools/ |
gen-postmortem-metadata.py | 179 typestr = ''; 206 typestr += line; 220 entries = typestr.split(',');
|
/frameworks/base/media/mca/ |
structgen.py | 227 typestr = linecomps[1] 228 if typestr == "int": 230 elif typestr == "long": 232 elif typestr == "float": 235 raise ParseError(lineno, "Unknown field type '%s'!" % typestr)
|
/external/libpcap/ |
gencode.c | 3398 const char *typestr; local 3528 const char *typestr; local [all...] |
/external/dnsmasq/src/ |
cache.c | 34 } typestr[] = { variable in typeref:struct:__anon20072 140 const unsigned char *mix_tab = (const unsigned char*)typestr; 1232 for (i = 0; i < (sizeof(typestr)/sizeof(typestr[0])); i++) 1233 if (typestr[i].type == type) 1234 sprintf(str,"query[%s]", typestr[i].name); [all...] |
/external/mdnsresponder/mDNSShared/ |
dnssd_clientshim.c | 176 char typestr[MAX_ESCAPED_DOMAIN_NAME]; local 180 if (!ConvertDomainNameToCString(&type, typestr)) return; 186 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context); 192 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context);
|
uds_daemon.c | 410 char typestr[MAX_ESCAPED_DOMAIN_NAME]; local 416 ConvertDomainNameToCString(&type, typestr); 424 len += (int) (strlen(typestr) + 1); 436 put_string(typestr, &data); 449 char typestr[MAX_ESCAPED_DOMAIN_NAME]; local 459 // 2. Put second label and "local" into typestr 460 mDNS_snprintf(typestr, sizeof(typestr), "%#s.local.", SecondLabel(servicename)); 467 len += (int) (strlen(typestr) + 1); 479 put_string(typestr, &data) [all...] |
/external/tcpdump/ |
print-ppp.c | 426 const char *typestr; local 434 typestr = tok2str(ppptype2str, "unknown ctrl-proto (0x%04x)", proto); 435 printf("%s, ",typestr); 584 printf("[|%s]", typestr); [all...] |