/third_party/node/deps/v8/src/heap/ |
H A D | incremental-marking-job.h | 21 enum class TaskType { kNormal, kDelayed }; member in v8::internal::final::TaskType 27 void ScheduleTask(Heap* heap, TaskType task_type = TaskType::kNormal); 36 return task_type == TaskType::kNormal ? normal_task_pending_ in IsTaskPending() 41 if (task_type == TaskType::kNormal) { in SetTaskPending()
|
H A D | incremental-marking-job.cc | 66 if (task_type == TaskType::kNormal) { in ScheduleTask() 103 if (task_type_ == TaskType::kNormal) { in RunInternal() 134 ? TaskType::kNormal in RunInternal()
|
/third_party/skia/experimental/sorttoy/ |
H A D | Fake.h | 141 : fType(Type::kNormal) in FakePaint() 147 fType = Type::kNormal; in setColor() 152 SkASSERT(fType == Type::kNormal); in getColor() 172 if (fType == Type::kNormal) { in isTransparent() 188 kNormal, member in FakePaint::Type 193 Type fType = Type::kNormal;
|
H A D | Fake.cpp | 78 case Type::kNormal: return kSolidMat; in toID() 87 case Type::kNormal: return fColor0; in evalColor()
|
/third_party/skia/src/effects/ |
H A D | SkTrimPathEffect.cpp | 54 SkASSERT(fMode == SkTrimPathEffect::Mode::kNormal); 69 if (fMode == SkTrimPathEffect::Mode::kNormal) { 113 (mode & 1) ? SkTrimPathEffect::Mode::kInverted : SkTrimPathEffect::Mode::kNormal); 123 if (startT <= 0 && stopT >= 1 && mode == Mode::kNormal) {
|
/third_party/skia/gm/ |
H A D | encode_color_types.cpp | 70 kNormal, member in skiagm::Variant 91 const int width = fVariant == Variant::kNormal ? imageWidth * 7 : imageWidth * 2; 112 case Variant::kNormal: 164 DEF_ENCODE_GM(format, quality, kNormal, name); \
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_orientation.cpp | 26 fAdobeOrientation = kNormal; in SetTIFF() 80 fAdobeOrientation = kNormal; in SetTIFF() 95 case kNormal: in GetTIFF()
|
H A D | dng_orientation.h | 38 kNormal = 0, enumerator 52 : fAdobeOrientation (kNormal) in dng_orientation() 95 return AdobeToDNG (kNormal); in Normal()
|
/third_party/skia/include/effects/ |
H A D | SkTrimPathEffect.h | 16 kNormal, // return the subset path [start,stop] member in SkTrimPathEffect::Mode 34 * Note: for Mode::kNormal, this will return one (logical) segment (even if it is spread 38 static sk_sp<SkPathEffect> Make(SkScalar startT, SkScalar stopT, Mode = Mode::kNormal);
|
/third_party/skia/modules/svg/include/ |
H A D | SkSVGFeBlend.h | 17 kNormal, member in SkSVGFeBlend::Mode 26 SVG_ATTR(Mode, Mode, Mode::kNormal)
|
/third_party/node/benchmark/napi/function_args/ |
H A D | binding.cc | 60 "map", v8::NewStringType::kNormal); in CallWithObject() 69 "operand", v8::NewStringType::kNormal); in CallWithObject() 78 "data", v8::NewStringType::kNormal); in CallWithObject() 87 "reduce", v8::NewStringType::kNormal); in CallWithObject()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGAttribute.cpp | 34 result.fFontStyle.init(SkSVGFontStyle::Type::kNormal); in MakeInitial() 36 result.fFontWeight.init(SkSVGFontWeight::Type::kNormal); in MakeInitial()
|
H A D | SkSVGFeBlend.cpp | 23 case SkSVGFeBlend::Mode::kNormal: in GetBlendMode() 52 { "normal" , SkSVGFeBlend::Mode::kNormal }, in parse()
|
/third_party/skia/tests/ |
H A D | FontHostTest.cpp | 218 { SkFontHinting::kNormal, false, false }, in test_advances() 219 { SkFontHinting::kNormal, true, false }, in test_advances() 220 { SkFontHinting::kNormal, false, true }, in test_advances()
|
/third_party/skia/src/core/ |
H A D | SkPaintDefaults.h | 24 #define SkPaintDefaults_Hinting SkFontHinting::kNormal
|
/third_party/skia/include/core/ |
H A D | SkFontTypes.h | 21 kNormal, //!< glyph outlines modified to improve constrast member in SkFontHinting
|
H A D | SkTypeface.h | 462 kNormal = 0, enumerator 470 static SkTypeface* GetDefaultTypeface(Style style = SkTypeface::kNormal);
|
/third_party/skia/docs/examples/ |
H A D | Paint_setHinting.cpp | 9 paint2.setHinting(SkFontHinting::kNormal); in REG_FIDDLE()
|
H A D | Paint_getHinting.cpp | 9 SkDebugf("SkFontHinting::kNormal %c= paint.getHinting()\n", in REG_FIDDLE() 10 SkFontHinting::kNormal == paint.getHinting() ? '=' : ':'); in REG_FIDDLE()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-primitive.h | 111 kNormal, member in v8::NewStringType 419 NewStringType type = NewStringType::kNormal) { in NewFromUtf8Literal() 428 NewStringType type = NewStringType::kNormal, int length = -1); 434 NewStringType type = NewStringType::kNormal, int length = -1); 440 NewStringType type = NewStringType::kNormal, int length = -1);
|
/third_party/node/deps/v8/include/ |
H A D | v8-primitive.h | 110 kNormal, member in v8::NewStringType 417 NewStringType type = NewStringType::kNormal) { in NewFromUtf8Literal() 426 NewStringType type = NewStringType::kNormal, int length = -1); 432 NewStringType type = NewStringType::kNormal, int length = -1); 438 NewStringType type = NewStringType::kNormal, int length = -1);
|
/third_party/node/deps/v8/src/ic/ |
H A D | handler-configuration.cc | 247 int config = KindBits::encode(Kind::kNormal); in StoreOwnTransition() 290 int config = KindBits::encode(Kind::kNormal) | in StoreTransition() 375 case LoadHandler::Kind::kNormal: in PrintSmiLoadHandler() 376 os << "kNormal"; in PrintSmiLoadHandler() 487 case StoreHandler::Kind::kNormal: in PrintSmiStoreHandler() 488 os << "kNormal"; in PrintSmiStoreHandler()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | heap-space.cc | 46 : BaseSpace(heap, index, PageType::kNormal, is_compactable) {} in NormalPageSpace()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | string-util.cc | 107 v8::NewStringType::kNormal, static_cast<int>(string.length())) in toV8String() 135 v8::NewStringType::kNormal, static_cast<int>(string.length())) in toV8String() 139 v8::NewStringType::kNormal, static_cast<int>(string.length())) in toV8String()
|
/third_party/node/src/ |
H A D | node_errors.h | 241 enum class CatchMode { kNormal, kFatal }; member in node::errors::TryCatchScope::CatchMode 243 explicit TryCatchScope(Environment* env, CatchMode mode = CatchMode::kNormal) in TryCatchScope()
|