| /external/protobuf/python/google/protobuf/pyext/ |
| repeated_composite_container.h | 37 #include <Python.h> 58 namespace python { namespace in namespace:google::protobuf 77 // proto tree. Every Python RepeatedCompositeContainer holds a 79 // Python object that references any part of the tree. 175 } // namespace python
|
| repeated_scalar_container.h | 37 #include <Python.h> 57 namespace python { namespace in namespace:google::protobuf 65 // proto tree. Every Python RepeatedScalarContainer holds a 67 // Python object that references any part of the tree. 118 } // namespace python
|
| map_container.h | 34 #include <Python.h> 55 namespace python { namespace in namespace:google::protobuf 66 // proto tree. Every Python MapContainer holds a 68 // Python object that references any part of the tree. 138 } // namespace python
|
| extension_dict.cc | 51 namespace python { namespace in namespace:google::protobuf 335 } // namespace python
|
| repeated_scalar_container.cc | 54 #error "Python 3.0 - 3.2 are not supported." 63 namespace python { namespace in namespace:google::protobuf 571 // also a repeated scalar container, into Python lists so we can delegate 810 } // namespace python
|
| message.h | 37 #include <Python.h> 62 namespace python { namespace in namespace:google::protobuf 71 // proto tree. Every Python CMessage holds a reference to it in 72 // order to keep it alive as long as there's a Python object that 104 // A reference to a Python dictionary containing CMessage, 107 // Python wrapper for the C++ Message objects on every access, or 135 // The Python DescriptorPool used to create the class. It is needed to resolve 152 // Internal function to create a new empty Message Python object, but with empty 165 // Retrieves the C++ descriptor of a Python Extension descriptor. 201 // Returns a new python reference [all...] |
| descriptor_pool.cc | 33 #include <Python.h> 46 #error "Python 3.0 - 3.2 are not supported." 56 namespace python { namespace in namespace:google::protobuf 58 // A map to cache Python Pools per C++ pointer. 64 // Create a Python DescriptorPool object, but does not fill the "pool" 91 // Create a Python DescriptorPool, using the given pool as an underlay: 327 // But these AddDescriptor() functions were created in Python and some people 386 // propagated in the python exception instead of only living in ERROR logs. 473 // TODO(amauryfa): Understand why the Python implementation differs from 552 // The Pool of messages declared in Python libraries [all...] |
| repeated_composite_container.cc | 59 namespace python { namespace in namespace:google::protobuf 346 // Since Python protobuf objects are never arena-allocated, adding and 610 } // namespace python
|
| map_container.cc | 56 namespace python { namespace in namespace:google::protobuf 114 // Consumes a reference on the Python string object. [all...] |
| descriptor.cc | 33 #include <Python.h> 53 #error "Python 3.0 - 3.2 are not supported." 63 namespace python { namespace in namespace:google::protobuf 66 // Python object. Objects are not immortal: this map does not own the 77 // Check that the calling Python code is the global scope of a _pb2.py module. 176 // Converts options into a Python protobuf, and cache the result. 199 // Build the Options object: get its Python class, and make a copy of the C++ 256 // Copy the C++ descriptor to a Python message. 257 // The Python message is an instance of descriptor_pb2.DescriptorProto 303 // Creates or retrieve a Python descriptor of the specified type [all...] |
| descriptor_containers.cc | 37 // Python objects on the fly. 49 // because the Python API is based on C, and does not play well with C++ 52 #include <Python.h> 65 #error "Python 3.0 - 3.2 are not supported." 75 namespace python { namespace in namespace:google::protobuf 107 // Converts a item C++ descriptor to a Python object. Returns a new reference. 162 // Returns the C++ item descriptor for a given Python key. [all...] |
| message.cc | 43 #include <structmember.h> // A Python header file. 78 #error "Python 3.0 - 3.2 are not supported." 91 namespace python { namespace in namespace:google::protobuf 292 // Cache the descriptor, both as Python object and as C++ pointer. 337 // Python 3.4 has already included the fix for the issue that this 339 // https://bugs.python.org/issue17936. 733 // the members of the Python message object, but can happen if the values were 790 // No python reference to this field so no need to release. [all...] |
| /external/protobuf/src/google/protobuf/compiler/python/ |
| python_generator.h | 33 // Generates Python code for a given .proto file. 56 namespace python { namespace in namespace:google::protobuf::compiler 58 // CodeGenerator implementation for generated Python protocol buffer classes. 60 // Python output, you can do so by registering an instance of this 167 } // namespace python
|
| python_plugin_unittest.cc | 42 #include <google/protobuf/compiler/python/python_generator.h> 55 namespace python { namespace in namespace:google::protobuf::compiler 98 python::Generator python_generator; 119 } // namespace python
|
| python_generator.cc | 35 // This module outputs pure-Python protocol message classes that will 37 // In other words, our job is basically to output a Python equivalent 43 // generator that outputs a Python/C extension module that lets 44 // performance-minded Python code leverage the fast C++ implementation 58 #include <google/protobuf/compiler/python/python_generator.h> 73 namespace python { namespace in namespace:google::protobuf::compiler 87 // Returns the Python module name expected for a given .proto filename. 98 // google/protobuf/python/reflection_test.py 142 // Name of the class attribute where we store the Python 166 // TODO(robinson): Allow parameterization of Python version [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_xpickle.py | 5 # previous version of Python by bouncing pickled objects through Python 2.4
6 # and Python 2.5 running this file.
22 # "provides" a pickletester module for older versions of Python that may be
60 """Check whether the given name is a valid Python binary and has
66 name: short string name of a Python binary such as "python2.4".
77 python = None
variable in class:AbstractCompatTests 81 self.assertTrue(self.python)
85 def send_to_worker(self, python, obj, proto):
86 """Bounce a pickled object through another version of Python. 182 python = "python2.4" variable in class:.CPicklePython24Compat 207 python = "python2.5" variable in class:.CPicklePython25Compat 224 python = "python2.6" variable in class:.CPicklePython26Compat [all...] |
| /external/protobuf/src/google/protobuf/ |
| message.h | 152 namespace python { namespace in namespace:google::protobuf [all...] |
| /external/python/cpython2/Lib/test/ |
| test_xpickle.py | 5 # previous version of Python by bouncing pickled objects through Python 2.4 6 # and Python 2.5 running this file. 22 # "provides" a pickletester module for older versions of Python that may be 60 """Check whether the given name is a valid Python binary and has 66 name: short string name of a Python binary such as "python2.4". 79 python = None variable in class:AbstractCompatTests 83 self.assertTrue(self.python) 87 if not have_python_version(self.python): 88 self.skipTest('%s not available' % self.python) 185 python = "python2.4" variable in class:CPicklePython24Compat 203 python = "python2.5" variable in class:CPicklePython25Compat 216 python = "python2.6" variable in class:CPicklePython26Compat 228 python = "python2.7" variable in class:CPicklePython27Compat [all...] |
| /build/soong/python/ |
| python.go | 15 package python package 17 // This file contains the "Base" module type for building Python program. 38 // the version properties that apply to python libraries and binaries. 43 // non-empty list of .py files under this strict Python version. 48 // list of source files that should not be used to build the Python module. 52 // list of the Python libraries under this Python version. 60 // properties that apply to python libraries and binaries. 69 // true, if the Python module is used internally, eg, Python std libs [all...] |
| python_test.go | 15 package python package 393 t.Fatalf("%s is not Python module!", name)
|
| /external/python/setuptools/ |
| launcher.c | 6 it spawns the actual Python executable, rather than attempting to 7 hook into the Python DLL. This means that the script will run with 8 sys.executable set to the Python executable, where exemaker ends up with 10 to run another Python process using sys.executable.) 26 actually run Python in the same process. Note that using 'exec' instead 27 of 'spawn' doesn't work, because on Windows this leads to the Python 29 window, meaning you get a command prompt back *before* Python even finishes 30 starting. So, we have to use spawnv() and wait for Python to exit before 91 /* HINSTANCE hPython; DLL handle for python executable */ 119 /* Use the script's parent directory, which should be the Python hom 249 char python[256]; \/* python executable's filename*\/ local [all...] |
| /external/flatbuffers/src/ |
| idl_gen_python.cpp | 29 namespace python { namespace in namespace:flatbuffers 701 // Save out the generated code for a Python Table type. 727 } // namespace python 731 python::PythonGenerator generator(parser, path, file_name);
|
| /external/python/cpython2/Lib/plat-mac/ |
| bundlebuilder.py | 1 #! /usr/bin/env python 16 % python bundlebuilder.py [options] build 17 % python buildapp.py [options] build 278 'org.python.core', 'riscos', 'riscosenviron', 'riscospath' 285 # a way to pass the Python main program to the interpreter. The 290 # deliberately with argv[0]. The actual Python executable is 336 # When building a standalone app with Python.framework, we need to copy 337 # a subset from Python.framework to the bundle. The following list 341 "Python", # the Python core librar 393 python = None variable in class:AppBuilder [all...] |
| /external/guice/extensions/persist/lib/ |
| antlr-2.7.5h3.jar | |