Home
last modified time | relevance | path

Searched refs:l (Results 1 – 23 of 23) sorted by relevance

/base/update/updater/services/script/yacc/
Dparser.hpp405 syntax_error(const location_type& l, const std::string& m) in syntax_error()
406 : std::runtime_error(m), location(l) {} in syntax_error()
633 basic_symbol(typename Base::kind_type t, location_type&& l) in basic_symbol()
634 : Base (t), location (std::move (l)) {} in basic_symbol()
636 basic_symbol(typename Base::kind_type t, const location_type& l) in basic_symbol()
637 : Base (t), location (l) {} in basic_symbol()
640 basic_symbol(typename Base::kind_type t, ScriptFunction*&& v, location_type&& l) in basic_symbol()
641 : Base (t), value (std::move (v)), location (std::move (l)) {} in basic_symbol()
643 basic_symbol(typename Base::kind_type t, const ScriptFunction*& v, const location_type& l) in basic_symbol()
644 : Base (t), value (v), location (l) {} in basic_symbol()
[all …]
Dlocation.hh43 explicit position(filename_type* f = YY_NULLPTR, counter_type l = 1, counter_type c = 1) in position() argument
44 : filename (f), line (l), column (c) {} in position()
47 void initialize(filename_type* fn = YY_NULLPTR, counter_type l = 1, counter_type c = 1) in initialize() argument
50 line = l; in initialize()
131 explicit location (filename_type* f, counter_type l = 1, counter_type c = 1) in location() argument
132 : begin (f, l, c), end (f, l, c) {} in location()
134 void initialize(filename_type* f = YY_NULLPTR, counter_type l = 1, counter_type c = 1) in initialize() argument
136 begin.initialize (f, l, c); in initialize()
Dparser.cpp789 void Parser::set_debug_level(debug_level_type l) in set_debug_level() argument
791 yydebug_ = l; in set_debug_level()
/base/hiviewdfx/hiview/adapter/utility/platform/windows/
Dtime_util.cpp85 struct tm *l = std::localtime(&now); in Get0ClockStampMs() local
86 if (l != nullptr) { in Get0ClockStampMs()
87 l->tm_hour = 0; in Get0ClockStampMs()
88 l->tm_min = 0; in Get0ClockStampMs()
89 l->tm_sec = 0; in Get0ClockStampMs()
90 zero = std::mktime(l) * SEC_TO_MILLISEC; // time is 00:00:00 in Get0ClockStampMs()
/base/hiviewdfx/hiview/adapter/utility/platform/ohos/
Dtime_util.cpp100 struct tm *l = std::localtime(&now); in Get0ClockStampMs() local
101 if (l != nullptr) { in Get0ClockStampMs()
102 l->tm_hour = 0; in Get0ClockStampMs()
103 l->tm_min = 0; in Get0ClockStampMs()
104 l->tm_sec = 0; in Get0ClockStampMs()
105 zero = std::mktime(l) * SEC_TO_MILLISEC; // time is 00:00:00 in Get0ClockStampMs()
/base/hiviewdfx/hiview/adapter/utility/platform/linux/
Dtime_util.cpp99 struct tm *l = std::localtime(&now); in Get0ClockStampMs() local
100 if (l != nullptr) { in Get0ClockStampMs()
101 l->tm_hour = 0; in Get0ClockStampMs()
102 l->tm_min = 0; in Get0ClockStampMs()
103 l->tm_sec = 0; in Get0ClockStampMs()
104 zero = std::mktime(l) * SEC_TO_MILLISEC; // time is 00:00:00 in Get0ClockStampMs()
/base/powermgr/thermal_manager/services/native/include/thermal_policy/
Dthermal_policy.h71 static bool LevelCompare(const PolicyConfig& r, const PolicyConfig& l) in LevelCompare() argument
73 return r.level < l.level; in LevelCompare()
76 …bool operator()(const std::shared_ptr<IThermalAction> &l, const std::shared_ptr<IThermalAction> &r… in operator()
78 return l < r; in operator()
/base/hiviewdfx/hidumper/frameworks/native/src/util/
Dstring_utils.cpp89 size_t l = str.length(); in HexToDec() local
90 for (size_t i = 0; i < l; i++) { in HexToDec()
92 value += (str[i] - '0') * pow(HEX_STR, l - 1 - i); in HexToDec()
94 value += (str[i] - 'A' + DEC_STR) * pow(HEX_STR, l - 1 - i); in HexToDec()
/base/hiviewdfx/hilog_lite/frameworks/featured/
Dhiview_log.c1024 SecInt64 l; /* temp long value */ in HiLogSecOutputS() local
1034 l = (SecInt64)va_arg(arglist, SecInt64); in HiLogSecOutputS()
1036 l = (SecInt64)va_arg(arglist, SecInt64); in HiLogSecOutputS()
1040 l = (long)va_arg(arglist, long); in HiLogSecOutputS()
1045 l = (char)va_arg(arglist, int); /* sign extend */ in HiLogSecOutputS()
1046 … if (l >= 128) { /* on some platform, char is always unsigned */ in HiLogSecOutputS()
1047 SecUnsignedInt64 tmpL = (SecUnsignedInt64)l; in HiLogSecOutputS()
1050 l = tch + 1; in HiLogSecOutputS()
1053 l = (unsigned char)va_arg(arglist, int); /* zero-extend */ in HiLogSecOutputS()
1057 l = (short)va_arg(arglist, int); /* sign extend */ in HiLogSecOutputS()
[all …]
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_pack.cpp71 void AddEventParam(std::shared_ptr<AppEventPack> appEventPack, const std::string& key, long l) in AddEventParam() argument
76 appEventPack->AddParam(key, l); in AddEventParam()
79 void AddEventParam(std::shared_ptr<AppEventPack> appEventPack, const std::string& key, long long l) in AddEventParam() argument
84 appEventPack->AddParam(key, l); in AddEventParam()
Dhiappevent_base.cpp271 void AppEventPack::AddParam(const std::string& key, long l) in AddParam() argument
274 appEventParam.value.valueUnion.l_ = l; in AddParam()
/base/miscservices/pasteboard/services/core/include/
Dpasteboard_service.h61 …bool operator() (const sptr<IPasteboardChangedObserver>& l, const sptr<IPasteboardChangedObserver>… in operator()
63 return l->AsObject() < r->AsObject(); in operator()
/base/msdp/device_status/services/native/include/
Ddevicestatus_manager.h64 … bool operator()(const sptr<IdevicestatusCallback> &l, const sptr<IdevicestatusCallback> &r) const in operator()
66 return l->AsObject() < r->AsObject(); in operator()
/base/powermgr/thermal_manager/services/native/include/thermal_action/action/
Daction_thermal_level.h64 … bool operator()(const sptr<IThermalLevelCallback> &l, const sptr<IThermalLevelCallback> &r) const in operator()
66 return l->AsObject() < r->AsObject(); in operator()
/base/powermgr/thermal_manager/services/native/include/thermal_observer/
Dthermal_observer.h67 … bool operator() (const sptr<IThermalTempCallback>& l, const sptr<IThermalTempCallback>& r) const in operator()
69 return l->AsObject() < r->AsObject(); in operator()
/base/hiviewdfx/hidumper/services/native/include/
Draw_param.h70 … bool operator() (const sptr<IDumpCallbackBroker>& l, const sptr<IDumpCallbackBroker>& r) const in operator()
72 return l->AsObject() < r->AsObject(); in operator()
/base/hiviewdfx/hilog/frameworks/native/
Doutput_p.inl215 case SECUREC_CHAR('l'):
216 if (**format == SECUREC_CHAR('l')) {
328 static wchar_t wStrNullString[8] = { L'(', L'n', L'u', L'l', L'l', L')', L'\0', L'\0' };
439 7: 'h', 'l', 'L', 'F', 'w' , 'N','z','q','t','j'
911 SecInt64 l; /* temp long value */ local
919 /* read argument into variable l */
921 l = (SecInt64)va_arg(arglist, SecInt64);
923 l = (SecInt64)va_arg(arglist, SecInt64);
927 l = (long)va_arg(arglist, long);
932 l = (char)va_arg(arglist, int); /* sign extend */
[all …]
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_pack.h32 void AddEventParam(std::shared_ptr<AppEventPack> appEventPack, const std::string& key, long l);
33 void AddEventParam(std::shared_ptr<AppEventPack> appEventPack, const std::string& key, long long l);
Dhiappevent_base.h167 void AddParam(const std::string& key, long l);
/base/powermgr/power_manager/services/native/include/
Dpower_state_machine.h154 … bool operator() (const sptr<IPowerStateCallback>& l, const sptr<IPowerStateCallback>& r) const in operator()
156 return l->AsObject() < r->AsObject(); in operator()
/base/hiviewdfx/hidumper/frameworks/native/src/executor/
Dsa_dumper.cpp200 for (size_t i = 0, l = names_.size(); i < l; ++i) { in Execute() local
/base/hiviewdfx/hilog/
DREADME_zh.md138 | -l | …
165 示例:hilog -w start -f "hilog" -l 66k -m zlib -n 10
/base/miscservices/time/services/timer/src/
Dtimer_manager.cpp440 [] (const std::shared_ptr<TimerInfo> &l, const std::shared_ptr<TimerInfo> &r) { in TriggerTimersLocked() argument
441 return l->whenElapsed < r->whenElapsed; in TriggerTimersLocked()