Home
last modified time | relevance | path

Searched refs:the_answer (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/rusqlite/src/
Dbackup.rs328 let the_answer: i64 = dst in test_backup() localVariable
331 assert_eq!(42, the_answer); in test_backup()
342 let the_answer: i64 = dst in test_backup() localVariable
345 assert_eq!(42 + 43, the_answer); in test_backup()
366 let the_answer: i64 = dst in test_backup_temp() localVariable
369 assert_eq!(42, the_answer); in test_backup_temp()
382 let the_answer: i64 = dst in test_backup_temp() localVariable
385 assert_eq!(42 + 43, the_answer); in test_backup_temp()
411 let the_answer: i64 = dst in test_backup_attached() localVariable
414 assert_eq!(42, the_answer); in test_backup_attached()
[all …]
Dunlock_notify.rs125 let the_answer: Result<i64> = db1.query_row("SELECT x FROM foo", NO_PARAMS, |r| r.get(0)); in test_unlock_notify() localVariable
126 assert_eq!(42i64, the_answer.unwrap()); in test_unlock_notify()
Dlib.rs1017 let the_answer: Result<i64> = db.query_row("SELECT x FROM foo", NO_PARAMS, |r| r.get(0)); in test_persistence() localVariable
1019 assert_eq!(42i64, the_answer.unwrap()); in test_persistence()
1074 let the_answer: Result<i64> = db.query_row("SELECT x FROM foo", NO_PARAMS, |r| r.get(0)); in test_invalid_unicode_file_names() localVariable
1076 assert_eq!(42i64, the_answer.unwrap()); in test_invalid_unicode_file_names()
/external/python/pybind11/tests/test_embed/
Dtest_interpreter.cpp24 virtual int the_answer() const = 0;
33 int the_answer() const override { PYBIND11_OVERRIDE_PURE(int, Widget, the_answer); } in the_answer() function in PyWidget
69 REQUIRE(cpp_widget.the_answer() == 42);
Dtest_interpreter.py9 def the_answer(self): member in DerivedWidget
/external/python/pybind11/docs/
Dbasics.rst286 m.attr("the_answer") = 42;
296 >>> example.the_answer
/external/python/cpython2/Doc/tutorial/
Dclasses.rst86 ``modname.the_answer = 42``. Writable attributes may also be deleted with the
87 :keyword:`del` statement. For example, ``del modname.the_answer`` will remove
88 the attribute :attr:`the_answer` from the object named by ``modname``.
/external/python/cpython3/Doc/tutorial/
Dclasses.rst92 ``modname.the_answer = 42``. Writable attributes may also be deleted with the
93 :keyword:`del` statement. For example, ``del modname.the_answer`` will remove
94 the attribute :attr:`the_answer` from the object named by ``modname``.