Lines Matching full:static
23 static constexpr uint8_t BIT_MASK = 0x0F;
24 static constexpr uint8_t BIT_MASK_FF = 0xFF;
25 static constexpr uint16_t BIT16_MASK = 0x3FF;
26 static constexpr uint8_t BIT_MASK_ONE = 0x80;
27 static constexpr uint8_t BIT_MASK_TWO = 0xC0;
33 static JSTaggedValue NotSupportEval(EcmaRuntimeCallInfo *msg);
35 static JSTaggedValue IsFinite(EcmaRuntimeCallInfo *msg);
37 static JSTaggedValue IsNaN(EcmaRuntimeCallInfo *msg);
39 static JSTaggedValue DecodeURI(EcmaRuntimeCallInfo *msg);
40 static JSTaggedValue EncodeURI(EcmaRuntimeCallInfo *msg);
41 static JSTaggedValue DecodeURIComponent(EcmaRuntimeCallInfo *msg);
42 static JSTaggedValue EncodeURIComponent(EcmaRuntimeCallInfo *msg);
44 static JSTaggedValue PrintEntrypoint(EcmaRuntimeCallInfo *msg);
45 static JSTaggedValue CallJsBoundFunction(EcmaRuntimeCallInfo *msg);
46 static JSTaggedValue CallJsProxy(EcmaRuntimeCallInfo *msg);
48 static JSTaggedValue StartRuntimeStat(EcmaRuntimeCallInfo *msg);
49 static JSTaggedValue StopRuntimeStat(EcmaRuntimeCallInfo *msg);
53 static void PrintString(JSThread *thread, EcmaString *string);
54 static void PrintValue(int64_t value, int64_t tag);
55 …static JSTaggedValue Encode(JSThread *thread, const JSHandle<EcmaString> &str, judgURIFunc IsInURI…
56 …static JSTaggedValue Decode(JSThread *thread, const JSHandle<EcmaString> &str, judgURIFunc IsInURI…
57 static bool IsUnescapedURI(uint16_t ch);
58 static bool IsInUnescapedURISet(uint16_t ch);
59 static bool IsInReservedURISet(uint16_t ch);
60 static bool IsReservedURI(uint16_t ch);
61 static bool IsInMarkURISet(uint16_t ch);
62 static bool IsHexDigits(uint16_t ch);
63 static uint8_t GetValueFromTwoHex(uint16_t front, uint16_t behind);