Lines Matching refs:push
59 fn push(&mut self, key: &str, value: T); in push() method
63 fn push(&mut self, key: &str, value: bool) { in push() method
64 self.0.push((key.to_string(), Value::Boolean(value))); in push()
69 fn push(&mut self, key: &str, value: i32) { in push() method
70 self.0.push((key.to_string(), Value::Number(value))); in push()
75 fn push(&mut self, key: &str, value: String) { in push() method
76 self.0.push((key.to_string(), Value::String(value))); in push()
81 fn push(&mut self, key: &str, value: &str) { in push() method
82 self.push(key, value.to_string()); in push()
87 fn push(&mut self, key: &str, value: Object) { in push() method
88 self.0.push((key.to_string(), Value::Object(value))); in push()
152 ts.push("arch", "x86_64"); in main()
153 ts.push( in main()
161 ts.push("features", features); in main()
162 ts.push("llvm-target", "x86_64-linux-gnu"); in main()
163 ts.push("target-pointer-width", "64"); in main()
168 ts.push("emit-debug-gdb-scripts", false); in main()
169 ts.push("frame-pointer", "may-omit"); in main()
170 ts.push( in main()
178 ts.push("target-endian", "big"); in main()