/external/pdfium/core/fpdfapi/edit/ |
D | cpdf_creator.cpp | 230 CPDF_Creator::Stage CPDF_Creator::WriteDoc_Stage1() { in WriteDoc_Stage1() 231 ASSERT(m_iStage > Stage::kInvalid || m_iStage < Stage::kInitWriteObjs20); in WriteDoc_Stage1() 232 if (m_iStage == Stage::kInit0) { in WriteDoc_Stage1() 238 m_iStage = Stage::kWriteHeader10; in WriteDoc_Stage1() 240 if (m_iStage == Stage::kWriteHeader10) { in WriteDoc_Stage1() 243 return Stage::kInvalid; in WriteDoc_Stage1() 253 return Stage::kInvalid; in WriteDoc_Stage1() 255 m_iStage = Stage::kInitWriteObjs20; in WriteDoc_Stage1() 258 m_iStage = Stage::kWriteIncremental15; in WriteDoc_Stage1() 261 if (m_iStage == Stage::kWriteIncremental15) { in WriteDoc_Stage1() [all …]
|
D | cpdf_creator.h | 40 enum class Stage { enum 63 CPDF_Creator::Stage WriteDoc_Stage1(); 64 CPDF_Creator::Stage WriteDoc_Stage2(); 65 CPDF_Creator::Stage WriteDoc_Stage3(); 66 CPDF_Creator::Stage WriteDoc_Stage4(); 84 Stage m_iStage = Stage::kInvalid;
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_contentparser.cpp | 26 : m_CurrentStage(Stage::kGetContent), m_pObjectHolder(pPage) { in CPDF_ContentParser() 29 m_CurrentStage = Stage::kComplete; in CPDF_ContentParser() 58 : m_CurrentStage(Stage::kParse), in CPDF_ContentParser() 112 while (m_CurrentStage == Stage::kGetContent) { in Continue() 118 if (m_CurrentStage == Stage::kPrepareContent) in Continue() 121 while (m_CurrentStage == Stage::kParse) { in Continue() 127 if (m_CurrentStage == Stage::kCheckClip) in Continue() 130 ASSERT(m_CurrentStage == Stage::kComplete); in Continue() 134 CPDF_ContentParser::Stage CPDF_ContentParser::GetContent() { in GetContent() 135 ASSERT(m_CurrentStage == Stage::kGetContent); in GetContent() [all …]
|
D | cpdf_contentparser.h | 46 enum class Stage : uint8_t { enum 54 Stage GetContent(); 55 Stage PrepareContent(); 56 Stage Parse(); 57 Stage CheckClip(); 63 Stage m_CurrentStage;
|
/external/guice/core/test/com/google/inject/ |
D | BindingTest.java | 250 final Constructor<D> constructor = D.class.getConstructor(Stage.class); in testToConstructorBinding() 262 assertEquals(Stage.DEVELOPMENT, d.stage); in testToConstructorBinding() 266 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsOnParameterizedTypes() 275 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {}); in testToConstructorBindingsOnParameterizedTypes() 280 C<Stage> one = (C<Stage>) injector.getInstance(s); in testToConstructorBindingsOnParameterizedTypes() 281 assertEquals(Stage.DEVELOPMENT, one.stage); in testToConstructorBindingsOnParameterizedTypes() 282 assertEquals(Stage.DEVELOPMENT, one.t); in testToConstructorBindingsOnParameterizedTypes() 283 assertEquals(Stage.DEVELOPMENT, one.anotherT); in testToConstructorBindingsOnParameterizedTypes() 286 assertEquals(Stage.DEVELOPMENT, two.stage); in testToConstructorBindingsOnParameterizedTypes() 292 final Constructor constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsFailsOnRawTypes() [all …]
|
D | EagerSingletonTest.java | 39 Stage.PRODUCTION, in testJustInTimeEagerSingletons() 66 Injector injector = Guice.createInjector(Stage.PRODUCTION); in testJustInTimeSingletonsAreNotEager() 72 Injector parent = Guice.createInjector(Stage.PRODUCTION); in testChildEagerSingletons() 96 Stage.PRODUCTION, in testJustInTimeEagerSingletons_multipleThreads()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | Stage.h | 26 class Stage { 27 Stage(const Stage &Other) = delete; 28 Stage &operator=(const Stage &Other) = delete; 35 Stage(); 36 virtual ~Stage() = default;
|
D | Instruction.cpp | 110 assert(Stage == IS_INVALID); in dispatch() 111 Stage = IS_AVAILABLE; in dispatch() 119 assert(Stage == IS_READY); in execute() 120 Stage = IS_EXECUTING; in execute() 130 Stage = IS_EXECUTED; in execute() 151 Stage = IS_READY; in update() 172 Stage = IS_EXECUTED; in cycleEvent()
|
D | Stage.cpp | 21 Stage::Stage() {} in Stage() function in mca::Stage 23 void Stage::addListener(HWEventListener *Listener) { in addListener()
|
D | Pipeline.cpp | 35 const auto It = llvm::find_if(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess() 44 for (const std::unique_ptr<Stage> &S : Stages) in executeStages() 51 for (const std::unique_ptr<Stage> &S : Stages) in preExecuteStages() 56 for (const std::unique_ptr<Stage> &S : Stages) in postExecuteStages()
|
D | Instruction.h | 294 enum InstrStage Stage; variable 320 : Desc(D), Stage(IS_INVALID), CyclesLeft(UNKNOWN_CYCLES), RCUTokenID(0), in Instruction() 360 bool isDispatched() const { return Stage == IS_AVAILABLE; } in isDispatched() 361 bool isReady() const { return Stage == IS_READY; } in isReady() 362 bool isExecuting() const { return Stage == IS_EXECUTING; } in isExecuting() 363 bool isExecuted() const { return Stage == IS_EXECUTED; } in isExecuted() 364 bool isRetired() const { return Stage == IS_RETIRED; } in isRetired() 368 Stage = IS_RETIRED; in retire()
|
/external/pdfium/xfa/fxfa/layout/ |
D | cxfa_contentlayoutprocessor.h | 41 enum class Stage : uint8_t { enum 139 Stage GotoNextContainerNode(Stage nCurStage, 144 Optional<Stage> ProcessKeepNodesForCheckNext(CXFA_Node** pCurActionNode, 148 Optional<Stage> ProcessKeepNodesForBreakBefore(CXFA_Node** pCurActionNode, 183 Optional<Stage> HandleKeep(CXFA_Node* pBreakAfterNode, 185 Optional<Stage> HandleBookendLeader(CXFA_Node* pParentContainer, 187 Optional<Stage> HandleBreakBefore(CXFA_Node* pChildContainer, 189 Optional<Stage> HandleBreakAfter(CXFA_Node* pChildContainer, 191 Optional<Stage> HandleCheckNextChildContainer(CXFA_Node* pParentContainer, 194 Optional<Stage> HandleBookendTrailer(CXFA_Node* pParentContainer, [all …]
|
D | cxfa_contentlayoutprocessor.cpp | 392 Optional<CXFA_ContentLayoutProcessor::Stage> FindBreakNode( in FindBreakNode() 407 return CXFA_ContentLayoutProcessor::Stage::kBreakBefore; in FindBreakNode() 414 return CXFA_ContentLayoutProcessor::Stage::kBreakAfter; in FindBreakNode() 423 return bBreakBefore ? CXFA_ContentLayoutProcessor::Stage::kBreakBefore in FindBreakNode() 424 : CXFA_ContentLayoutProcessor::Stage::kBreakAfter; in FindBreakNode() 809 if (m_nCurChildNodeStage != Stage::kDone || !m_pOldLayoutItem) in ExtractLayoutItem() 834 CXFA_ContentLayoutProcessor::Stage 835 CXFA_ContentLayoutProcessor::GotoNextContainerNode(Stage nCurStage, in GotoNextContainerNode() 841 case Stage::kBreakBefore: in GotoNextContainerNode() 842 case Stage::kBreakAfter: { in GotoNextContainerNode() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fUniformLocationTests.cpp | 841 typedef UniformInfo::ShaderStage Stage; in init() typedef 845 const Stage layoutLoc = Stage(rng.getUint32()&0x3); in init() 846 const Stage declareLoc = Stage((rng.getUint32()&0x3) | layoutLoc); in init() 847 const Stage verifyLoc = Stage((rng.getUint32()&0x3) & declareLoc); in init() 882 typedef UniformInfo::ShaderStage Stage; in init() typedef 888 const Stage layoutLocs[]= in init() 890 Stage(rng.getUint32()&0x3), in init() 891 Stage(rng.getUint32()&0x3), in init() 892 Stage(rng.getUint32()&0x3), in init() 893 Stage(rng.getUint32()&0x3), in init() [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
D | EngineRunnable.java | 33 private Stage stage; 40 this.stage = Stage.CACHE; in EngineRunnable() 81 return stage == Stage.CACHE; in isDecodingFromCache() 90 stage = Stage.SOURCE; in onLoadFailed() 130 private enum Stage { enum in EngineRunnable
|
/external/mesa3d/src/compiler/glsl/ |
D | link_varyings.cpp | 622 const glsl_type *type = get_varying_type(var, sh->Stage); in validate_explicit_variable_location() 624 unsigned idx = compute_variable_location_slot(var, sh->Stage); in validate_explicit_variable_location() 633 assert(sh->Stage != MESA_SHADER_FRAGMENT); in validate_explicit_variable_location() 635 ctx->Const.Program[sh->Stage].MaxOutputComponents / 4; in validate_explicit_variable_location() 638 assert(sh->Stage != MESA_SHADER_VERTEX); in validate_explicit_variable_location() 640 ctx->Const.Program[sh->Stage].MaxInputComponents / 4; in validate_explicit_variable_location() 646 idx, _mesa_shader_stage_to_string(sh->Stage)); in validate_explicit_variable_location() 664 prog, sh->Stage)) { in validate_explicit_variable_location() 675 prog, sh->Stage)) { in validate_explicit_variable_location() 795 consumer->Stage, producer->Stage); in cross_validate_outputs_to_inputs() [all …]
|
/external/guice/core/src/com/google/inject/internal/ |
D | InjectorShell.java | 30 import com.google.inject.Stage; 78 private Stage stage; 83 Builder stage(Stage stage) { in stage() 108 Stage getStage() { in getStage() 295 private static void bindStage(InjectorImpl injector, Stage stage) { in bindStage() 296 Key<Stage> key = Key.get(Stage.class); in bindStage() 297 InstanceBindingImpl<Stage> stageBinding = in bindStage() 298 new InstanceBindingImpl<Stage>( in bindStage() 302 new ConstantFactory<Stage>(Initializables.of(stage)), in bindStage()
|
D | InternalInjectorCreator.java | 26 import com.google.inject.Stage; 75 public InternalInjectorCreator stage(Stage stage) { in stage() 111 if (shellBuilder.getStage() == Stage.TOOL) { in build() 180 if (shellBuilder.getStage() != Stage.TOOL) { in injectDynamically() 193 void loadEagerSingletons(InjectorImpl injector, Stage stage, final Errors errors) { in loadEagerSingletons() 224 private boolean isEagerSingleton(InjectorImpl injector, BindingImpl<?> binding, Stage stage) { in isEagerSingleton()
|
/external/guice/core/test/com/google/inject/spi/ |
D | ToolStageInjectorTest.java | 11 import com.google.inject.Stage; 27 Injector injector = Guice.createInjector(Stage.TOOL); in testToolStageInjectorRestrictions() 62 Stage.TOOL, in testToolStageDoesntInjectInstances() 79 Stage.TOOL, in testToolStageDoesntInjectProviders() 97 Stage.TOOL, in testToolStageWarnsOfMissingObjectGraph() 119 Stage.TOOL, in testToolStageInjectsTooledMethods()
|
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/internal/ |
D | LocalActivityInvoker.java | 16 import androidx.test.runner.lifecycle.Stage; 68 Stage stage = ActivityLifecycleMonitorRegistry.getInstance().getLifecycleStageOf(activity); in resumeActivity() 89 Stage stage = ActivityLifecycleMonitorRegistry.getInstance().getLifecycleStageOf(activity); in pauseActivity() 106 Stage stage = ActivityLifecycleMonitorRegistry.getInstance().getLifecycleStageOf(activity); in stopActivity() 127 Stage originalStage = in recreateActivity() 174 Stage stage = ActivityLifecycleMonitorRegistry.getInstance().getLifecycleStageOf(activity); in finishActivity()
|
/external/guice/core/src/com/google/inject/ |
D | Guice.java | 69 return createInjector(Stage.DEVELOPMENT, modules); in createInjector() 77 public static Injector createInjector(Stage stage, Module... modules) { in createInjector() 86 public static Injector createInjector(Stage stage, Iterable<? extends Module> modules) { in createInjector()
|
/external/mesa3d/src/amd/compiler/ |
D | aco_ir.h | 1548 struct Stage { struct 1549 constexpr Stage() = default; 1551 explicit constexpr Stage(HWStage hw_, SWStage sw_) : sw(sw_), hw(hw_) { } in Stage() argument 1562 constexpr bool operator==(const Stage& other) const { argument 1566 constexpr bool operator!=(const Stage& other) const { 1578 static constexpr Stage vertex_vs(HWStage::VS, SWStage::VS); 1579 static constexpr Stage fragment_fs(HWStage::FS, SWStage::FS); 1580 static constexpr Stage compute_cs(HWStage::CS, SWStage::CS); 1581 static constexpr Stage tess_eval_vs(HWStage::VS, SWStage::TES); 1582 static constexpr Stage gs_copy_vs(HWStage::VS, SWStage::GSCopy); [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_link.cpp | 132 lower_if_to_cond_assign(shader->Stage, shader->ir, 16); in process_glsl_ir() 153 _mesa_shader_stage_to_string(shader->Stage), in process_glsl_ir() 158 "from cache)\n", _mesa_shader_stage_to_string(shader->Stage), in process_glsl_ir() 250 (INTEL_DEBUG & intel_debug_flag_for_shader_stage(shader->Stage)); in brw_link_shader() 254 _mesa_shader_stage_to_string(shader->Stage), shProg->Name); in brw_link_shader() 373 _mesa_shader_stage_to_string(sh->Stage), in brw_link_shader()
|
/external/v8/src/debug/ |
D | debug-property-iterator.cc | 50 case Stage::kExoticIndices: in Advance() 51 stage_ = Stage::kEnumerableStrings; in Advance() 53 case Stage::kEnumerableStrings: in Advance() 54 stage_ = Stage::kAllProperties; in Advance() 56 case Stage::kAllProperties: in Advance()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_nir.cpp | 670 st->ctx->Const.ShaderCompilerOptions[shader->Stage].NirOptions; in st_link_nir() 684 prog->nir = _mesa_spirv_to_nir(ctx, shader_program, shader->Stage, options); in st_link_nir() 691 _mesa_shader_stage_to_string(shader->Stage), in st_link_nir() 697 prog->nir = glsl_to_nir(st->ctx, shader_program, shader->Stage, options); in st_link_nir() 698 st_nir_preprocess(st, prog, shader_program, shader->Stage); in st_link_nir() 726 st_nir_preprocess(st, prog, shader_program, shader->Stage); in st_link_nir() 787 if (shader->Stage == MESA_SHADER_VERTEX) { in st_link_nir() 809 if (ctx->Const.ShaderCompilerOptions[shader->Stage].NirOptions->vectorize_io) in st_link_nir() 823 ctx->Const.ShaderCompilerOptions[shader->Stage].NirOptions->unify_interfaces) { in st_link_nir() 854 if (shader->Stage == MESA_SHADER_VERTEX) in st_link_nir() [all …]
|