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

1 2 3

  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/dao/
DerivedDao.kt 21 import androidx.room.integration.kotlintestapp.vo.Author
24 interface DerivedDao : BaseDao<Author> {
26 @Query("SELECT * FROM author WHERE authorId = :authorId")
27 fun getAuthor(authorId: String): Author
BooksDao.kt 26 import androidx.room.integration.kotlintestapp.vo.Author
51 fun addAuthors(vararg authors: Author)
53 @Query("SELECT * FROM author WHERE authorId = :authorId")
54 fun getAuthor(authorId: String): Author
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/test/
TestUtil.kt 19 import androidx.room.integration.kotlintestapp.vo.Author
32 val AUTHOR_1 = Author("a1", "author 1")
33 val AUTHOR_2 = Author("a2", "author 2")
BooksDaoTest.kt 23 import androidx.room.integration.kotlintestapp.vo.Author
225 val author = Author("id", "name", Date(), ArrayList())
226 database.booksDao().addAuthors(author)
228 val authorDb = database.booksDao().getAuthor(author.authorId)
230 assertThat(authorDb, CoreMatchers.`is`<Author>(author))
237 val author = database.derivedDao().getAuthor(TestUtil.AUTHOR_1.authorId)
239 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/androidx/room/integration/kotlintestapp/vo/
Author.kt 26 data class Author(
BookAuthor.kt 29 ForeignKey(entity = Author::class,
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/
TestDatabase.kt 24 import androidx.room.integration.kotlintestapp.vo.Author
33 entities = [Book::class, Author::class, Publisher::class, BookAuthor::class,
  /external/icu/icu4c/source/data/mappings/
ucmlocal.mk 2 # Author: mscherer@google.com (Markus Scherer)
  /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>` +
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
AntlrPPC.mak 21 # Author: Kenji Tanaka

Completed in 1060 milliseconds

1 2 3