Lines Matching refs:TaskTraits
12 …BLOCK) // [r"Multiple arguments of the same type were provided to the constructor of TaskTraits."]
13 constexpr TaskTraits traits = {MayBlock(), MayBlock()};
14 …TIVES) // [r"Multiple arguments of the same type were provided to the constructor of TaskTraits."]
15 constexpr TaskTraits traits = {WithBaseSyncPrimitives(),
17 …ORITY) // [r"Multiple arguments of the same type were provided to the constructor of TaskTraits."]
18 constexpr TaskTraits traits = {TaskPriority::BACKGROUND,
20 …AVIOR) // [r"Multiple arguments of the same type were provided to the constructor of TaskTraits."]
21 constexpr TaskTraits traits = {TaskShutdownBehavior::BLOCK_SHUTDOWN,
23 …E_MIX) // [r"Multiple arguments of the same type were provided to the constructor of TaskTraits."]
24 constexpr TaskTraits traits = {TaskShutdownBehavior::BLOCK_SHUTDOWN,
27 …RAITS_INVALID_TYPE) // [r"no matching constructor for initialization of 'const base::TaskTraits'"]
28 constexpr TaskTraits traits = {TaskShutdownBehavior::BLOCK_SHUTDOWN, true};