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

1 2 3 4

  /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
  /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...]
  /build/blueprint/bootstrap/
config.go 95 type Stage int
98 StagePrimary Stage = iota
103 stage Stage
  /system/update_engine/update_manager/
updater_provider.h 29 enum class Stage {
81 virtual Variable<Stage>* var_stage() = 0;
  /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/dng_sdk/source/
dng_opcodes.h 183 /// Which image processing stage (1, 2, 3) is associated with this
186 uint32 Stage () const
191 /// Set the image processing stage (1, 2, 3) for this opcode. Stage 1 is
192 /// the original image data, including masked areas. Stage 2 is
193 /// linearized image data and trimmed to the active area. Stage 3 is
196 void SetStage (uint32 stage)
198 fStage = stage;
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 70 private Stage mStage = Stage.FINGERPRINT;
113 if (mStage == Stage.FINGERPRINT) {
145 if (mStage == Stage.FINGERPRINT) {
150 public void setStage(Stage stage) {
151 mStage = stage;
179 mStage = Stage.PASSWORD;
225 if (mStage == Stage.NEW_FINGERPRINT_ENROLLED) {
234 mStage = Stage.FINGERPRINT
    [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/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 70 private Stage mStage = Stage.FINGERPRINT;
113 if (mStage == Stage.FINGERPRINT) {
145 if (mStage == Stage.FINGERPRINT) {
150 public void setStage(Stage stage) {
151 mStage = stage;
179 mStage = Stage.PASSWORD;
225 if (mStage == Stage.NEW_FINGERPRINT_ENROLLED) {
234 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...]
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 70 private Stage mStage = Stage.FINGERPRINT;
113 if (mStage == Stage.FINGERPRINT) {
145 if (mStage == Stage.FINGERPRINT) {
150 public void setStage(Stage stage) {
151 mStage = stage;
179 mStage = Stage.PASSWORD;
225 if (mStage == Stage.NEW_FINGERPRINT_ENROLLED) {
234 mStage = Stage.FINGERPRINT
    [all...]
  /development/samples/browseable/FingerprintDialog/src/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...]
  /external/pdfium/third_party/lcms/src/
cmsio1.c 353 // longer 0..1.0, so we need to add an stage depending on the color space
527 cmsStage* Stage;
529 for (Stage = cmsPipelineGetPtrToFirstStage(Lut);
530 Stage != NULL;
531 Stage = cmsStageNext(Stage)) {
533 if (cmsStageType(Stage) == cmsSigCLutElemType) {
535 _cmsStageCLutData* CLUT = (_cmsStageCLutData*) Stage ->Data;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.cpp 206 // FormItineraryStageString - Compose a string containing the stage
218 // For each stage
221 // Next stage
222 const Record *Stage = StageList[i];
225 int Cycles = Stage->getValueAsInt("Cycles");
229 const std::vector<Record*> &UnitList = Stage->getValueAsListOfDefs("Units");
238 int TimeInc = Stage->getValueAsInt("TimeInc");
241 int Kind = Stage->getValueAsInt("Kind");
244 // Close off stage
377 // Get string and stage coun
    [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...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 142 // used in each stage.
374 assert((chkstage < numstages) && "AddInsnClassStages: stage out of range");
414 // If this is the final stage for this class
442 // stage in InsnClass for available resources.
476 // Inspect each stage independently.
488 // unscheduleable combo if this stage is an OR expression
581 // If there are no valid transitions from this stage, we need a sentinel
663 // Convert macros to bits for each stage.
704 // Convert macros to bits for each stage.
753 // Compute the bitwise or of each unit used in this stage
    [all...]
SubtargetEmitter.cpp 269 // FormItineraryStageString - Compose a string containing the stage
281 // For each stage
284 // Next stage
285 const Record *Stage = StageList[i];
288 int Cycles = Stage->getValueAsInt("Cycles");
292 const std::vector<Record*> &UnitList = Stage->getValueAsListOfDefs("Units");
301 int TimeInc = Stage->getValueAsInt("TimeInc");
304 int Kind = Stage->getValueAsInt("Kind");
307 // Close off stage
441 // Get string and stage coun
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocGreedy.cpp 128 LiveRangeStage Stage;
133 RegInfo() : Stage(RS_New), Cascade(0) {}
139 return ExtraRegInfo[VirtReg.reg].Stage;
142 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
144 ExtraRegInfo[VirtReg.reg].Stage = Stage;
152 if (ExtraRegInfo[Reg].Stage == RS_New)
153 ExtraRegInfo[Reg].Stage = NewStage;
387 // same stage as the parent.
388 ExtraRegInfo[Old].Stage = RS_Assign
    [all...]
  /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...]
ChooseLockPinPasswordFragment.java 57 private Stage mUiStage = Stage.Introduction;
86 enum Stage {
128 Stage(@StringRes int hintInAlpha,
228 if (mUiStage == Stage.ConfirmWrong) {
229 mUiStage = Stage.NeedToConfirm;
230 } else if (mUiStage == Stage.PasswordInvalid) {
231 mUiStage = Stage.Introduction;
380 updateStage(Stage.NeedToConfirm);
382 updateStage(Stage.PasswordInvalid)
    [all...]
  /packages/apps/Settings/src/com/android/settings/password/
ConfirmLockPattern.java 60 private enum Stage {
143 updateStage(Stage.NeedToUnlock);
218 updateStage(Stage.NeedToUnlock);
288 private void updateStage(Stage stage) {
289 switch (stage) {
515 updateStage(Stage.NeedToUnlockWrong);
545 updateStage(Stage.LockedOut);
561 updateStage(Stage.NeedToUnlock);
ChooseLockPattern.java 215 updateStage(Stage.Introduction);
245 if (mUiStage == Stage.NeedToConfirm || mUiStage == Stage.ConfirmWrong) {
247 "null chosen pattern in stage 'need to confirm");
249 updateStage(Stage.ChoiceConfirmed);
251 updateStage(Stage.ConfirmWrong);
253 } else if (mUiStage == Stage.Introduction || mUiStage == Stage.ChoiceTooShort){
255 updateStage(Stage.ChoiceTooShort);
258 updateStage(Stage.FirstChoiceValid)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
InvocationExecution.java 35 import com.android.tradefed.invoker.TestInvocation.Stage;
218 reportLogs(context.getDevice(deviceName), listener, Stage.SETUP);
425 private void reportLogs(ITestDevice device, ITestInvocationListener listener, Stage stage) {
433 String name = TestInvocation.getDeviceLogName(stage);
441 String name = TestInvocation.getEmulatorLogName(stage);

Completed in 876 milliseconds

1 2 3 4