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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
AvoidXfermode.java 21 * opColor or, depending on the Mode, draw only on top of the opColor.
29 public enum Mode {
33 Mode(int nativeInt) {
42 * There are two modes, and each mode interprets a tolerance value.
44 * Avoid: In this mode, drawing is allowed only on destination pixels that
49 * Target: In this mode, drawing only occurs on destination pixels that
54 public AvoidXfermode(int opColor, int tolerance, Mode mode) {
  /prebuilts/go/darwin-x86/src/os/
types_unix.go 19 mode FileMode
25 func (fs *fileStat) Mode() FileMode { return fs.mode }
types_plan9.go 16 mode FileMode
22 func (fs *fileStat) Mode() FileMode { return fs.mode }
types_windows.go 32 func (fs *fileStat) Mode() (m FileMode) {
  /prebuilts/go/linux-x86/src/os/
types_unix.go 19 mode FileMode
25 func (fs *fileStat) Mode() FileMode { return fs.mode }
types_plan9.go 16 mode FileMode
22 func (fs *fileStat) Mode() FileMode { return fs.mode }
types_windows.go 32 func (fs *fileStat) Mode() (m FileMode) {
  /external/libchrome/base/test/
test_io_thread.h 30 enum Mode { kAutoStart, kManualStart };
31 explicit TestIOThread(Mode mode);
  /external/skia/src/gpu/effects/
GrBlurredEdgeFragmentProcessor.h 19 enum class Mode { kGaussian = 0, kSmoothStep = 1 };
20 Mode mode() const { return fMode; } function in class:GrBlurredEdgeFragmentProcessor::Mode
21 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode) {
22 return std::unique_ptr<GrFragmentProcessor>(new GrBlurredEdgeFragmentProcessor(mode));
29 GrBlurredEdgeFragmentProcessor(Mode mode)
31 , fMode(mode) {}
36 Mode fMode
    [all...]
  /external/skqp/src/gpu/effects/
GrBlurredEdgeFragmentProcessor.h 19 enum class Mode { kGaussian = 0, kSmoothStep = 1 };
20 Mode mode() const { return fMode; } function in class:GrBlurredEdgeFragmentProcessor::Mode
21 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode) {
22 return std::unique_ptr<GrFragmentProcessor>(new GrBlurredEdgeFragmentProcessor(mode));
29 GrBlurredEdgeFragmentProcessor(Mode mode)
31 , fMode(mode) {}
36 Mode fMode
    [all...]
  /external/v8/src/tracing/
tracing-category-observer.h 15 enum Mode {
  /external/vogar/src/vogar/
Mode.java 25 * A Mode for running actions. Examples including running in a virtual machine
29 public interface Mode {
  /prebuilts/go/darwin-x86/src/go/doc/
doc.go 78 // Mode values control the operation of New.
79 type Mode int
84 AllDecls Mode = 1 << iota
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
96 r.readPackage(pkg, mode)
108 Types: sortedTypes(r.types, mode&AllMethods != 0),
  /prebuilts/go/darwin-x86/test/fixedbugs/issue19548.dir/
a.go 7 type Mode uint
9 func (m Mode) String() string { return "mode string" }
10 func (m *Mode) Addr() *Mode { return m }
17 var m Mode
20 // force compilation of the (*Mode).String() wrapper
25 return global.String() + Mode(0).String()
  /prebuilts/go/linux-x86/src/go/doc/
doc.go 78 // Mode values control the operation of New.
79 type Mode int
84 AllDecls Mode = 1 << iota
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
96 r.readPackage(pkg, mode)
108 Types: sortedTypes(r.types, mode&AllMethods != 0),
  /prebuilts/go/linux-x86/test/fixedbugs/issue19548.dir/
a.go 7 type Mode uint
9 func (m Mode) String() string { return "mode string" }
10 func (m *Mode) Addr() *Mode { return m }
17 var m Mode
20 // force compilation of the (*Mode).String() wrapper
25 return global.String() + Mode(0).String()
  /packages/apps/Messaging/src/com/android/messaging/util/
SwitchCompatUtils.java 47 PorterDuff.Mode.MULTIPLY));
50 getSwitchTrackColorStateList(context, color, typedValue), PorterDuff.Mode.SRC_IN));
54 final ColorStateList colorStateList, final PorterDuff.Mode mode) {
59 final Drawable newDrawable = new TintDrawableWrapper(oldDrawable, colorStateList, mode);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/
LcdGraphicsOutputDxe.h 40 EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE Mode;
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuSnpDxe/
EmuSnpDxe.h 58 EFI_SIMPLE_NETWORK_MODE Mode;
404 must be equal to This->Mode->MediaHeaderSize and the DestAddr
415 This->Mode->CurrentAddress is used for the source HW MAC address.
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
WindowsUxCapsule.h 27 UINT32 Mode;
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/
PchUsbPolicy.h 69 UINT8 Mode;
  /external/clang/utils/analyzer/
SumTimerInfo.py 34 Mode = 1
37 Mode = 1
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 == 1))
    [all...]
  /external/eigen/demos/opengl/
trackball.h 21 enum Mode {Around, Local};
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
  /external/libchrome/base/profiler/
scoped_profile.h 57 // Mode of operation. Specifies whether ScopedProfile should be a no-op or
59 enum Mode {
64 ScopedProfile(const Location& location, Mode mode);
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 65 unsigned Mode = sys::fs::all_read | sys::fs::all_write;
68 Mode |= sys::fs::all_exe;
74 TempFilePath, Mode);

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>