/third_party/rust/crates/cxx/gen/build/src/ |
H A D | lib.rs | 231 if header_dir.exported { in build() 284 exported: true, in make_this_crate() 289 exported: true, in make_this_crate() 295 exported: true, in make_this_crate() 306 Some(links_attribute) => CFG.exported_header_links.iter().any(|&exported| { in make_this_crate() 307 let matches = links_attribute == exported; in make_this_crate() 309 used_header_links.insert(exported); in make_this_crate() 317 Some(include_prefix) => CFG.exported_header_prefixes.iter().any(|&exported| { in make_this_crate() 318 let matches = include_prefix.starts_with(exported); in make_this_crate() 320 used_header_prefixes.insert(exported); in make_this_crate() [all...] |
H A D | deps.rs | 14 pub exported: bool, 30 if header_dir.exported { in print_to_cargo() 101 exported: true, in direct_dependencies()
|
/third_party/node/test/parallel/ |
H A D | test-webcrypto-wrap-unwrap.js | 230 // If the wrapping algorithm is AES-KW, the exported key 232 // If the wrapping algorithm is RSA-OAEP, the exported key 238 async function wrappingIsPossible(name, exported) { 239 if ('byteLength' in exported) { 242 return exported.byteLength % 8 === 0; 244 return exported.byteLength <= 446; 246 } else if ('kty' in exported && name === 'RSA-OAEP') { 247 return JSON.stringify(exported).length <= 478; 253 const exported = await subtle.exportKey(format, key.key); 254 if (!(await wrappingIsPossible(wrappingKey.algorithm.name, exported))) [all...] |
/third_party/node/tools/ |
H A D | mkssldef.py | 25 exported = [] variable 43 exported.append(name) 50 exported.append(line) 53 for name in sorted(exported): print(' ', name, file=out)
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | RangeTableTest.java | 201 Table<RangeSpecification, Column<?>, Optional<?>> exported = original.toImmutableTable(); in testTableImportExport() 202 assertThat(exported).hasSize(8); in testTableImportExport() 203 assertThat(exported).containsCell(assigned("1xxxxxx", TYPE, MOBILE)); in testTableImportExport() 204 assertThat(exported).containsCell(assigned("1xxxxxx", AREA_CODE_LENGTH, 3)); in testTableImportExport() 205 assertThat(exported).containsCell(assigned("2xxxxxx", TYPE, FIXED_LINE)); in testTableImportExport() 206 assertThat(exported).containsCell(assigned("2xxxxxx", AREA_CODE_LENGTH, 2)); in testTableImportExport() 207 assertThat(exported).containsCell(assigned("3xxxxxx", TYPE, MOBILE)); in testTableImportExport() 208 assertThat(exported).containsCell(assigned("3xxxxxx", AREA_CODE_LENGTH, 2)); in testTableImportExport() 209 assertThat(exported).containsCell(assigned("4xxxxxx", TYPE, FIXED_LINE)); in testTableImportExport() 210 assertThat(exported) in testTableImportExport() [all...] |
H A D | CsvTableTest.java | 241 String exported = export(csv, true); in assertCsv() 242 assertThat(exported).isEqualTo(aligned); in assertCsv() 244 CsvTable<K> imported = CsvTable.importCsv(csv.getSchema(), new StringReader(exported)); in assertCsv()
|
/third_party/mbedtls/tests/src/ |
H A D | psa_exercise_key.c | 845 const uint8_t *exported, size_t exported_length) in mbedtls_test_psa_exported_key_sanity_check() 855 uint8_t *p = (uint8_t *) exported; in mbedtls_test_psa_exported_key_sanity_check() 856 const uint8_t *end = exported + exported_length; in mbedtls_test_psa_exported_key_sanity_check() 918 uint8_t *p = (uint8_t *) exported; in mbedtls_test_psa_exported_key_sanity_check() 919 const uint8_t *end = exported + exported_length; in mbedtls_test_psa_exported_key_sanity_check() 969 TEST_EQUAL(exported[0], 4); in mbedtls_test_psa_exported_key_sanity_check() 978 (void) exported; in mbedtls_test_psa_exported_key_sanity_check() 990 if (exported[i] & m) { in mbedtls_test_psa_exported_key_sanity_check() 1010 uint8_t *exported = NULL; in exercise_export_key() local 1026 TEST_CALLOC(exported, exported_siz in exercise_export_key() 843 mbedtls_test_psa_exported_key_sanity_check( psa_key_type_t type, size_t bits, const uint8_t *exported, size_t exported_length) mbedtls_test_psa_exported_key_sanity_check() argument 1060 uint8_t *exported = NULL; exercise_export_public_key() local [all...] |
/third_party/ltp/testcases/kernel/syscalls/statx/ |
H A D | statx07.c | 60 static int exported; variable 131 exported = 1; in setup() 151 if (!exported) in cleanup()
|
/third_party/mbedtls/ |
H A D | Makefile | 6 ifeq (,$(wildcard framework/exported.make)) 10 $(MBEDTLS_PATH)/framework/exported.make not found. 16 include framework/exported.make
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_bufmgr.h | 280 /** Has this buffer been exported to external clients? */ 281 bool exported; member 412 * Is this buffer shared with external clients (imported or exported)? 418 return bo->real.exported || bo->real.imported; in iris_bo_is_external() 432 return bo->real.exported; in iris_bo_is_exported() 524 * Returns 0 if the buffer was successfully exported, a non zero error code
|
H A D | iris_batch.c | 110 bool exported = iris_bo_is_exported(bo); in dump_bo_list() local 123 exported ? " exported" : "", in dump_bo_list()
|
H A D | iris_bufmgr.c | 1955 if (!bo->real.exported) { in iris_bo_mark_exported_locked() 1960 bo->real.exported = true; in iris_bo_mark_exported_locked() 1973 if (bo->real.exported) { in iris_bo_mark_exported()
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 71 The functions parse_oid and encode_oid are exported by default. 72 The function encode_oid_nums() can be exported explicitly.
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 71 The functions parse_oid and encode_oid are exported by default. 72 The function encode_oid_nums() can be exported explicitly.
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 110 ".exported": False, 111 ".exported.export_macro": "", 112 ".exported.export_header": False, 367 if hasattr(rule, "exported")] 545 "exported", None, False) 576 if not config.exported and len(protocol.exported_domains): 577 sys.stderr.write(("Domains [%s] are exported, but config is missing export " 584 config.exported.output): 585 os.mkdir(config.exported.output) 625 outputs[os.path.join(config.exported [all...] |
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 100 ".exported": False, 101 ".exported.export_macro": "", 102 ".exported.export_header": False, 350 self.exported_domains = [rule.domain for rule in config.protocol.options if hasattr(rule, "exported")] 544 return self.check_options(self.config.protocol.options, domain, name, "exported", None, False) 577 if not config.exported and len(protocol.exported_domains): 578 sys.stderr.write("Domains [%s] are exported, but config is missing export entry\n\n" % ", ".join(protocol.exported_domains)) 583 if len(protocol.exported_domains) and not os.path.exists(config.exported.output): 584 os.mkdir(config.exported.output) 622 outputs[os.path.join(config.exported [all...] |
/third_party/mbedtls/library/ |
H A D | Makefile | 12 ifeq (,$(wildcard $(MBEDTLS_PATH)/framework/exported.make)) 16 $(MBEDTLS_PATH)/framework/exported.make not found. 22 include $(MBEDTLS_PATH)/framework/exported.make
|
/third_party/mbedtls/tests/include/test/ |
H A D | psa_exercise_key.h | 194 * \param exported A buffer containing the key representation. 195 * \param exported_length The length of \p exported in bytes. 201 const uint8_t *exported, size_t exported_length);
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-module.h | 72 bool exported; member 182 bool exported; // true if exported. member 266 WireBytesRef name; // exported name. 422 bool mem_export = false; // true if the memory is exported 551 bool exported = false; // true if exported. member
|
/third_party/ffmpeg/libavfilter/ |
H A D | signature.h | 124 int exported; /* boolean whether stream already exported */ member
|
H A D | vf_signature.c | 607 if (ret == AVERROR_EOF && !sc->exported) { in request_frame() 613 sc->exported = 1; in request_frame() 615 lookup &= sc->exported; in request_frame()
|
/third_party/typescript/tests/baselines/reference/tsc/incremental/ |
H A D | change-to-modifier-of-class-expression-field-with-declaration-emit-enabled.js | 153 [96msrc/project/MessageablePerson.ts[0m:[93m6[0m:[93m7[0m - [91merror[0m[90m TS4094: [0mProperty 'message' of exported class expression may not be private or protected.
171 {"program":{"fileNames":["../../lib/lib.d.ts","./messageableperson.ts","./main.ts"],"fileInfos":[{"version":"5700251342-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };type ReturnType<T extends (...args: any) => any> = T extends (...args: any) => infer R ? R : any;\ntype InstanceType<T extends abstract new (...args: any) => any> = T extends abstract new (...args: any) => infer R ? R : any;","affectsGlobalScope":true},{"version":"3462418372-const Messageable = () => {\n return class MessageableClass {\n protected message = 'hello';\n }\n};\nconst wrapper = () => Messageable();\ntype MessageablePerson = InstanceType<ReturnType<typeof wrapper>>;\nexport default MessageablePerson;","signature":"-16190189821-declare const wrapper: () => {\r\n new (): {\r\n message: string;\r\n };\r\n};\r\ntype MessageablePerson = InstanceType<ReturnType<typeof wrapper>>;\r\nexport default MessageablePerson;\r\n(116,7)Error4094: Property 'message' of exported class expression may not be private or protected."},{"version":"4191603667-import MessageablePerson from './MessageablePerson.js';\nfunction logMessage( person: MessageablePerson ) {\n console.log( person.message );\n}","signature":"-4882119183-export {};\r\n"}],"options":{"declaration":true},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[3,[{"file":"./main.ts","start":131,"length":7,"messageText":"Property 'message' is protected and only accessible within class 'MessageableClass' and its subclasses.","category":1,"code":2445}]],2]},"version":"FakeTSVersion"}
194 "signature": "-16190189821-declare const wrapper: () => {\r\n new (): {\r\n message: string;\r\n };\r\n};\r\ntype MessageablePerson = InstanceType<ReturnType<typeof wrapper>>;\r\nexport default MessageablePerson;\r\n(116,7)Error4094: Property 'message' of exported class expression may not be private or protected."
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_assembler.cpp | 791 bool exported = false; in fix_exports() local 802 exported = true; in fix_exports() 810 exported = true; in fix_exports() 819 exported |= program->stage.hw == HWStage::FS && program->info.ps.has_epilog; in fix_exports() 825 if (!exported) { in fix_exports()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_get_proc_name.tex | 35 completely unavailable or may be limited to those exported via a
|
/third_party/jinja2/ |
H A D | compiler.py | 832 from .runtime import exported, async_exported namespace 835 exported_names = sorted(exported + async_exported) 837 exported_names = sorted(exported)
|