/third_party/protobuf/objectivec/ |
H A D | GPBDictionary_PackagePrivate.h | 64 //% @package 88 @package 94 @package 100 @package 106 @package 112 @package 118 @package 124 @package 130 @package 139 @package [all...] |
H A D | GPBArray_PackagePrivate.h | 49 //% @package 62 @package in GPBInt32Array() 70 @package in GPBUInt32Array() 78 @package in GPBInt64Array() 86 @package in GPBUInt64Array() 94 @package in GPBFloatArray() 102 @package in GPBDoubleArray() 110 @package in GPBBoolArray() 118 @package in GPBEnumArray() 129 @package [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | build_py.py | 35 self.package = None 98 """Generate list of '(package,src_dir,build_dir,filenames)' tuples""" 102 for package in self.packages: 103 # Locate package source directory 104 src_dir = self.get_package_dir(package) 106 # Compute package build directory 107 build_dir = os.path.join(*([self.build_lib] + package.split('.'))) 116 file[plen:] for file in self.find_data_files(package, src_dir) 118 data.append((package, src_dir, build_dir, filenames)) 121 def find_data_files(self, package, src_di [all...] |
/third_party/vk-gl-cts/scripts/verify/ |
H A D | verify.py | 97 def verifyStatement (package): 100 if package.statement != None: 101 statementPath = os.path.join(package.basePath, package.statement) 114 package.conformVersion = line.split()[1] 128 package.conformOs = line.split()[1] 140 messages.append(error(package.basePath, "Missing conformance statement file")) 144 def verifyGitStatus (package): 147 if len(package.gitStatus) > 0: 148 for s in package [all...] |
/third_party/vk-gl-cts/scripts/android/ |
H A D | build_apk.py | 258 def __init__ (self, package): 259 self.package = package 262 packageComps = self.package.getPackageName(config).split('.') 265 return os.path.join(config.buildPath, self.package.getAppDirName(), "src", packageDir, "R.java") 401 if not 'package' in tree.getroot().attrib: 402 raise Exception("'package' attribute missing from root element in %s" % manifestPath) 404 return tree.getroot().attrib['package'] 463 def __init__ (self, package): 464 self.package [all...] |
/third_party/python/Lib/importlib/resources/ |
H A D | _legacy.py | 44 def open_binary(package: Package, resource: Resource) -> BinaryIO: 46 return (_common.files(package) / normalize_path(resource)).open('rb') 50 def read_binary(package: Package, resource: Resource) -> bytes: 52 return (_common.files(package) / normalize_path(resource)).read_bytes() 57 package: Package, 63 return (_common.files(package) / normalize_path(resource)).open( 70 package: Package, 80 with open_text(package, resource, encoding, errors) as fp: 85 def contents(package: Package) -> Iterable[str]: 86 """Return an iterable of entries in `package` [all...] |
H A D | _common.py | 17 def files(package): 20 Get a Traversable resource from a package 22 return from_package(get_package(package)) 25 def get_resource_reader(package): 28 Return the package's loader if it's a ResourceReader. 35 spec = package.__spec__ 47 def get_package(package): 49 """Take a package name or module object and return the module. 51 Raise an exception if the resolved module is not a package. 53 resolved = resolve(package) [all...] |
/third_party/openssl/test/ |
H A D | asn1_encode_test.c | 149 int skip; /* 1 if this package should be skipped */ 486 const TEST_PACKAGE *package) in do_decode() 493 enctst = package->d2i(NULL, &bytes, nbytes); in do_decode() 509 package->ifree(enctst); in do_decode() 522 const TEST_PACKAGE *package) in do_encode() 528 len = package->i2d(input, &data); in do_encode() 550 const TEST_PACKAGE *package) in do_enc_dec() 557 len = package->i2d(p, &data); in do_enc_dec() 561 ret = do_decode(data, len, bytes, nbytes, package); in do_enc_dec() 671 const TEST_PACKAGE *package) in do_decode_custom() 484 do_decode(unsigned char *bytes, long nbytes, const EXPECTED *expected, size_t expected_size, const TEST_PACKAGE *package) do_decode() argument 520 do_encode(EXPECTED *input, const unsigned char *expected, size_t expected_len, const TEST_PACKAGE *package) do_encode() argument 549 do_enc_dec(EXPECTED *bytes, long nbytes, const TEST_PACKAGE *package) do_enc_dec() argument 669 do_decode_custom(const TEST_CUSTOM_DATA *custom_data, const EXPECTED *expected, size_t expected_size, const TEST_PACKAGE *package) do_decode_custom() argument 692 do_encode_custom(EXPECTED *input, const TEST_CUSTOM_DATA *custom_data, const TEST_PACKAGE *package) do_encode_custom() argument 709 do_print_item(const TEST_PACKAGE *package) do_print_item() argument 729 test_intern(const TEST_PACKAGE *package) test_intern() argument [all...] |
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | names.c | 160 static void fill_namespace(const char *package, const char *php_namespace, in fill_namespace() argument 167 } else if (package != NULL) { in fill_namespace() 169 size_t package_len = strlen(package); in fill_namespace() 172 while (j < package_len && package[j] != '.') { in fill_namespace() 175 fill_prefix(package + i, j - i, "", package, classname); in fill_namespace() 176 fill_segment(package + i, j - i, classname, true); in fill_namespace() 184 const char *package, in fill_classname() 188 if (package != NULL) { in fill_classname() 189 size_t package_len = strlen(package); in fill_classname() 183 fill_classname(const char *fullname, const char *package, const char *prefix, stringsink *classname) fill_classname() argument 213 const char *package = upb_filedef_package(file); GetPhpClassname() local [all...] |
/third_party/protobuf/python/google/protobuf/ |
H A D | descriptor_pool.py | 47 my_message_descriptor = pool.FindMessageTypeByName('some.package.MessageType') 184 'package name on the proto file, or use different ' 269 if enum_desc.file.package: 271 - enum_desc.file.package.count('.') == 1) 276 package = enum_desc.file.package 279 '.'.join((package, enum_value.name))) 748 package=file_proto.package, 770 message_type, file_proto.package, file_descripto [all...] |
H A D | descriptor_database.py | 73 package = file_desc_proto.package 75 for name in _ExtractSymbols(message, package): 78 self._AddSymbol(('.'.join((package, enum.name))), file_desc_proto) 81 '.'.join((package, enum_value.name))] = file_desc_proto 83 self._AddSymbol(('.'.join((package, extension.name))), file_desc_proto) 85 self._AddSymbol(('.'.join((package, service.name))), file_desc_proto) 110 package and any containing messages. Some examples: 112 'some.package.name.Message' 113 'some.package [all...] |
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | mustpass.py | 98 def getCaseListFileName (package, configuration): 99 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name) 104 def getDstCaseListPath (mustpass, package, configuration): 105 return os.path.join(getDstDir(mustpass), getCaseListFileName(package, configuration)) 203 for package in mustpass.packages: 204 for cfg in package.configurations: 244 for package in mustpass.packages: 245 for config in package.configurations: 247 caseListFile = getCaseListFileName(package, config), 251 useForFirstEGLConfig = str(package [all...] |
/third_party/python/Lib/test/test_importlib/resources/ |
H A D | util.py | 21 def get_resource_reader(self, package): 76 def execute(self, package, path): 79 on package and path. 83 # Passing in the package name should succeed. 87 # Passing in the package itself should succeed. 101 # The anchor package can already be imported. 106 # The anchor package cannot be a module. 111 # The anchor package cannot be a module. 121 package = create_package(file=bytes_data, path=FileNotFoundError()) 122 self.execute(package, 'ut [all...] |
/third_party/python/Lib/lib2to3/ |
H A D | fixer_util.py | 113 from package import name_leafs""" 116 # "not been tested with dotted package names -- use at your own "\ 303 def does_tree_import(package, name, node): 304 """ Returns true if name is imported from package at the 307 None for the package and 'foo' for the name. """ 308 binding = find_binding(name, find_root(node), package) 315 def touch_import(package, name, node): 324 if does_tree_import(package, name, root): 348 if package is None: 354 import_ = FromImport(package, [Lea [all...] |
/third_party/vk-gl-cts/scripts/ |
H A D | mustpass.py | 98 def getCaseListFileName (package, configuration): 99 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name) 162 for package in mustpass.packages: 163 packageElem = ElementTree.SubElement(mustpassElem, "TestPackage", name = package.module.name) 165 for config in package.configurations: 167 caseListFile = getCaseListFileName(package, config), 180 # have the deqp package installed on the device for us 216 for package in mustpass.packages: 217 for config in package.configurations: 223 addOptionElement(testElement, "deqp-package", packag [all...] |
/third_party/skia/platform_tools/android/skp_gen/ |
H A D | android_skp_capture.py | 64 def __init__(self, name, package, activity, app_launch_delay, actions): 66 self.package = package 69 self.run_component = '%s/%s' % (self.package, self.activity) 79 adb_shell('am force-stop %s' % self.package) 108 def capture_skp(skp_file, package, device): 110 remote_path = '/data/data/%s/cache/%s' % (package, os.path.basename(skp_file)) 141 app_dict['package'], 161 print(' Package %s' % app.package) 172 capture_skp(skp_file, app.package, devic [all...] |
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | setup.py | 12 package = "com.google.webp" variable 13 package_path = os.path.join(tmpdir, *package.split(".")) 16 # Create __init_.py files along the package path. 18 for d in package.split("."): 29 ext_package=package, 37 py_modules=[package + ".libwebp"],
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | FileDescriptor.php | 38 private $package; variable 42 public function setPackage($package) 44 $this->package = $package; variable 49 return $this->package;
|
H A D | FileDescriptorProto.php | 29 * Generated from protobuf field <code>optional string package = 2;</code> 31 protected $package = null; variable 98 * @type string $package 167 * Generated from protobuf field <code>optional string package = 2;</code> 172 return isset($this->package) ? $this->package : ''; 177 return isset($this->package); 182 unset($this->package); 188 * Generated from protobuf field <code>optional string package = 2;</code> 195 $this->package variable [all...] |
/third_party/libabigail/tools/ |
H A D | abipkgdiff.cc | 12 /// For now, the supported package formats are Deb and RPM, but 29 /// 1/ the first package and its ancillary packages (debug info and 31 /// There is one thread per package being extracted. So if there are 32 /// 3 thread packages (one package, one debug info package and one 33 /// devel package), then there are 3 threads to extracts them. Then 37 /// 2/ A similar thing is done for the second package. 54 // For package configuration macros. 159 class package; 161 /// Convenience typedef for a shared pointer to a @ref package 329 class package global() class 373 package(const string& path, const string& dir, kind pkg_kind = package::KIND_MAIN) package() argument 1102 extract_package(const package& package, const options &opts) extract_package() argument 2320 create_maps_of_package_content(package& package, options& opts) create_maps_of_package_content() argument [all...] |
/third_party/python/Tools/peg_generator/scripts/ |
H A D | test_pypi_packages.py | 36 for package in all_packages: 37 yield package 74 for package in get_packages(): 75 print(f"Extracting files from {package}... ", end="") 77 extract_files(package) 84 dirname = find_dirname(package)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/ |
H A D | abseil.podspec.gen.py | 51 "Rule", "type name package srcs hdrs textual_hdrs deps visibility testonly") 75 def parse_rule(elem, package): 80 package=package, 89 def read_build(package): 90 """Runs bazel query on given package file and returns all cc rules.""" 92 ["bazel", "query", package + ":all", "--output", "xml"]) 95 parse_rule(elem, package) 152 for frag in get_spec_name(rule.package).split("/"):
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_test_util.h | 128 std::string package = base_descriptor->file()->package(); in MapReflectionTester() local 130 map_enum_foo_ = pool->FindEnumValueByName(package + ".MAP_ENUM_FOO"); in MapReflectionTester() 131 map_enum_bar_ = pool->FindEnumValueByName(package + ".MAP_ENUM_BAR"); in MapReflectionTester() 132 map_enum_baz_ = pool->FindEnumValueByName(package + ".MAP_ENUM_BAZ"); in MapReflectionTester() 134 foreign_c_ = pool->FindFieldByName(package + ".ForeignMessage.c"); in MapReflectionTester() 136 pool->FindFieldByName(package + ".TestMap.MapInt32Int32Entry.key"); in MapReflectionTester() 138 pool->FindFieldByName(package + ".TestMap.MapInt32Int32Entry.value"); in MapReflectionTester() 140 pool->FindFieldByName(package + ".TestMap.MapInt64Int64Entry.key"); in MapReflectionTester() 142 pool->FindFieldByName(package in MapReflectionTester() [all...] |
/third_party/node/tools/configure.d/ |
H A D | nodedownload.py | 135 def candownload(auto_downloads, package): 136 if not (package in auto_downloads.keys()): 137 raise Exception('Internal error: "%s" is not in the --downloads list. Check nodedownload.py' % package) 138 if auto_downloads[package]: 141 print("""Warning: Not downloading package "%s". You could pass "--download=all" 142 (Windows: "download-all") to try auto-downloading it.""" % package)
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_compatibilty_files.py | 16 def package(self): member in CompatibilityFilesTests 26 return resources.files(self.package) 88 spec = wrap_spec(self.package) 94 def package(self): member in CompatibilityFilesNoReaderTests 99 return resources.files(self.package)
|