/external/rust/crates/rusqlite/src/types/ |
D | value_ref.rs | 9 pub enum ValueRef<'a> { enum 22 impl ValueRef<'_> { implementation 26 ValueRef::Null => Type::Null, in data_type() 27 ValueRef::Integer(_) => Type::Integer, in data_type() 28 ValueRef::Real(_) => Type::Real, in data_type() 29 ValueRef::Text(_) => Type::Text, in data_type() 30 ValueRef::Blob(_) => Type::Blob, in data_type() 35 impl<'a> ValueRef<'a> { impl 40 ValueRef::Integer(i) => Ok(i), in as_i64() 49 ValueRef::Real(f) => Ok(f), in as_f64() [all …]
|
D | from_sql.rs | 1 use super::{Value, ValueRef}; 90 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>; in column_result() 94 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 108 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { 129 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 135 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 137 ValueRef::Integer(i) => Ok(i as f64), in column_result() 138 ValueRef::Real(f) => Ok(f), in column_result() 145 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 151 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() [all …]
|
D | serde_json.rs | 5 use crate::types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef}; 17 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 19 ValueRef::Text(s) => serde_json::from_slice(s), in column_result() 20 ValueRef::Blob(b) => serde_json::from_slice(b), in column_result()
|
D | url.rs | 2 use crate::types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef}; 15 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 17 ValueRef::Text(s) => { in column_result()
|
D | chrono.rs | 7 use crate::types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef}; 20 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 40 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 68 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 94 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result() 123 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result()
|
D | time.rs | 2 use crate::types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef}; 18 fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { in column_result()
|
D | to_sql.rs | 1 use super::{Null, Value, ValueRef}; 13 Borrowed(ValueRef<'a>), 32 &'a T: Into<ValueRef<'a>>, 78 ToSqlOutput::Owned(ref v) => ToSqlOutput::Borrowed(ValueRef::from(v)), in to_sql()
|
/external/llvm/utils/ |
D | llvm.grm | 341 ValueRef ::= SymbolicValueRef | ConstValueRef; 343 ResolvedVal ::= Types ValueRef ; 358 | br label ValueRef 359 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef 360 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]" 361 | switch IntType ValueRef ^ "," label ValueRef "[" ^ "]" 362 | invoke OptCallingConv ResultTypes ValueRef ^ "(" ^ ParamList ^ ")" 364 to label ValueRef unwind label ValueRef 368 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef 369 | IntType ConstValueRef ^ "," label ValueRef ; [all …]
|
/external/llvm-project/llvm/utils/ |
D | llvm.grm | 342 ValueRef ::= SymbolicValueRef | ConstValueRef; 344 ResolvedVal ::= Types ValueRef ; 359 | br label ValueRef 360 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef 361 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]" 362 | switch IntType ValueRef ^ "," label ValueRef "[" ^ "]" 363 | invoke OptCallingConv ResultTypes ValueRef ^ "(" ^ ParamList ^ ")" 365 to label ValueRef unwind label ValueRef 369 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef 370 | IntType ConstValueRef ^ "," label ValueRef ; [all …]
|
/external/rust/crates/rusqlite/src/ |
D | context.rs | 11 use crate::types::{ToSqlOutput, ValueRef}; 18 ToSqlOutput::Owned(ref v) => ValueRef::from(v), in set_result() 36 ValueRef::Null => ffi::sqlite3_result_null(ctx), in set_result() 37 ValueRef::Integer(i) => ffi::sqlite3_result_int64(ctx, i), in set_result() 38 ValueRef::Real(r) => ffi::sqlite3_result_double(ctx, r), in set_result() 39 ValueRef::Text(s) => { in set_result() 52 ValueRef::Blob(b) => { in set_result()
|
D | statement.rs | 11 AndThenRows, Connection, Error, MappedRows, RawStatement, Result, Row, Rows, ValueRef, 567 ToSqlOutput::Owned(ref v) => ValueRef::from(v), in bind_parameter() 589 ValueRef::Null => unsafe { ffi::sqlite3_bind_null(ptr, col as c_int) }, in bind_parameter() 590 ValueRef::Integer(i) => unsafe { ffi::sqlite3_bind_int64(ptr, col as c_int, i) }, in bind_parameter() 591 ValueRef::Real(r) => unsafe { ffi::sqlite3_bind_double(ptr, col as c_int, r) }, in bind_parameter() 592 ValueRef::Text(s) => unsafe { in bind_parameter() 596 ValueRef::Blob(b) => unsafe { in bind_parameter() 743 pub(super) fn value_ref(&self, col: usize) -> ValueRef<'_> { in value_ref() 747 ffi::SQLITE_NULL => ValueRef::Null, in value_ref() 749 ValueRef::Integer(unsafe { ffi::sqlite3_column_int64(raw, col as c_int) }) in value_ref() [all …]
|
D | pragma.rs | 7 use crate::types::{ToSql, ToSqlOutput, ValueRef}; 65 ToSqlOutput::Owned(ref v) => ValueRef::from(v), in push_value() 82 ValueRef::Integer(i) => { in push_value() 85 ValueRef::Real(r) => { in push_value() 88 ValueRef::Text(s) => { in push_value()
|
D | session.rs | 17 use crate::types::ValueRef; 400 pub fn conflict(&self, col: usize) -> Result<ValueRef<'_>> { in conflict() 408 Ok(ValueRef::from_value(p_value)) in conflict() 428 pub fn new_value(&self, col: usize) -> Result<ValueRef<'_>> { in new_value() 432 Ok(ValueRef::from_value(p_value)) in new_value() 440 pub fn old_value(&self, col: usize) -> Result<ValueRef<'_>> { in old_value() 444 Ok(ValueRef::from_value(p_value)) in old_value()
|
D | row.rs | 6 use crate::types::{FromSql, FromSqlError, ValueRef}; 320 pub fn get_raw_checked<I: RowIndex>(&self, idx: I) -> Result<ValueRef<'_>> { in get_raw_checked() 344 pub fn get_raw<I: RowIndex>(&self, idx: I) -> ValueRef<'_> { in get_raw()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir.h | 628 class ValueRef 631 ValueRef(Value * = NULL); 632 ValueRef(const ValueRef&); 633 ~ValueRef(); 638 void set(const ValueRef&); 646 inline const ValueRef *getIndirect(int dim) const; 677 bool mayReplace(const ValueRef &); 678 void replace(const ValueRef &, bool doSet); // replace all uses of the old value 726 unordered_set<ValueRef *> uses; 728 typedef unordered_set<ValueRef *>::iterator UseIterator; [all …]
|
D | nv50_ir_emit_gv100.h | 99 inline void emitNOT(int pos, const ValueRef &ref) { in emitNOT() 227 inline void emitSYS(int pos, const ValueRef &ref) { in emitSYS() 244 inline void emitGPR(int pos, const ValueRef &ref) { in emitGPR() 248 inline void emitGPR(int pos, const ValueRef *ref) { in emitGPR() 268 inline void emitPRED(int pos, const ValueRef &ref) { in emitPRED() 277 const ValueRef &ref) { in emitCBUF() 289 inline void emitIMMD(int pos, int len, const ValueRef &ref) { in emitIMMD() 302 const ValueRef &ref) { in emitADDR()
|
D | nv50_ir.cpp | 61 ValueRef::ValueRef(Value *v) : value(NULL), insn(NULL) in ValueRef() function in nv50_ir::ValueRef 69 ValueRef::ValueRef(const ValueRef& ref) : value(NULL), insn(ref.insn) in ValueRef() function in nv50_ir::ValueRef 75 ValueRef::~ValueRef() in ~ValueRef() 80 bool ValueRef::getImmediate(ImmediateValue &imm) const in getImmediate() 82 const ValueRef *src = this; in getImmediate() 130 ValueRef::set(const ValueRef &ref) in set() 139 ValueRef::set(Value *refVal) in set() 168 ValueDef::mayReplace(const ValueRef &rep) in mayReplace() 201 ValueDef::replace(const ValueRef &repVal, bool doSet) in replace() 209 ValueRef *ref = *value->uses.begin(); in replace() [all …]
|
D | nv50_ir_inlines.h | 160 const ValueRef *ValueRef::getIndirect(int dim) const in getIndirect() 165 DataFile ValueRef::getFile() const in getFile() 170 unsigned int ValueRef::getSize() const in getSize() 175 Value *ValueRef::rep() const in rep()
|
D | nv50_ir_emit_gm107.cpp | 65 inline void emitGPR(int pos, const ValueRef &ref) { in emitGPR() 68 inline void emitGPR(int pos, const ValueRef *ref) { in emitGPR() 75 inline void emitSYS(int pos, const ValueRef &ref) { in emitSYS() 82 inline void emitPRED(int pos, const ValueRef &ref) { in emitPRED() 88 inline void emitADDR(int, int, int, int, const ValueRef &); 89 inline void emitCBUF(int, int, int, int, int, const ValueRef &); 90 inline bool longIMMD(const ValueRef &); 91 inline void emitIMMD(int, int, const ValueRef &); 101 inline void emitABS(int, const ValueRef &); 102 inline void emitNEG(int, const ValueRef &); [all …]
|
D | nv50_ir_emit_nvc0.cpp | 54 void setAddress16(const ValueRef&); 55 void setAddress24(const ValueRef&); 56 void setAddressByFile(const ValueRef&); 58 void setImmediateS8(const ValueRef&); 71 void emitShortSrc2(const ValueRef&); 73 inline uint8_t getSRegEncoding(const ValueRef&); 159 inline void srcId(const ValueRef&, const int pos); 160 inline void srcId(const ValueRef *, const int pos); 162 inline void srcAddr32(const ValueRef&, int pos, int shr); 164 inline bool isLIMM(const ValueRef&, DataType ty); [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_binditems.cpp | 18 {XFA_Attribute::ValueRef, XFA_AttributeType::CData, nullptr}, 40 return JSObject()->GetCData(XFA_Attribute::ValueRef); in GetValueRef()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/ |
D | gl_delegate.cc | 78 struct ValueRef { struct in tflite::gpu::gl::__anon640f09d20111::Delegate 99 ValueRef ref; in CopyFromBufferHandle() 112 ValueRef ref; in CopyToBufferHandle() 289 const ValueRef& ref = tensors_[id]; in Invoke() 313 const ValueRef& ref = tensors_[id]; in Invoke() 342 absl::Status FindObject(ValueId id, ValueRef* ref) const { in FindObject() 362 std::vector<ValueRef> tensors_; // indexed by ValueId
|
/external/openscreen/cast/common/public/testing/ |
D | discovery_utils.cc | 35 ErrorOr<discovery::DnsSdTxtRecord::ValueRef> value = txt.GetValue(key); in CompareTxtString() 48 ErrorOr<discovery::DnsSdTxtRecord::ValueRef> value = txt.GetValue(key); in CompareTxtInt()
|
/external/openscreen/discovery/dnssd/public/ |
D | dns_sd_txt_record.h | 21 using ValueRef = std::reference_wrapper<const std::vector<uint8_t>>; 45 ErrorOr<ValueRef> GetValue(const std::string& key) const;
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFAbbreviationDeclaration.h | 37 m_attributes[idx].get(attr, form_value.FormRef(), form_value.ValueRef()); in GetAttrAndFormValueByIndex()
|