Home
last modified time | relevance | path

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

/external/opencv/cxcore/src/
Dcxpersistence.cpp938 int is_parent_flow = CV_NODE_IS_FLOW(parent_flags); in icvYMLParseValue()
1361 if( CV_NODE_IS_FLOW(struct_flags) ) in icvYMLWrite()
1405 if( !CV_NODE_IS_FLOW(struct_flags) && data ) in icvYMLWrite()
1440 if( CV_NODE_IS_FLOW(struct_flags) )
1466 if( !CV_NODE_IS_FLOW(parent_flags) )
1467 fs->struct_indent += CV_YML_INDENT + CV_NODE_IS_FLOW(struct_flags);
1489 if( CV_NODE_IS_FLOW(struct_flags) ) in icvYMLEndWriteStruct()
1504 if( !CV_NODE_IS_FLOW(parent_flags) ) in icvYMLEndWriteStruct()
1505 fs->struct_indent -= CV_YML_INDENT + CV_NODE_IS_FLOW(struct_flags); in icvYMLEndWriteStruct()
2365 if( !CV_NODE_IS_FLOW(struct_flags) )
/external/opencv/cxcore/include/
Dcxtypes.h1684 #define CV_NODE_IS_FLOW(flags) (((flags) & CV_NODE_FLOW) != 0) macro