Searched refs:YAML (Results 1 - 9 of 9) sorted by relevance

/external/clang/unittests/Tooling/
H A DReplacementsYamlTest.cpp34 yaml::Output YAML(YamlContentStream);
35 YAML << Doc;
69 yaml::Input YAML(YamlContent);
70 YAML >> DocActual;
71 ASSERT_FALSE(YAML.error());
96 yaml::Input YAML(YamlContent);
97 YAML >> DocActual;
98 ASSERT_FALSE(YAML.error());
/external/antlr/antlr-3.4/runtime/Perl5/tools/
H A Dport.pl11 use YAML::Tiny;
116 my $port = YAML::Tiny->read('port.yml');
139 my $port = YAML::Tiny->read('port.yml');
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
H A DResolver.java48 public static final Pattern YAML = Pattern.compile("^(?:!|&|\\*)$"); field in class:Resolver
69 addImplicitResolver(Tag.YAML, YAML, "!&*");
/external/llvm/lib/MC/
H A DAndroid.mk52 YAML.cpp
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DTag.java33 public static final Tag YAML = new Tag(PREFIX + "yaml"); field in class:Tag
/external/llvm/tools/obj2yaml/
H A Delf2yaml.cpp433 std::unique_ptr<ELFYAML::Object> YAML(YAMLOrErr.get());
435 Yout << *YAML; local
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp830 * 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
[all...]
/external/opencv3/modules/core/src/
H A Dpersistence.cpp946 * YAML Parser *
991 CV_PARSE_ERROR( *ptr == '\t' ? "Tabs are prohibited in YAML!" : "Invalid character" );
1358 if( memcmp( ptr, "%YAML:", 6 ) == 0 &&
1359 memcmp( ptr, "%YAML:1.", 8 ) != 0 )
1360 CV_PARSE_ERROR( "Unsupported YAML version (it must be 1.x)" );
1376 CV_PARSE_ERROR( "The YAML streams must start with '---', except the first one" );
1393 CV_PARSE_ERROR( "Only collections as YAML streams are supported by this parser" );
1410 * YAML Emitter *
2747 // and factor=4 for YAML ( as we use 4 bytes for non ASCII characters (e.g. \xAB))
2835 icvPuts( fs, "%YAML
[all...]
/external/clang/unittests/Format/
H A DFormatTest.cpp10070 std::string YAML = configurationAsText(Style); local
10073 EXPECT_EQ(0, parseConfiguration(YAML, &ParsedStyle).value());

Completed in 788 milliseconds