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

1 2 3 4 5 6 7 8

  /external/guice/core/src/com/google/inject/
Stage.java 20 * The stage we're running in.
24 public enum Stage {
29 * little as possible so our tools run nice and snappy. Injectors created in this stage cannot
Guice.java 56 * calling {@link #createInjector(Stage, Module...)} with Stage.DEVELOPMENT.
67 * calling {@link #createInjector(Stage, Iterable)} with Stage.DEVELOPMENT.
73 return createInjector(Stage.DEVELOPMENT, modules);
78 * stage.
83 public static Injector createInjector(Stage stage, Module... modules) {
84 return createInjector(stage, Arrays.asList(modules));
89 * stage
    [all...]
  /developers/build/prebuilts/gradle/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
Constants.kt 26 enum class Stage { FINGERPRINT, NEW_FINGERPRINT_ENROLLED, PASSWORD }
  /developers/samples/android/security/FingerprintDialog/kotlinApp/app/src/main/java/com/example/android/fingerprintdialog/
Constants.kt 26 enum class Stage { FINGERPRINT, NEW_FINGERPRINT_ENROLLED, PASSWORD }
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
OhciDebug.h 37 BOOLEAN Stage
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc/src/
shaderc_private.h 96 // Converts a shader stage from shaderc_shader_kind into a shaderc_util::Compiler::Stage.
97 // This is only valid for a specifically named shader stage, e.g. vertex through fragment,
99 inline shaderc_util::Compiler::Stage shaderc_convert_specific_stage(
103 return shaderc_util::Compiler::Stage::Vertex;
105 return shaderc_util::Compiler::Stage::Fragment;
107 return shaderc_util::Compiler::Stage::TessControl;
109 return shaderc_util::Compiler::Stage::TessEval;
111 return shaderc_util::Compiler::Stage::Geometry;
113 return shaderc_util::Compiler::Stage::Compute
    [all...]
  /system/chre/apps/chqts/src/general_test/
timer_cancel_test.h 40 struct Stage {
41 uint32_t stage; member in struct:general_test::TimerCancelTest::Stage
47 Stage(uint32_t stage_, bool oneShot_, bool expectCallback_) :
48 stage(stage_), timerId(CHRE_TIMER_INVALID), oneShot(oneShot_),
55 Stage mStages[kStageCount];
61 void handleStageEvent(Stage *stage);
62 void markSuccess(uint32_t stage);
timer_set_test.h 34 void markSuccess(uint32_t stage);
42 class Stage {
44 Stage(uint32_t stage, uint64_t duration, const void *cookie,
64 Stage *mStages;
72 Stage *getStageFromCookie(const void *cookie);
timer_set_test.cc 38 * See initStages() for the description of each stage. Since these all
39 * happen in parallel, we leave it to each stage to mark itself has having
55 TimerSetTest::Stage::Stage(uint32_t stage, uint64_t duration,
57 : mSetTime(0), mDuration(duration), mStage(stage), mEventCount(0),
60 void TimerSetTest::Stage::start() {
71 void TimerSetTest::Stage::processEvent(uint64_t timestamp, TimerSetTest *test) {
107 mStages = static_cast<Stage*>(chreHeapAlloc(sizeof(*mStages) *
115 // Stage 0: Test NULL cooki
172 Stage *stage = getStageFromCookie(eventData); local
    [all...]
timer_cancel_test.cc 34 * See the TimerCancelTest constructor to see which stage tests which setup.
46 Stage *stage = &mStages[i]; local
47 stage->timerId = chreTimerSet(kDuration, stage, stage->oneShot);
48 if (stage->timerId == CHRE_TIMER_INVALID) {
51 if (stage->expectCallback) {
52 // Go on to the next stage. Note this stage will markSuccess(
144 const Stage *stage = static_cast<const Stage*>(eventData); local
    [all...]
  /cts/tests/framework/base/activitymanager/src/android/server/am/lifecycle/
LifecycleLog.java 4 import static android.support.test.runner.lifecycle.Stage.CREATED;
5 import static android.support.test.runner.lifecycle.Stage.DESTROYED;
6 import static android.support.test.runner.lifecycle.Stage.PAUSED;
7 import static android.support.test.runner.lifecycle.Stage.PRE_ON_CREATE;
8 import static android.support.test.runner.lifecycle.Stage.RESUMED;
9 import static android.support.test.runner.lifecycle.Stage.STARTED;
10 import static android.support.test.runner.lifecycle.Stage.STOPPED;
14 import android.support.test.runner.lifecycle.Stage;
54 synchronized public void onActivityLifecycleChanged(Activity activity, Stage stage) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
compiler.h 150 // Shader pipeline stage.
152 enum class Stage {
160 enum { kNumStages = int(Stage::Compute) + 1 };
162 // Returns a std::array of all the Stage values.
163 const std::array<Stage, kNumStages>& stages() const {
164 static std::array<Stage, kNumStages> values{
165 {Stage::Vertex, Stage::TessEval, Stage::TessControl, Stage::Geometry
    [all...]
  /system/update_engine/update_manager/
boxed_value.cc 137 string BoxedValue::ValuePrinter<Stage>(const void* value) {
138 const Stage* val = reinterpret_cast<const Stage*>(value);
140 case Stage::kIdle:
142 case Stage::kCheckingForUpdate:
144 case Stage::kUpdateAvailable:
146 case Stage::kDownloading:
148 case Stage::kVerifying:
150 case Stage::kFinalizing:
152 case Stage::kUpdatedNeedReboot
    [all...]
boxed_value_unittest.cc 208 BoxedValue(new Stage(Stage::kIdle)).ToString());
210 BoxedValue(new Stage(Stage::kCheckingForUpdate)).ToString());
212 BoxedValue(new Stage(Stage::kUpdateAvailable)).ToString());
214 BoxedValue(new Stage(Stage::kDownloading)).ToString());
216 BoxedValue(new Stage(Stage::kVerifying)).ToString())
    [all...]
updater_provider.h 29 enum class Stage {
81 virtual Variable<Stage>* var_stage() = 0;
  /external/guice/extensions/persist/test/com/google/inject/persist/
EdslTest.java 5 import com.google.inject.Stage;
17 Guice.createInjector(Stage.PRODUCTION, new AbstractModule() {
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/testcommon/
ActivityLifecycleWaiter.java 23 import android.support.test.runner.lifecycle.Stage;
30 private final Stage mStage;
32 public ActivityLifecycleWaiter(Activity activity, Stage stage) {
34 mStage = stage;
39 public void onActivityLifecycleChanged(Activity activity, Stage stage) {
40 if (activity == mActivity && stage == mStage) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineRunnable.java 14 * In the first stage, this class attempts to decode a resource
16 * this class then requests to be posted again. During the second stage this class then attempts to use the
33 private Stage stage; field in class:EngineRunnable
40 this.stage = Stage.CACHE;
81 return stage == Stage.CACHE;
90 stage = Stage.SOURCE
    [all...]
  /external/guice/core/test/com/google/inject/
BindingTest.java 228 final Constructor<D> constructor = D.class.getConstructor(Stage.class);
237 assertEquals(Stage.DEVELOPMENT, d.stage);
241 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class);
247 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {});
252 C<Stage> one = (C<Stage>) injector.getInstance(s);
253 assertEquals(Stage.DEVELOPMENT, one.stage);
254 assertEquals(Stage.DEVELOPMENT, one.t)
431 private Stage stage; field in class:BindingTest.C
444 Stage stage; field in class:BindingTest.D
451 Stage stage; field in class:BindingTest.E
459 Stage stage; field in class:BindingTest.F
    [all...]
EagerSingletonTest.java 33 Guice.createInjector(Stage.PRODUCTION, new AbstractModule() {
54 Injector injector = Guice.createInjector(Stage.PRODUCTION);
60 Injector parent = Guice.createInjector(Stage.PRODUCTION);
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
InjectorGrapherDemo.java 21 import com.google.inject.Stage;
37 // TODO(phopkins): Switch to Stage.TOOL when issue 297 is fixed.
38 Injector demoInjector = Guice.createInjector(Stage.DEVELOPMENT,
  /external/guice/core/src/com/google/inject/spi/
Toolable.java 23 import com.google.inject.Stage;
30 * Instructs an {@link Injector} running in {@link Stage#TOOL} that a method should be injected.
  /packages/apps/Car/Settings/src/com/android/car/settings/security/
ChooseLockPatternFragment.java 56 private Stage mUiStage = Stage.Introduction;
68 enum Stage {
70 * Initial stage when first launching choose a lock pattern.
146 Stage(int messageId,
295 * Updates the messages and buttons appropriate to what stage the user
298 * @param stage The stage UI should be updated to match with.
300 protected void updateStage(Stage stage) {
    [all...]
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 53 private Stage mStage = Stage.FINGERPRINT;
88 if (mStage == Stage.FINGERPRINT) {
121 if (mStage == Stage.FINGERPRINT) {
126 public void setStage(Stage stage) {
127 mStage = stage;
157 mStage = Stage.PASSWORD;
176 if (mStage == Stage.NEW_FINGERPRINT_ENROLLED) {
185 mStage = Stage.FINGERPRINT
    [all...]
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 53 private Stage mStage = Stage.FINGERPRINT;
88 if (mStage == Stage.FINGERPRINT) {
121 if (mStage == Stage.FINGERPRINT) {
126 public void setStage(Stage stage) {
127 mStage = stage;
157 mStage = Stage.PASSWORD;
176 if (mStage == Stage.NEW_FINGERPRINT_ENROLLED) {
185 mStage = Stage.FINGERPRINT
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8