OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:yaml
(Results
1 - 12
of
12
) sorted by null
/external/llvm/lib/Object/
ELFYAML.cpp
10
// This file defines classes for handling the
YAML
representation of ELF.
17
namespace
yaml
{
namespace in namespace:llvm
336
} // end namespace
yaml
COFFYAML.cpp
10
// This file defines classes for handling the
YAML
representation of COFF.
25
namespace
yaml
{
namespace in namespace:llvm
261
IO.mapOptional("AuxiliaryData", S.AuxiliaryData, object::
yaml
::BinaryRef());
/external/llvm/include/llvm/Object/
YAML.h
1
//===-
YAML
.h - YAMLIO utilities for object files ---------------*- C++ -*-===//
10
// This file declares utility classes for handling the
YAML
representation of
22
namespace
yaml
{
namespace in namespace:llvm::object
29
/// It renders as a string of hex digits in a
YAML
file.
30
/// For example, it might render as `DEADBEEFCAFEBABE` (
YAML
does not
43
/// The
YAML
mapping:
54
/// namespace
yaml
{
61
/// } // end namespace
yaml
106
namespace
yaml
{
namespace in namespace:llvm
107
template <> struct ScalarTraits<object::
yaml
::BinaryRef>
[
all
...]
COFFYAML.h
10
// This file declares classes for handling the
YAML
representation of COFF.
17
#include "llvm/Object/
YAML
.h"
35
// The structure of the
yaml
files is not an exact 1:1 match to COFF. In order
36
// to use
yaml
::IO, we use these structures which are closer to the source.
47
object::
yaml
::BinaryRef SectionData;
57
object::
yaml
::BinaryRef AuxiliaryData;
76
namespace
yaml
{
namespace in namespace:llvm
138
} // end namespace
yaml
ELFYAML.h
11
/// \brief This file declares classes for handling the
YAML
representation
19
#include "llvm/Object/
YAML
.h"
53
llvm::
yaml
::Hex64 Entry;
59
llvm::
yaml
::Hex64 Value;
60
llvm::
yaml
::Hex64 Size;
71
llvm::
yaml
::Hex64 Address;
72
object::
yaml
::BinaryRef Content;
74
llvm::
yaml
::Hex64 AddressAlign;
80
// cleaner and nicer if we read them from the
YAML
as a separate
93
namespace
yaml
{
namespace in namespace:llvm
[
all
...]
/external/llvm/unittests/Object/
YAMLTest.cpp
1
//===- llvm/unittest/Object/YAMLTest.cpp - Tests for Object
YAML
----------===//
10
#include "llvm/Object/
YAML
.h"
17
object::
yaml
::BinaryRef Binary;
21
namespace
yaml
{
namespace in namespace:llvm
28
} // end namespace
yaml
35
yaml
::Output YOut(OS);
/development/scripts/app_engine_server/
memcache_zipserve.py
38
import
yaml
namespace
102
REDIRECT_FILE = 'redirects.
yaml
' # Name of file that contains redirect table
173
# Apply manual redirects from redirects.
yaml
. This occurs before any
222
Redirect rules are typically stored in a file named redirects.
yaml
. See the
286
# Redircts are defined in a file named redirects.
yaml
.
289
data =
yaml
.load(f)
302
# Check to make sure we actually got an iterable list out of the
YAML
file
305
'
YAML
.')
/external/llvm/include/llvm/Support/
YAMLParser.h
1
//===--- YAMLParser.h - Simple
YAML
parser --------------------------------===//
10
// This is a
YAML
1.2 parser.
12
// See http://www.
yaml
.org/spec/1.2/spec.html for the full standard.
20
// The most important class here is Stream. This represents a
YAML
stream with
25
//
yaml
::Stream stream(input, sm);
27
// for (
yaml
::document_iterator di = stream.begin(), de = stream.end();
29
//
yaml
::Node *n = di->getRoot();
55
namespace
yaml
{
namespace in namespace:llvm
75
/// @brief This class represents a
YAML
stream potentially containing multiple
103
/// @brief Validate a %
YAML
x.x directive
[
all
...]
YAMLTraits.h
30
namespace
yaml
{
namespace in namespace:llvm
34
/// to/from a
YAML
mapping. For example:
51
/// to/from a
YAML
scalar where there is a one-to-one mapping between
52
/// in-memory values and a string in
YAML
. For example:
69
/// of bit values and the
YAML
representation is a flow sequence of
87
/// to/from a
yaml
scalar. For example:
115
/// to/from a
YAML
sequence. For example:
134
// The following is option and will cause generated
YAML
to use
141
/// to/from a list of
YAML
documents.
603
// to [de]normalize an object for use with
YAML
conversion
[
all
...]
/external/llvm/unittests/Support/
YAMLIOTest.cpp
18
using llvm::
yaml
::Input;
19
using llvm::
yaml
::Output;
20
using llvm::
yaml
::IO;
21
using llvm::
yaml
::MappingTraits;
22
using llvm::
yaml
::MappingNormalization;
23
using llvm::
yaml
::ScalarTraits;
24
using llvm::
yaml
::Hex8;
25
using llvm::
yaml
::Hex16;
26
using llvm::
yaml
::Hex32;
27
using llvm::
yaml
::Hex64
44
namespace
yaml
{
namespace in namespace:llvm
151
namespace
yaml
{
namespace in namespace:llvm
299
namespace
yaml
{
namespace in namespace:llvm
373
namespace
yaml
{
namespace in namespace:llvm
465
namespace
yaml
{
namespace in namespace:llvm
547
namespace
yaml
{
namespace in namespace:llvm
573
namespace
yaml
{
namespace in namespace:llvm
645
namespace
yaml
{
namespace in namespace:llvm
757
namespace
yaml
{
namespace in namespace:llvm
870
namespace
yaml
{
namespace in namespace:llvm
[
all
...]
/external/clang/lib/Format/
Format.cpp
35
namespace
yaml
{
namespace in namespace:llvm
70
static void mapping(llvm::
yaml
::IO &IO, clang::format::FormatStyle &Style) {
283
llvm::
yaml
::Input Input(Text);
291
llvm::
yaml
::Output Output(Stream);
[
all
...]
/external/llvm/lib/Support/
YAMLParser.cpp
1
//===--- YAMLParser.cpp - Simple
YAML
parser ------------------------------===//
10
// This file implements a
YAML
parser.
26
using namespace
yaml
;
98
namespace
yaml
{
namespace in namespace:llvm
99
/// Token - A single
YAML
token.
249
namespace
yaml
{
namespace in namespace:llvm
250
/// @brief Scans
YAML
tokens from a MemoryBuffer.
302
// The following functions are based on the gramar rules in the
YAML
spec. The
474
/// @brief Current
YAML
indentation level in spaces.
507
} // end namespace
yaml
[
all
...]
Completed in 296 milliseconds