Home
last modified time | relevance | path

Searched refs:toYAML (Results 1 – 25 of 273) sorted by relevance

1234567891011

/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/HsYAML-0.2.1.0/src/Data/
H A DYAML.hs677 toYAML = toUnit function
708 toYAML (Just a) = toYAML a function
715 toYAML = Sequence () tagSeq . map toYAML function
718toYAML kv = Mapping () tagMap (Map.fromList $ map (\(k,v) -> (toYAML k , toYAML v)) (Map.toList kv… function
721 toYAML (a,b) = toYAML [toYAML a, toYAML b] function
724 toYAML (a,b,c) = toYAML [toYAML a, toYAML b, toYAML c] function
727 toYAML (a,b,c,d) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d] function
730 toYAML (a,b,c,d,e) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e] function
733 toYAML (a,b,c,d,e,f) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f] function
736toYAML (a,b,c,d,e,f,g) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f, toYAM… function
[all …]
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/HsYAML-0.2.1.0/src/Data/
H A DYAML.hs677 toYAML = toUnit function
708 toYAML (Just a) = toYAML a function
715 toYAML = Sequence () tagSeq . map toYAML function
718toYAML kv = Mapping () tagMap (Map.fromList $ map (\(k,v) -> (toYAML k , toYAML v)) (Map.toList kv… function
721 toYAML (a,b) = toYAML [toYAML a, toYAML b] function
724 toYAML (a,b,c) = toYAML [toYAML a, toYAML b, toYAML c] function
727 toYAML (a,b,c,d) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d] function
730 toYAML (a,b,c,d,e) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e] function
733 toYAML (a,b,c,d,e,f) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f] function
736toYAML (a,b,c,d,e,f,g) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f, toYAM… function
[all …]
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/HsYAML-0.2.1.0/src/Data/
H A DYAML.hs677 toYAML = toUnit function
708 toYAML (Just a) = toYAML a function
715 toYAML = Sequence () tagSeq . map toYAML function
718toYAML kv = Mapping () tagMap (Map.fromList $ map (\(k,v) -> (toYAML k , toYAML v)) (Map.toList kv… function
721 toYAML (a,b) = toYAML [toYAML a, toYAML b] function
724 toYAML (a,b,c) = toYAML [toYAML a, toYAML b, toYAML c] function
727 toYAML (a,b,c,d) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d] function
730 toYAML (a,b,c,d,e) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e] function
733 toYAML (a,b,c,d,e,f) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f] function
736toYAML (a,b,c,d,e,f,g) = toYAML [toYAML a, toYAML b, toYAML c, toYAML d, toYAML e, toYAML f, toYAM… function
[all …]
/dports/textproc/syck/syck-0.70/ext/cocoa/src/
H A DYAMLCocoaCategories.h17 - (id)toYAML;
22 - (id)toYAML;
27 - (id)toYAML;
32 - (id)toYAML;
37 - (id)toYAML;
44 - (id)toYAML;
50 - (id)toYAML;
H A DYAMLCategories.m136 - (id)toYAML
195 anObject = [anObject toYAML];
206 - (id)toYAML
313 object = [object toYAML];
331 - (id)toYAML
372 return [self toYAML];
399 return [YAMLWrapper wrapperWithData:[self toYAML] tag:[self class]];
401 return [self toYAML];
404 -(id) toYAML
417 -(id) toYAML
H A DYAMLCocoaCategories.m66 -(id) toYAML
146 -(id) toYAML
171 -(id) toYAML
203 -(id) toYAML
233 -(id) toYAML
249 -(id) toYAML
282 -(id) toYAML
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/HsYAML-aeson-0.2.0.0/src/Data/YAML/
H A DAeson.hs203 toYAML J.Null = Scalar () SNull function
204 toYAML (J.Bool b) = toYAML b function
205 toYAML (J.String txt) = toYAML txt function
206 toYAML (J.Number sc) = case floatingOrInteger sc :: Either Double Integer of function
207 Right d -> toYAML d
208 Left int -> toYAML int
209 toYAML (J.Array a) = toYAML (V.toList a) function
210 toYAML (J.Object o) = toYAML (Map.fromList (HM.toList o)) function
243 encodeValue' schemaEncoder encoding values = Y.encodeNode' schemaEncoder encoding (map (Doc. toYAML
/dports/www/gohugo/hugo-0.91.2/docs/content/en/commands/
H A Dhugo_convert_toYAML.md2 title: "hugo convert toYAML"
6 ## hugo convert toYAML
12 toYAML converts all front matter in the content directory
16 hugo convert toYAML [flags] argument
22 -h, --help help for toYAML
/dports/devel/py-munch/munch-2.5.0/tests/
H A Dtest_yaml.py34 assert b.toYAML(default_flow_style=True) == '{foo: [bar, {lol: true}], hello: 42}\n'
36 assert b.toYAML(Dumper=yaml.Dumper, default_flow_style=True) == \
47 assert obj.toYAML() == yaml_str
60 assert obj.toYAML() == yaml_str
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/llvm13/llvm-project-13.0.1.src/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
80 std::string toYAML(const Ref &);
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/clangd/index/
H A DSerialization.h77 std::string toYAML(const Symbol &);
78 std::string toYAML(const std::pair<SymbolID, ArrayRef<Ref>> &);
79 std::string toYAML(const Relation &);
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/doctemplates-0.9/src/Text/DocTemplates/
H A DInternal.hs272 toYAML (Context m) = toYAML m function
275 toYAML NullVal = toYAML (Nothing :: Maybe Text) function
276 toYAML (MapVal m) = toYAML m function
277 toYAML (ListVal xs) = toYAML xs function
278 toYAML (SimpleVal d) = toYAML $ toText $ DL.render Nothing d function
279 toYAML (BoolVal b) = toYAML b function
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/clangd/unittests/remote/
H A DMarshallingTests.cpp136 EXPECT_EQ(toYAML(Sym), toYAML(*Deserialized)); in TEST()
195 EXPECT_EQ(toYAML(Ref), toYAML(*Deserialized)); in TEST()
252 EXPECT_EQ(toYAML(Sym), toYAML(*Deserialized)); in TEST()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/clangd/unittests/remote/
H A DMarshallingTests.cpp136 EXPECT_EQ(toYAML(Sym), toYAML(*Deserialized)); in TEST()
195 EXPECT_EQ(toYAML(Ref), toYAML(*Deserialized)); in TEST()
252 EXPECT_EQ(toYAML(Sym), toYAML(*Deserialized)); in TEST()

1234567891011