• Home
  • Raw
  • Download

Lines Matching refs:arg

57 std::ostream &operator<<(std::ostream &out, std::shared_ptr<IVibratorCallback> arg) {  in operator <<()  argument
58 return out << arg->descriptor << "()"; in operator <<()
61 std::ostream &operator<<(std::ostream &out, const ff_effect *arg) { in operator <<() argument
62 if (arg == nullptr) { in operator <<()
66 return out << StringPrintf("%p", arg).c_str(); in operator <<()
69 std::ostream &operator<<(std::ostream &out, const ff_effect &arg) { in operator <<() argument
71 out << "FF_PERIODIC, " << arg.id << ", " << arg.replay.length << "ms, " in operator <<()
72 << arg.u.periodic.custom_len << " bytes"; in operator <<()
77 std::ostream &operator<<(std::ostream &out, const CompositePrimitive &arg) { in operator <<() argument
78 return out << toString(arg).c_str(); in operator <<()
81 std::ostream &operator<<(std::ostream &out, const Braking &arg) { in operator <<() argument
82 return out << toString(arg).c_str(); in operator <<()
85 std::ostream &operator<<(std::ostream &out, const PrimitivePwle &arg) { in operator <<() argument
87 switch (arg.getTag()) { in operator <<()
89 auto active = arg.get<PrimitivePwle::active>(); in operator <<()
104 std::ostream &operator<<(std::ostream &out, const CompositeEffect &arg) { in operator <<() argument
105 out << "(" << arg.delayMs << "ms, " << toString(arg.primitive) << ", " << arg.scale << ")"; in operator <<()
109 std::ostream &operator<<(std::ostream &out, const DspMemChunk *arg) { in operator <<() argument
110 if (arg == nullptr) { in operator <<()
115 if (arg->type() == 14) { in operator <<()
117 } else if (arg->type() == 15) { in operator <<()
120 out << arg->size() << " bytes"; in operator <<()
125 std::ostream &operator<<(std::ostream &out, Effect arg) { in operator <<() argument
126 return out << toString(arg).c_str(); in operator <<()
129 std::ostream &operator<<(std::ostream &out, EffectStrength arg) { in operator <<() argument
130 return out << toString(arg).c_str(); in operator <<()