/external/llvm/utils/yaml-bench/ |
Makefile | 1 ##===- utils/yaml-bench/Makefile ---------------------------*- Makefile -*-===## 11 TOOLNAME = yaml-bench
|
YAMLBench.cpp | 10 // This program executes the YAMLParser on differntly sized YAML texts and 36 , cl::desc("Print the canonical YAML for this file.") 66 static void dumpNode( yaml::Node *n 76 if (yaml::ScalarNode *sn = dyn_cast<yaml::ScalarNode>(n)) { 79 outs() << "!!str \"" << yaml::escape(Val) << "\""; 80 } else if (yaml::SequenceNode *sn = dyn_cast<yaml::SequenceNode>(n)) { 83 for (yaml::SequenceNode::iterator i = sn->begin(), e = sn->end(); 90 } else if (yaml::MappingNode *mn = dyn_cast<yaml::MappingNode>(n)) [all...] |
/external/chromium_org/native_client_sdk/src/gonacl_appengine/ |
Makefile | 11 dev_appserver.py app.yaml
|
/external/llvm/lib/Object/ |
YAML.cpp | 1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===// 10 // This file defines utility classes for handling the YAML representation of 15 #include "llvm/Object/YAML.h" 20 using namespace object::yaml; 22 void yaml::ScalarTraits<object::yaml::BinaryRef>::output( 23 const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) { 27 StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input( 28 StringRef Scalar, void *, object::yaml::BinaryRef &Val) [all...] |
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());
|
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
|
/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);
|
/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...] |
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...] |
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
|
/external/llvm/unittests/Support/ |
YAMLParserTest.cpp | 35 yaml::Stream Stream(Input, SM); 44 yaml::Stream Stream(Input, SM); 149 yaml::Stream Stream(StringInArray, SM); 150 yaml::SequenceNode *ParsedSequence 151 = dyn_cast<yaml::SequenceNode>(Stream.begin()->getRoot()); 153 = dyn_cast<yaml::ScalarNode>( 154 static_cast<yaml::Node*>(ParsedSequence->begin()))->getRawValue(); 186 yaml::Stream Stream("[\"1\", \"2\", \"3\", \"4\", \"5\", \"6\"]", SM); 187 yaml::SequenceNode *Array 188 = dyn_cast<yaml::SequenceNode>(Stream.begin()->getRoot()) [all...] |
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/Tooling/ |
JSONCompilationDatabase.cpp | 232 llvm::yaml::document_iterator I = YAMLStream.begin(); 234 ErrorMessage = "Error while parsing YAML."; 237 llvm::yaml::Node *Root = I->getRoot(); 239 ErrorMessage = "Error while parsing YAML."; 242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root); 247 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(), 250 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI); 255 llvm::yaml::ScalarNode *Directory = NULL [all...] |
/external/clang/include/clang/Tooling/ |
JSONCompilationDatabase.h | 94 // corresponding nodes in the YAML stream. 95 typedef std::pair<llvm::yaml::ScalarNode*, 96 llvm::yaml::ScalarNode*> CompileCommandRef; 109 llvm::yaml::Stream YAMLStream;
|
/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/tools/obj2yaml/ |
coff2yaml.cpp | 67 Sec.SectionData = object::yaml::BinaryRef(sectionData); 101 Sym.AuxiliaryData = object::yaml::BinaryRef(Obj.getSymbolAuxData(Symbol)); 116 yaml::Output Yout(Out);
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
app_yaml_helper.py | 20 '''Parses the app.yaml file, and is able to step back in the host file 34 '''Extracts the 'version' key from the contents of an app.yaml file. 37 # We could properly parse this using a yaml library but Python doesn't have 53 '''Return whether the app.yaml version |lhs| > |rhs|. This is tricky 88 '''Finds the first revision that the version in app.yaml was greater than 116 # Back up a revision then find when app.yaml was last updated before then.
|
/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...] |
YAMLTraits.cpp | 19 using namespace yaml;
|
/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/chromium_org/native_client_sdk/src/doc/ |
Makefile | 196 cp _reference_toc.yaml $(BUILDDIR)/devsite-staging/
|
/external/llvm/tools/yaml2obj/ |
yaml2coff.cpp | 1 //===- yaml2coff - Convert YAML to a COFF object file ---------------------===// 29 /// This parses a yaml stream that represents a COFF object file. 30 /// See docs/yaml2obj for the yaml scheema. 265 yaml::Input YIn(Buf->getBuffer()); 269 errs() << "yaml2obj: Failed to parse YAML file!\n"; 275 errs() << "yaml2obj: Failed to parse YAML file!\n";
|
yaml2elf.cpp | 1 //===- yaml2elf - Convert YAML to a ELF object file -----------------------===// 96 // Used to keep track of section names, so that in the YAML file sections 202 << "' by YAML symbol " << Sym.Name << ".\n"; 297 << "' at YAML section number " << i << ".\n"; 329 << "' at YAML section number " << i << ".\n"; 375 yaml::Input YIn(Buf->getBuffer()); 379 errs() << "yaml2obj: Failed to parse YAML file!\n";
|
/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...] |