Home
last modified time | relevance | path

Searched refs:is_name (Results 1 – 9 of 9) sorted by relevance

/external/yapf/yapf/yapflib/
Dformat_decision_state.py231 current.is_name):
250 if (pptoken and not pptoken.is_name and not pptoken.is_keyword and
254 if (current.is_name or current.is_string) and previous.value == ',':
271 if current.is_name:
272 while tok and (tok.is_name or tok.value == '.'):
299 opening.previous_token.is_name):
377 if opening and opening.previous_token and opening.previous_token.is_name:
382 if ((current.is_name or current.value in {'*', '**'}) and
389 (opening.previous_token.is_name or
397 if (not (opening.is_name or opening.value in {'*', '**'}) and
[all …]
Dunwrapped_line.py210 return tok.is_keyword or tok.is_name or tok.is_number or tok.is_string
262 if ((right.is_keyword or right.is_name) and
263 (left.is_keyword or left.is_name)):
302 (right.is_name or right.is_number or rval == '(')):
345 if left.is_name and rval in '([':
412 if prev_token.is_name and cval == '(':
415 if prev_token.is_name and cval == '[':
418 if prev_token.is_name and cval == '.':
Dformat_token.py294 def is_name(self): member in FormatToken
/external/elfutils/src/
Dobjdump.c110 bool is_name; member
188 newp->is_name = false; in parse_opt()
192 newp->is_name = true; in parse_opt()
453 if (runp->is_name) in section_match()
/external/libevent/include/event2/
Ddns.h635 …on, const char *name, int type, int dns_class, int ttl, int datalen, int is_name, const char *data…
/external/libevent/
Devdns.c268 char is_name; /* True iff data is a label */ member
1759 …ection, const char *name, int type, int class, int ttl, int datalen, int is_name, const char *data) in evdns_server_request_add_reply() argument
1800 item->is_name = is_name != 0; in evdns_server_request_add_reply()
1804 if (item->is_name) { in evdns_server_request_add_reply()
1947 if (item->is_name) { in evdns_server_request_format_response()
/external/dnsmasq/src/
Ddnsmasq.h718 char* option_string(unsigned char opt, int* is_ip, int* is_name);
Drfc2131.c1247 int is_ip, is_name, i; in log_options() local
1248 char* text = option_string(start[0], &is_ip, &is_name); in log_options()
1257 else if (!is_name || !sanitise(start, daemon->namebuff)) { in log_options()
Doption.c448 char* option_string(unsigned char opt, int* is_ip, int* is_name) { in option_string() argument
454 if (is_name) *is_name = !!(opttab[i].size & OT_NAME); in option_string()