HomeSort by relevance Sort by last modified time
    Searched defs:yaml (Results 1 - 7 of 7) sorted by null

  /external/llvm/utils/obj2yaml/
obj2yaml.h 22 namespace yaml { // routines for writing YAML namespace
obj2yaml.cpp 24 namespace yaml { // generic yaml-writing specific routines namespace
coff2yaml.cpp 208 namespace yaml { // COFF-specific yaml-writing specific routines namespace
229 } // end of yaml namespace
250 return yaml::writeHexNumber(Out, Header->Machine) << ")" << endl << endl;
264 yaml::writeName(Out, sect->Name, sizeof(sect->Name)) << endl;
267 yaml::writeBitMask(Out, SectionCharacteristicsPairs1, sect->Characteristics);
271 yaml::writeBitMask(Out, SectionCharacteristicsPairs2, sect->Characteristics);
273 yaml::writeHexNumber(Out, sect->Characteristics) << endl;
278 yaml::writeHexStream(Out, sectionData) << endl;
287 yaml::writeHexNumber(Out, reloc->VirtualAddress) << endl
    [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 37 import yaml namespace
101 REDIRECT_FILE = 'redirects.yaml' # Name of file that contains redirect table
172 # Apply manual redirects from redirects.yaml. This occurs before any
221 Redirect rules are typically stored in a file named redirects.yaml. See the
285 # Redircts are defined in a file named redirects.yaml.
288 data = yaml.load(f)
301 # Check to make sure we actually got an iterable list out of the YAML file
304 '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();
56 namespace yaml { namespace in namespace:llvm
76 /// @brief This class represents a YAML stream potentially containing multiple
100 /// @brief Validate a %YAML x.x directive
    [all...]
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 
  /external/llvm/lib/Support/
YAMLParser.cpp 1 //===--- YAMLParser.cpp - Simple YAML parser ------------------------------===//
10 // This file implements a YAML parser.
27 using namespace yaml;
99 namespace yaml { namespace in namespace:llvm
100 /// Token - A single YAML token.
250 namespace yaml { namespace in namespace:llvm
251 /// @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 462 milliseconds