Home
last modified time | relevance | path

Searched refs:FlagType (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/core/perf/opencl/
Dperf_gemm.cpp57 CV_ENUM(FlagType, 0, GEMM_1_T, GEMM_2_T, GEMM_3_T, GEMM_1_T|GEMM_2_T, GEMM_2_T|GEMM_3_T)
59 typedef tuple<Size, FlagType, MatType> GemmParams;
64 FlagType::all(), testing::Values(CV_32FC1, CV_32FC2)))
/external/v8/src/
Dflags.cc36 enum FlagType { TYPE_BOOL, TYPE_MAYBE_BOOL, TYPE_INT, TYPE_FLOAT, enum
39 FlagType type_; // What type of flag, bool, int, or string.
46 FlagType type() const { return type_; } in type()
175 static const char* Type2String(Flag::FlagType type) { in Type2String()