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

1 2

  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/vo/
BookWithPublisher.kt 22 @Embedded val publisher: Publisher)
PublisherWithBooks.kt 23 @Embedded var publisher: Publisher? = null
24 @Relation(parentColumn = "publisherId", // publisher.publisherId
PublisherWithBookSales.kt 24 val publisher: Publisher,
25 @Relation(parentColumn = "publisherId", // publisher.publisherId
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher_1.3.0.v20130509-0110.jar 
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
org.eclipse.equinox.p2.updatesite_1.0.400.v20130515-2028.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.resolver.impl/0.18.1/
org.eclipse.tycho.p2.resolver.impl-0.18.1.jar 
  /external/autotest/client/cros/image_comparison/
image_comparison_factory.py 8 from autotest_lib.client.cros.image_comparison import publisher
93 return publisher.ImageDiffPublisher(results_folder
  /external/valgrind/solaris/
build_solaris_package 22 # - pkgrepo set -s $repo_uri publisher/prefix=valgrind
175 publisher=$( pkg publisher | grep solaris | tr -s ' ' )
176 if [[ $publisher == *sticky* ]]; then
177 lint_repo_uri=$( echo "$publisher" | cut -d ' ' -f 6 )
179 lint_repo_uri=$( echo "$publisher" | cut -d ' ' -f 5 )
181 [[ -z $lint_repo_uri ]] && fail "Failed to determine solaris IPS publisher."
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.tools.impl/0.18.1/
org.eclipse.tycho.p2.tools.impl-0.18.1.jar 
  /frameworks/support/lifecycle/reactivestreams/src/main/java/androidx/lifecycle/
LiveDataReactiveStreams.java 23 import org.reactivestreams.Publisher;
38 * Adapts the given {@link LiveData} stream to a ReactiveStreams {@link Publisher}.
41 * By using a good publisher implementation such as RxJava 2.x Flowables, most consumers will
46 * On subscription to the publisher, the observer will attach to the given {@link LiveData}.
54 public static <T> Publisher<T> toPublisher(
60 private static final class LiveDataPublisher<T> implements Publisher<T> {
168 * Creates an observable {@link LiveData} stream from a ReactiveStreams {@link Publisher}}.
171 * When the LiveData becomes active, it subscribes to the emissions from the Publisher.
175 * LiveData holds the last value emitted by the Publisher when the LiveData was active.
179 * which might not be the last value emitted by the Publisher
    [all...]
  /external/autotest/client/cros/ui/
ui_test_base.py 121 publisher = img_comp_factory.make_imagediff_publisher(
139 publisher.publish(golden_image_local_path,
  /packages/services/Car/tests/VmsPublisherClientSample/src/com/google/android/car/vms/publisher/
VmsPublisherClientSampleService.java 17 package com.google.android.car.vms.publisher;
28 * This service is launched during the initialization of the VMS publisher service.
49 * Notifies that the publisher services are ready to be used: {@link #publish(VmsLayer, byte[])}
  /frameworks/base/core/java/android/hardware/location/
NanoApp.java 125 * Set the publisher name
127 * @param publisher name of the publisher of this nano app
129 public void setPublisher(String publisher) {
130 mPublisher = publisher;
216 * get the publisher name
218 * @return publisher name
374 retVal += ", Publisher : " + mPublisher;
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.tools.shared/0.18.1/
org.eclipse.tycho.p2.tools.shared-0.18.1.jar 
  /external/autotest/client/site_tests/video_GlitchDetection/
video_GlitchDetection.py 16 from autotest_lib.client.cros.image_comparison import publisher
201 path_publish = publisher.ImageDiffPublisher(self.resultsdir)
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/test/
LiveDataQueryTest.kt 22 import androidx.room.integration.kotlintestapp.vo.Publisher
33 booksDao.addPublishers(TestUtil.PUBLISHER)
44 booksDao.addPublishers(TestUtil.PUBLISHER)
48 TestUtil.PUBLISHER)
59 booksDao.addPublishers(TestUtil.PUBLISHER)
63 booksDao.getPublisherWithBooksLiveData(TestUtil.PUBLISHER.publisherId))
65 assertThat(actualPublisherWithBooks.publisher, `is`<Publisher>(TestUtil.PUBLISHER))
RxJava2QueryTest.kt 30 booksDao.addPublishers(TestUtil.PUBLISHER)
41 booksDao.addPublishers(TestUtil.PUBLISHER)
60 booksDao.addPublishers(TestUtil.PUBLISHER)
81 booksDao.addPublishers(TestUtil.PUBLISHER)
85 TestUtil.PUBLISHER)
97 booksDao.addPublishers(TestUtil.PUBLISHER)
100 booksDao.getPublisherWithBooksFlowable(TestUtil.PUBLISHER.publisherId)
103 it.publisher == TestUtil.PUBLISHER
BooksDaoTest.kt 27 import androidx.room.integration.kotlintestapp.vo.Publisher
48 booksDao.addPublishers(TestUtil.PUBLISHER)
58 booksDao.addPublishers(TestUtil.PUBLISHER)
77 booksDao.addPublishers(TestUtil.PUBLISHER)
88 booksDao.addPublishers(TestUtil.PUBLISHER)
99 booksDao.addPublishers(TestUtil.PUBLISHER)
124 booksDao.addPublishers(TestUtil.PUBLISHER)
152 booksDao.addPublishers(TestUtil.PUBLISHER)
156 TestUtil.PUBLISHER)
167 booksDao.addPublishers(TestUtil.PUBLISHER)
    [all...]
  /prebuilts/tools/common/m2/repository/org/reficio/p2-maven-plugin/1.1.0/
p2-maven-plugin-1.1.0.jar 
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/solver/
TypeAdapterStoreTest.kt 230 simpleRun(jfos = *arrayOf(COMMON.PUBLISHER, COMMON.FLOWABLE)) { invocation ->
232 .getTypeElement(ReactiveStreamsTypeNames.PUBLISHER.toString())
241 simpleRun(jfos = *arrayOf(COMMON.PUBLISHER, COMMON.FLOWABLE, COMMON.RX2_ROOM)) {
243 val publisher = invocation.processingEnv.elementUtils
244 .getTypeElement(ReactiveStreamsTypeNames.PUBLISHER.toString())
245 assertThat(publisher, notNullValue())
247 MoreTypes.asDeclared(publisher.asType())), `is`(true))
253 simpleRun(jfos = *arrayOf(COMMON.PUBLISHER, COMMON.FLOWABLE, COMMON.RX2_ROOM)) {
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter_test.cc 68 using google::protobuf::testing::Publisher;
220 Publisher* publisher = book.mutable_publisher(); local
221 publisher->set_name("My Publisher");
232 ->StartObject("publisher")
233 ->RenderString("name", "My Publisher")
536 Publisher* publisher = expected.mutable_publisher(); local
537 publisher->set_name("second")
695 Publisher* publisher = expected.mutable_publisher(); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/
org.eclipse.sisu.inject-0.0.0.M5.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava2/rxjava/2.0.6/
rxjava-2.0.6.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.10.100.v20150529-1857.jar 

Completed in 432 milliseconds

1 2