Home
last modified time | relevance | path

Searched refs:where_clause (Results 1 – 11 of 11) sorted by relevance

/linux/rust/syn/
H A Dderive.rs92 let (where_clause, fields, semi) = data_struct(input)?; in parse()
98 where_clause, in parse()
111 let (where_clause, brace, variants) = data_enum(input)?; in parse()
117 where_clause, in parse()
130 let (where_clause, fields) = data_union(input)?; in parse()
136 where_clause, in parse()
154 let mut where_clause = None; localVariable
156 where_clause = Some(input.parse()?);
160 if where_clause.is_none() && lookahead.peek(token::Paren) {
165 where_clause = Some(input.parse()?);
[all …]
H A Ditem.rs1040 generics.where_clause = input.parse()?; in parse_rest_of_item()
1044 if generics.lt_token.is_none() && generics.where_clause.is_none() => in parse_rest_of_item()
1169 generics.where_clause = input.parse()?; in parse()
1178 if generics.where_clause.is_none() => in parse()
1180 generics.where_clause = input.parse()?; in parse()
1535 generics.where_clause = input.parse()?; in parse_signature()
1981 generics.where_clause = input.parse()?; in parse()
2048 generics.where_clause = input.parse()?; in parse()
2100 let (where_clause, fields, semi_token) = derive::parsing::data_struct(input)?; in parse()
2107 where_clause, in parse()
[all …]
H A Dgenerics.rs32 pub where_clause: Option<WhereClause>,
102 where_clause: None, in default()
152 self.where_clause.get_or_insert_with(|| WhereClause { in make_where_clause()
182 self.where_clause.as_ref(), in split_for_impl()
597 where_clause: None, in parse()
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py3098 def __init__(self, glb, event_id, where_clause, parent=None): argument
3125 " WHERE samples.id > $$last_id$$" + where_clause +
3200 def __init__(self, name = "", where_clause = "", limit = ""): argument
3202 self.where_clause = where_clause
3206 return str(self.where_clause + ";" + self.limit)
3217 …model = LookupCreateModel(model_name, lambda: BranchModel(glb, event_id, report_vars.where_clause))
3618 if len(vars.where_clause):
3619 vars.where_clause += " AND "
3620 vars.where_clause += d.value
3621 if len(vars.where_clause):
[all …]
/linux/rust/syn/gen/
H A Dclone.rs993 where_clause: self.where_clause.clone(), in clone()
H A Deq.rs1013 && self.gt_token == other.gt_token && self.where_clause == other.where_clause in eq()
H A Dfold.rs2233 where_clause: (node.where_clause).map(|it| f.fold_where_clause(it)), in fold_generics()
H A Dhash.rs1292 self.where_clause.hash(state); in hash()
H A Ddebug.rs1487 formatter.field("where_clause", &self.where_clause); in fmt()
H A Dvisit_mut.rs2163 if let Some(it) = &mut node.where_clause { in visit_generics_mut()
H A Dvisit.rs2262 if let Some(it) = &node.where_clause { in visit_generics()