HomeSort by relevance Sort by last modified time
    Searched refs:Author (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/dao/
DerivedDao.kt 21 import android.arch.persistence.room.integration.kotlintestapp.vo.Author
25 interface DerivedDao : BaseDao<Author> {
27 @Query("SELECT * FROM author WHERE authorId = :authorId")
28 fun getAuthor(authorId: String): Author
BooksDao.kt 23 import android.arch.persistence.room.integration.kotlintestapp.vo.Author
40 fun addAuthors(vararg authors: Author)
42 @Query("SELECT * FROM author WHERE authorId = :authorId")
43 fun getAuthor(authorId: String): Author
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/test/
TestUtil.kt 19 import android.arch.persistence.room.integration.kotlintestapp.vo.Author
31 val AUTHOR_1 = Author("a1", "author 1")
32 val AUTHOR_2 = Author("a2", "author 2")
BooksDaoTest.kt 19 import android.arch.persistence.room.integration.kotlintestapp.vo.Author
92 val author = Author("id", "name", Date(), ArrayList())
93 database.booksDao().addAuthors(author)
95 val authorDb = database.booksDao().getAuthor(author.authorId)
97 assertThat(authorDb, CoreMatchers.`is`<Author>(author))
104 val author = database.derivedDao().getAuthor(TestUtil.AUTHOR_1.authorId)
106 assertThat(author, CoreMatchers.`is`<Author>(TestUtil.AUTHOR_1)
    [all...]
  /external/libavc/common/arm/
ih264_arm_memory_barrier.s 28 @* @author
47 @* DD MM YYYY Author(s) Changes
64 @* DD MM YYYY Author(s) Changes
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/
TestDatabase.kt 23 import android.arch.persistence.room.integration.kotlintestapp.vo.Author
28 @Database(entities = arrayOf(Book::class, Author::class, Publisher::class, BookAuthor::class),
  /external/icu/icu4c/source/data/mappings/
ucmlocal.mk 2 # Author: mscherer@google.com (Markus Scherer)
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/vo/
Author.kt 26 data class Author(
BookAuthor.kt 30 ForeignKey(entity = Author::class,
  /external/curl/scripts/
log2changes.pl 40 elsif($l =~ /^Author: *(.*) +</) {
  /external/ImageMagick/api_examples/
magick_script 24 Anthony Thyssen - Author/Developer for
  /external/libunwind/doc/
unw_destroy_addr_space.tex 32 \section{Author}
unw_regname.tex 39 \section{Author}
unw_strerror.tex 33 \section{Author}
_U_dyn_cancel.tex 38 \section{Author}
_U_dyn_register.tex 39 \section{Author}
unw_backtrace.tex 46 \section{Author}
unw_get_accessors.tex 47 \section{Author}
unw_is_fpreg.tex 44 \section{Author}
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter_test.cc 64 using google::protobuf::testing::Author;
222 Author* robert = book.mutable_author();
235 ->StartObject("author")
254 Author* robert = book.mutable_author();
259 ->StartObject("author")
436 Author* author = expected.mutable_author(); local
437 author->set_name("The Author");
438 author->add_pseudonym("first")
454 Author* author = expected.mutable_author(); local
468 Author* author = expected.mutable_author(); local
534 Author* author = expected.mutable_author(); local
582 Author* author = expected.mutable_author(); local
663 Author* author = expected.mutable_author(); local
    [all...]
protostream_objectsource_test.cc 69 using google::protobuf::testing::Author;
344 Author author; local
345 author.set_id(12345);
348 DoTest(author, Author::descriptor());
352 Author* author = new Author(); local
353 author->set_name("Tolstoy")
368 Author author; local
400 Author author; local
    [all...]
  /external/mesa3d/docs/specs/
EXT_shader_integer_mix.spec 25 Author Revision: 6
125 Rev. Date Author Changes
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
DlgPPC.mak 13 # Author: Kenji Tanaka
  /prebuilts/go/darwin-x86/src/encoding/xml/
atom_test.go 14 Author: Person{Name: "John Doe"},
33 `<author><name>John Doe</name><uri></uri><email></email></author>` +
39 `<author><name></name><uri></uri><email></email></author>` +
  /prebuilts/go/linux-x86/src/encoding/xml/
atom_test.go 14 Author: Person{Name: "John Doe"},
33 `<author><name>John Doe</name><uri></uri><email></email></author>` +
39 `<author><name></name><uri></uri><email></email></author>` +

Completed in 403 milliseconds

1 2 3