Home | History | Annotate | Download | only in src

Lines Matching refs:YAML

830 *                                       YAML Parser                                      *
879 CV_PARSE_ERROR( *ptr == '\t' ? "Tabs are prohibited in YAML!" : "Invalid character" );
1264 if( memcmp( ptr, "%YAML:", 6 ) == 0 &&
1265 memcmp( ptr, "%YAML:1.", 8 ) != 0 )
1266 CV_PARSE_ERROR( "Unsupported YAML version (it must be 1.x)" );
1282 CV_PARSE_ERROR( "The YAML streams must start with '---', except the first one" );
1297 CV_PARSE_ERROR( "Only collections as YAML streams are supported by this parser" );
1316 * YAML Emitter *
2711 // and factor=4 for YAML ( as we use 4 bytes for non ASCII characters (e.g. \xAB))
2783 fputs( "%YAML:1.0\n", fs->file );
2798 const char* yaml_signature = "%YAML:";