Searched defs:Mode (Results 1 - 25 of 208) sorted by relevance

123456789

/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetSubtargetInfo.cpp27 AntiDepBreakMode& Mode,
29 Mode = ANTIDEP_NONE;
25 enablePostRAScheduler( CodeGenOpt::Level OptLevel, AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const argument
/external/libchrome/base/test/
H A Dtest_io_thread.h30 enum Mode { kAutoStart, kManualStart }; enum in class:base::TestIOThread
31 explicit TestIOThread(Mode mode);
/external/v8/src/tracing/
H A Dtracing-category-observer.h15 enum Mode { enum in class:v8::tracing::TracingCategoryObserver
/external/eigen/demos/opengl/
H A Dtrackball.h21 enum Mode {Around, Local}; enum in class:Trackball
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
/external/libchrome/base/profiler/
H A Dscoped_profile.h57 // Mode of operation. Specifies whether ScopedProfile should be a no-op or
59 enum Mode { enum in class:tracked_objects::ScopedProfile
64 ScopedProfile(const Location& location, Mode mode);
/external/skia/src/gpu/
H A DGrWindowRectsState.h15 enum class Mode : bool { class in class:GrWindowRectsState
20 GrWindowRectsState() : fMode(Mode::kExclusive) {}
21 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode)
26 bool enabled() const { return Mode::kInclusive == fMode || !fWindows.empty(); }
27 Mode mode() const { return fMode; }
32 fMode = Mode::kExclusive;
36 void set(const GrWindowRectangles& windows, Mode mode) {
50 Mode fMode;
/external/skia/src/gpu/effects/
H A DGrBlurredEdgeFragmentProcessor.h19 enum class Mode { kGaussian = 0, kSmoothStep = 1 }; class in class:GrBlurredEdgeFragmentProcessor
20 Mode mode() const { return fMode; }
21 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode) {
29 GrBlurredEdgeFragmentProcessor(Mode mode)
36 Mode fMode;
H A DGrSRGBEffect.h15 enum class Mode { class in class:GrSRGBEffect
28 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode, Alpha alpha) {
34 Mode mode() const { return fMode; }
40 GrSRGBEffect(Mode mode, Alpha);
48 Mode fMode;
/external/skia/tools/skqp/
H A Dgm_runner.h40 enum class Mode { class in namespace:gm_runner
53 void InitSkia(Mode, skqp::AssetManager*);
/external/skqp/src/gpu/
H A DGrWindowRectsState.h15 enum class Mode : bool { class in class:GrWindowRectsState
20 GrWindowRectsState() : fMode(Mode::kExclusive) {}
21 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode)
26 bool enabled() const { return Mode::kInclusive == fMode || !fWindows.empty(); }
27 Mode mode() const { return fMode; }
32 fMode = Mode::kExclusive;
36 void set(const GrWindowRectangles& windows, Mode mode) {
50 Mode fMode;
/external/skqp/src/gpu/effects/
H A DGrBlurredEdgeFragmentProcessor.h19 enum class Mode { kGaussian = 0, kSmoothStep = 1 }; class in class:GrBlurredEdgeFragmentProcessor
20 Mode mode() const { return fMode; }
21 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode) {
29 GrBlurredEdgeFragmentProcessor(Mode mode)
36 Mode fMode;
H A DGrSRGBEffect.h15 enum class Mode { class in class:GrSRGBEffect
28 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode, Alpha alpha) {
34 Mode mode() const { return fMode; }
40 GrSRGBEffect(Mode mode, Alpha);
48 Mode fMode;
/external/skqp/tools/skqp/
H A Dgm_runner.h40 enum class Mode { class in namespace:gm_runner
53 void InitSkia(Mode, skqp::AssetManager*);
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUSubtarget.cpp52 TargetSubtargetInfo::AntiDepBreakMode& Mode,
54 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
50 enablePostRAScheduler( CodeGenOpt::Level OptLevel, TargetSubtargetInfo::AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const argument
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeSubtarget.cpp57 TargetSubtargetInfo::AntiDepBreakMode& Mode,
59 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
56 enablePostRAScheduler(CodeGenOpt::Level OptLevel, TargetSubtargetInfo::AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const argument
/external/v8/src/inspector/
H A Dwasm-translation.h22 enum Mode { Raw, Disassemble }; enum in class:v8_inspector::WasmTranslation
28 void SetMode(Mode mode) { mode_ = mode; }
68 Mode mode_;
/external/vogar/src/vogar/
H A DMode.java25 * A Mode for running actions. Examples including running in a virtual machine
29 public interface Mode { interface
/external/webrtc/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor.h35 enum Mode { enum in class:webrtc::MouseCursorMonitor
77 virtual void Init(Callback* callback, Mode mode) = 0;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DPartiallyUncompressingPipe.java43 * Modes available for {@link PartiallyUncompressingPipe#pipe(InputStream, Mode)}.
45 public static enum Mode { enum in class:PartiallyUncompressingPipe
84 public long pipe(InputStream in, Mode mode) throws IOException {
86 if (mode == Mode.COPY) {
92 uncompressor.setNowrap(mode == Mode.UNCOMPRESS_NOWRAP);
/external/clang/utils/analyzer/
H A DSumTimerInfo.py34 Mode = 1 variable
37 Mode = 1 variable
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
50 if (("The % of reachable basic blocks" in line) and (Mode == 1)) :
53 if (("The # of times we reached the max number of steps" in line) and (Mode == 1)) :
56 if (("The maximum number of basic blocks in a function" in line) and (Mode == 1)) :
60 if (("The # of steps executed" in line) and (Mode == 1)) :
63 if (("The # of times we inlined a call" in line) and (Mode
[all...]
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp65 unsigned Mode = sys::fs::all_read | sys::fs::all_write; local
68 Mode |= sys::fs::all_exe;
74 TempFilePath, Mode);
/external/skia/bench/
H A DClipStrategyBench.cpp15 enum class Mode { class in class:ClipStrategyBench
20 ClipStrategyBench(Mode mode, size_t count)
25 if (fMode == Mode::kClipPath) {
51 if (fMode == Mode::kClipPath) {
75 Mode fMode;
83 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 1 );)
84 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 5 );)
85 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 10 );)
86 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 100);)
88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode
[all...]
/external/skia/experimental/sksg/geometry/
H A DSkSGMerge.h23 * Concrete Geometry node, combining other geometries based on Mode.
27 enum class Mode { class in class:sksg::final
39 static sk_sp<Merge> Make(std::vector<sk_sp<GeometryNode>>&& geos, Mode mode) {
53 Merge(std::vector<sk_sp<GeometryNode>>&& geos, Mode);
57 Mode fMode;
/external/skqp/bench/
H A DClipStrategyBench.cpp15 enum class Mode { class in class:ClipStrategyBench
20 ClipStrategyBench(Mode mode, size_t count)
25 if (fMode == Mode::kClipPath) {
51 if (fMode == Mode::kClipPath) {
75 Mode fMode;
83 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 1 );)
84 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 5 );)
85 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 10 );)
86 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kClipPath, 100);)
88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode
[all...]
/external/skqp/experimental/sksg/geometry/
H A DSkSGMerge.h23 * Concrete Geometry node, combining other geometries based on Mode.
27 enum class Mode { class in class:sksg::final
39 static sk_sp<Merge> Make(std::vector<sk_sp<GeometryNode>>&& geos, Mode mode) {
53 Merge(std::vector<sk_sp<GeometryNode>>&& geos, Mode);
57 Mode fMode;

Completed in 720 milliseconds

123456789