Home
last modified time | relevance | path

Searched refs:FunctionType (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dfunction.cpp98 enum class FunctionType { enum
553 FunctionType functionType = FunctionType::Invalid; in convertFunctionToExpression()
557 functionType = interpolatable(type) ? FunctionType::Exponential : FunctionType::Interval; in convertFunctionToExpression()
562 functionType = FunctionType::Interval; in convertFunctionToExpression()
564 functionType = FunctionType::Exponential; in convertFunctionToExpression()
566 functionType = FunctionType::Categorical; in convertFunctionToExpression()
568 functionType = FunctionType::Identity; in convertFunctionToExpression()
575 case FunctionType::Interval: in convertFunctionToExpression()
577 case FunctionType::Exponential: in convertFunctionToExpression()
597 if (functionType == FunctionType::Identity) { in convertFunctionToExpression()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/
H A Dyacc.py2877 if isinstance(self.error_func,types.FunctionType):
2969 if isinstance(item,(types.FunctionType,types.MethodType)):
3020 if n[0:2] == 'p_' and isinstance(v, (types.FunctionType, types.MethodType)): continue
3024 if ((isinstance(v,types.FunctionType) and func_code(v).co_argcount == 1) or
H A Dlex.py494 if type(handle) in (types.FunctionType, types.MethodType):