Home
last modified time | relevance | path

Searched refs:basicType (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/params/
H A Drs_render_params.h35 #define RENDER_BASIC_PARAM_TO_STRING(basicType) (std::string(#basicType "[") + std::to_string(basic… argument
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkComponent.ts3220 type basicType = string | number | bigint | boolean | symbol | undefined | object | null;
3221 const isString = (val: basicType): boolean => typeof val === 'string';
3222 const isNumber = (val: basicType): boolean => typeof val === 'number';
3223 const isBigint = (val: basicType): boolean => typeof val === 'bigint';
3224 const isBoolean = (val: basicType): boolean => typeof val === 'boolean';
3225 const isSymbol = (val: basicType): boolean => typeof val === 'symbol';
3226 const isUndefined = (val: basicType): boolean => typeof val === 'undefined';
3227 const isObject = (val: basicType): boolean => typeof val === 'object';
3228 const isFunction = (val: basicType): boolean => typeof val === 'function';