Lines Matching defs:feature
373 * false - otherwise. Usually it is because the MEM_STATS feature is not enabled.
971 * Check if the specified feature is enabled.
973 * @return true - if the specified feature is enabled,
977 jerry_is_feature_enabled (const jerry_feature_t feature) /**< feature to check */
979 JERRY_ASSERT (feature < JERRY_FEATURE__COUNT);
983 || feature == JERRY_FEATURE_CPOINTER_32_BIT
986 || feature == JERRY_FEATURE_ERROR_MESSAGES
989 || feature == JERRY_FEATURE_JS_PARSER
992 || feature == JERRY_FEATURE_MEM_STATS
995 || feature == JERRY_FEATURE_PARSER_DUMP
998 || feature == JERRY_FEATURE_REGEXP_DUMP
1001 || feature == JERRY_FEATURE_SNAPSHOT_SAVE
1004 || feature == JERRY_FEATURE_SNAPSHOT_EXEC
1007 || feature == JERRY_FEATURE_DEBUGGER
1010 || feature == JERRY_FEATURE_VM_EXEC_STOP
1013 || feature == JERRY_FEATURE_JSON
1016 || feature == JERRY_FEATURE_PROMISE
1019 || feature == JERRY_FEATURE_SYMBOL
1022 || feature == JERRY_FEATURE_TYPEDARRAY
1025 || feature == JERRY_FEATURE_DATAVIEW
1028 || feature == JERRY_FEATURE_PROXY
1031 || feature == JERRY_FEATURE_DATE
1034 || feature == JERRY_FEATURE_REGEXP
1037 || feature == JERRY_FEATURE_LINE_INFO
1040 || feature == JERRY_FEATURE_LOGGING
1043 || feature == JERRY_FEATURE_MAP
1046 || feature == JERRY_FEATURE_SET
1049 || feature == JERRY_FEATURE_WEAKMAP
1052 || feature == JERRY_FEATURE_WEAKSET