/third_party/musl/libc-test/src/functionalext/unittest/ |
H A D | unit_test_ldso_namespace.c | 43 ns_t ns; in namespace_test_0020() local 45 ns.ns_dsos = (dsolist*)&tmp; in namespace_test_0020() 46 ns.ns_name = (char*)&tmp; in namespace_test_0020() 47 ns.env_paths = (char*)&tmp; in namespace_test_0020() 48 ns.lib_paths = (char*)&tmp; in namespace_test_0020() 49 ns.asan_lib_paths = (char*)&tmp; in namespace_test_0020() 50 ns.permitted_paths = NULL; in namespace_test_0020() 51 ns.asan_permitted_paths = NULL; in namespace_test_0020() 52 ns.allowed_libs = NULL; in namespace_test_0020() 59 ns in namespace_test_0020() 72 ns_t ns; namespace_test_0030() local 105 ns_t ns; namespace_test_0050() local 129 ns_t ns; namespace_test_0070() local 146 ns_t ns; namespace_test_0080() local 196 ns_t ns; namespace_test_0110() local 230 ns_t ns; namespace_test_0140() local 243 ns_t ns; namespace_test_0150() local 256 ns_t ns; namespace_test_0160() local 269 ns_t ns; namespace_test_0170() local 293 ns_t ns; namespace_test_0190() local 306 ns_t ns; namespace_test_0200() local 319 ns_t ns; namespace_test_0210() local 332 ns_t ns; namespace_test_0220() local 345 ns_t ns; namespace_test_0230() local 370 ns_t ns; namespace_test_0250() local 383 ns_t ns; namespace_test_0260() local 408 ns_t ns; namespace_test_0280() local 443 ns_t ns; namespace_test_0310() local 456 ns_t ns; namespace_test_0320() local 470 ns_t ns; namespace_test_0330() local 483 ns_t ns; namespace_test_0400() local 497 ns_t ns; namespace_test_0340() local 521 ns_t ns; namespace_test_0360() local 533 ns_t ns; namespace_test_0370() local 546 ns_t ns; namespace_test_0380() local 559 ns_t ns; namespace_test_0390() local 594 ns_inherit ns; namespace_test_0420() local 606 ns_inherit ns; namespace_test_0440() local 619 ns_t ns; namespace_test_0450() local 633 ns_t ns; namespace_test_0460() local 654 ns_t ns; namespace_test_0470() local 673 ns_t ns; namespace_test_0480() local 694 ns_t ns; namespace_test_0490() local 714 ns_t ns; namespace_test_0500() local 734 ns_t ns; namespace_test_0510() local 754 ns_t ns; namespace_test_0520() local 774 ns_t ns; namespace_test_0530() local 801 ns_t ns; namespace_test_0540() local 827 ns_t ns; namespace_test_0550() local 853 ns_t ns; namespace_test_0560() local 873 ns_t ns; namespace_test_0570() local 890 ns_t ns; namespace_test_0580() local 905 ns_t ns; namespace_test_0590() local 919 ns_t ns; namespace_test_0600() local 933 ns_t ns; namespace_test_0610() local 947 ns_t ns; namespace_test_0630() local 969 ns_t ns; namespace_test_0640() local 991 ns_t ns; namespace_test_0650() local 1013 ns_t ns; namespace_test_0660() local 1035 ns_t ns; namespace_test_0670() local 1055 ns_t ns; namespace_test_0680() local 1075 ns_t ns; namespace_test_0690() local 1095 ns_t ns; namespace_test_0700() local 1113 ns_t ns; namespace_test_0710() local 1132 ns_inherit ns; namespace_test_0720() local 1151 ns_inherit ns; namespace_test_0730() local [all...] |
/third_party/musl/porting/linux/user/ldso/ |
H A D | namespace.c | 139 void ns_free(ns_t *ns) in ns_free() argument 141 if (!ns) { in ns_free() 144 if (ns->ns_dsos) { in ns_free() 145 __libc_free(ns->ns_dsos); in ns_free() 146 ns->ns_dsos = NULL; in ns_free() 148 if (ns->ns_name) { in ns_free() 149 __libc_free(ns->ns_name); in ns_free() 150 ns->ns_name = NULL; in ns_free() 152 if (ns->env_paths) { in ns_free() 153 __libc_free(ns in ns_free() 171 ns_add_dso(ns_t *ns, struct dso *dso) ns_add_dso() argument 222 nslist_add_ns(ns_t *ns) nslist_add_ns() argument 246 ns_set_name(ns_t *ns, const char *name) ns_set_name() argument 257 ns_set_env_paths(ns_t *ns, const char *env_paths) ns_set_env_paths() argument 272 ns_set_lib_paths(ns_t *ns, const char *lib_paths) ns_set_lib_paths() argument 287 ns_set_asan_lib_paths(ns_t *ns, const char *asan_lib_paths) ns_set_asan_lib_paths() argument 304 ns_set_permitted_paths(ns_t *ns, const char *permitted_paths) ns_set_permitted_paths() argument 314 ns_set_asan_permitted_paths(ns_t *ns, const char *asan_permitted_paths) ns_set_asan_permitted_paths() argument 328 ns_set_separated(ns_t *ns, bool separated) ns_set_separated() argument 337 ns_set_allowed_libs(ns_t *ns, const char *allowed_libs) ns_set_allowed_libs() argument 372 find_ns_inherit(ns_t *ns, ns_t *inherited) find_ns_inherit() argument 387 ns_add_inherit(ns_t *ns, ns_t *ns_inherited, const char *shared_libs) ns_add_inherit() argument 468 is_accessible(ns_t *ns, const char *lib_pathname, bool is_asan, bool check_inherited) is_accessible() argument 549 check_asan_path(ns_t *ns, const char *lib_pathname) check_asan_path() argument 606 ns_set_flag(ns_t *ns, int flag) ns_set_flag() argument [all...] |
H A D | namespace.h | 75 void ns_free(ns_t *ns); 76 void ns_set_name(ns_t *ns, const char *name); 77 void ns_set_env_paths(ns_t *ns, const char *env_paths); 78 void ns_set_lib_paths(ns_t *ns, const char *lib_paths); 79 void ns_set_asan_lib_paths(ns_t *ns, const char *asan_lib_paths); 80 void ns_set_permitted_paths(ns_t *ns, const char *permitted_paths); 81 void ns_set_asan_permitted_paths(ns_t *ns, const char *asan_permitted_paths); 82 void ns_set_separated(ns_t *ns, bool separated); 83 void ns_set_allowed_libs(ns_t *ns, const char *allowed_libs); 84 void ns_add_dso(ns_t *ns, struc [all...] |
/third_party/musl/ldso/linux/ |
H A D | namespace.c | 139 void ns_free(ns_t *ns) in ns_free() argument 141 if (!ns) { in ns_free() 144 if (ns->ns_dsos) { in ns_free() 145 __libc_free(ns->ns_dsos); in ns_free() 146 ns->ns_dsos = NULL; in ns_free() 148 if (ns->ns_name) { in ns_free() 149 __libc_free(ns->ns_name); in ns_free() 150 ns->ns_name = NULL; in ns_free() 152 if (ns->env_paths) { in ns_free() 153 __libc_free(ns in ns_free() 171 ns_add_dso(ns_t *ns, struct dso *dso) ns_add_dso() argument 222 nslist_add_ns(ns_t *ns) nslist_add_ns() argument 246 ns_set_name(ns_t *ns, const char *name) ns_set_name() argument 257 ns_set_env_paths(ns_t *ns, const char *env_paths) ns_set_env_paths() argument 272 ns_set_lib_paths(ns_t *ns, const char *lib_paths) ns_set_lib_paths() argument 287 ns_set_asan_lib_paths(ns_t *ns, const char *asan_lib_paths) ns_set_asan_lib_paths() argument 304 ns_set_permitted_paths(ns_t *ns, const char *permitted_paths) ns_set_permitted_paths() argument 314 ns_set_asan_permitted_paths(ns_t *ns, const char *asan_permitted_paths) ns_set_asan_permitted_paths() argument 328 ns_set_separated(ns_t *ns, bool separated) ns_set_separated() argument 337 ns_set_allowed_libs(ns_t *ns, const char *allowed_libs) ns_set_allowed_libs() argument 372 find_ns_inherit(ns_t *ns, ns_t *inherited) find_ns_inherit() argument 387 ns_add_inherit(ns_t *ns, ns_t *ns_inherited, const char *shared_libs) ns_add_inherit() argument 468 is_accessible(ns_t *ns, const char *lib_pathname, bool is_asan, bool check_inherited) is_accessible() argument 549 check_asan_path(ns_t *ns, const char *lib_pathname) check_asan_path() argument 606 ns_set_flag(ns_t *ns, int flag) ns_set_flag() argument [all...] |
/third_party/python/PC/layout/ |
H A D | main.py | 84 def get_lib_layout(ns): 90 return ns.include_tests 92 return ns.include_tcltk 94 return ns.include_idle 96 return ns.include_venv 99 return ns.include_tcltk 102 for dest, src in rglob(ns.source / "Lib", "**/*", _c): 106 def get_tcltk_lib(ns): 107 if not ns.include_tcltk: 113 with open(ns 613 ns=ns, global() variable [all...] |
/third_party/python/Lib/test/ |
H A D | test_getpath.py | 26 ns = MockNTNamespace( 30 ns.add_known_xfile(r"C:\Python\python.exe") 31 ns.add_known_file(r"C:\Python\Lib\os.py") 32 ns.add_known_dir(r"C:\Python\DLLs") 46 actual = getpath(ns, expected) 51 ns = MockNTNamespace( 55 ns.add_known_xfile(r"C:\CPython\PCbuild\amd64\python.exe") 56 ns.add_known_file(r"C:\CPython\Lib\os.py") 57 ns.add_known_file(r"C:\CPython\PCbuild\amd64\pybuilddir.txt", [""]) 72 actual = getpath(ns, expecte [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsExportForms.js | 21 import * as ns from "./cls"; 22 export default ns; 25 import * as ns from "./cls"; 26 export {ns}; 29 import * as ns from "./cls"; 30 export { ns as classContainer }; 33 const ns = require("./cls"); 34 module.exports = { ns }; 37 const ns = require("./cls"); 38 module.exports = ns; [all...] |
H A D | filterNamespace_import.js | 3 //// [ns.ts]
4 namespace ns { 15 export default ns; 18 import type ns from './ns'; 19 ns.Class; // Error 20 ns.Value; // Error 21 let c: ns.Class; 22 let t: ns.Type = ""; 23 let n: ns 29 var ns; global() variable [all...] |
H A D | exportAsNamespace3(module=es2015).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 11 let ns = {a: 1, b: 2} 12 ns.a; 13 ns.b; 18 foo.ns.a; 19 foo.ns.b;
26 export { ns_1 as ns };
27 ns [all...] |
H A D | exportAsNamespace3(module=esnext).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 11 let ns = {a: 1, b: 2} 12 ns.a; 13 ns.b; 18 foo.ns.a; 19 foo.ns.b;
25 export * as ns from './0';
26 ns [all...] |
H A D | exportAsNamespace3(module=system).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 11 let ns = {a: 1, b: 2} 12 ns.a; 13 ns.b; 18 foo.ns.a; 19 foo.ns.b;
37 var ns;
42 exports_1("ns", ns_ [all...] |
H A D | exportAsNamespace3(module=amd).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 11 let ns = {a: 1, b: 2} 12 ns.a; 13 ns.b; 18 foo.ns.a; 19 foo.ns.b;
53 define(["require", "exports", "./0"], function (require, exports, ns) {
56 exports.ns [all...] |
H A D | emptyVariableDeclarationBindingPatterns01_ES6.js | 30 const ns: number[][] = []; 32 for (var {} of ns) { 35 for (let {} of ns) { 38 for (const {} of ns) { 41 for (var [] of ns) { 44 for (let [] of ns) { 47 for (const [] of ns) { 73 const ns = [];
74 for (var {} of ns) {
76 for (let {} of ns) {
[all...] |
H A D | exportAsNamespace1(module=commonjs).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 15 foo.ns.a; 16 foo.ns.b;
27 exports.ns = void 0;
28 exports.ns = require("./0");
29 ns.a;
30 ns.b;
35 foo.ns [all...] |
H A D | jsxNamespacePrefixIntrinsics.js | 4 "ns:element": { 5 "ns:attribute": string; 7 "ns:NamespacedUpcaseAlsoIntrinsic": any, 12 const valid = <ns:element ns:attribute="yep" />; 13 const validUpcase1 = <ns:NamespacedUpcaseAlsoIntrinsic />; 17 const invalid2 = <ns:element attribute="nope" />; 18 const invalid3 = <ns:element ns:invalid="nope" />; 22 var valid = <ns [all...] |
H A D | exportAsNamespace3(module=commonjs).js | 8 export * as ns from './0'; 9 ns.a; 10 ns.b; 11 let ns = {a: 1, b: 2} 12 ns.a; 13 ns.b; 18 foo.ns.a; 19 foo.ns.b;
53 exports.ns = void 0;
54 exports.ns [all...] |
/third_party/python/Lib/test/libregrtest/ |
H A D | cmdline.py | 354 ns = Namespace() 356 if not hasattr(ns, k): 359 setattr(ns, k, v) 360 if ns.use_resources is None: 361 ns.use_resources = [] 366 ns.args = parser.parse_known_args(args=args, namespace=ns)[1] 367 for arg in ns.args: 372 if ns.single and ns [all...] |
H A D | main.py | 70 self.ns = None 177 if self.ns.quiet: 183 if fails and not self.ns.pgo: 188 ns = _parse_args(sys.argv[1:], **kwargs) 190 if ns.xmlpath: 193 worker_args = ns.worker_args 196 ns, test_name = parse_worker_args(ns.worker_args) 197 ns.worker_args = worker_args 201 removepy(ns [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_xmp.h | 91 bool Exists (const char *ns, 94 bool HasNameSpace (const char *ns) const; 98 const char *ns = 0, 101 void Remove (const char *ns, 104 void RemoveProperties (const char *ns); 106 void RemoveEmptyStringOrArray (const char *ns, 109 void RemoveEmptyStringsAndArrays (const char *ns = 0); 111 void Set (const char *ns, 115 bool GetString (const char *ns, 119 void SetString (const char *ns, [all...] |
H A D | dng_xmp_sdk.cpp | 55 const char *XMP_NS_TIFF = "http://ns.adobe.com/tiff/1.0/"; 56 const char *XMP_NS_EXIF = "http://ns.adobe.com/exif/1.0/"; 57 const char *XMP_NS_PHOTOSHOP = "http://ns.adobe.com/photoshop/1.0/"; 58 const char *XMP_NS_XAP = "http://ns.adobe.com/xap/1.0/"; 59 const char *XMP_NS_XAP_RIGHTS = "http://ns.adobe.com/xap/1.0/rights/"; 61 const char *XMP_NS_XMP_NOTE = "http://ns.adobe.com/xmp/note/"; 62 const char *XMP_NS_MM = "http://ns.adobe.com/xap/1.0/mm/"; 64 const char *XMP_NS_CRS = "http://ns.adobe.com/camera-raw-settings/1.0/"; 65 const char *XMP_NS_CRSS = "http://ns.adobe.com/camera-raw-saved-settings/1.0/"; 66 const char *XMP_NS_AUX = "http://ns 495 AppendArrayItem(const char *ns, const char *arrayName, const char *itemValue, bool isBag, bool propIsStruct) AppendArrayItem() argument 522 CountArrayItems(const char *ns, const char *path) const CountArrayItems() argument 546 Exists(const char *ns, const char *path) const Exists() argument 613 Remove(const char *ns, const char *path) Remove() argument 635 RemoveProperties(const char *ns) RemoveProperties() argument 662 IsEmptyString(const char *ns, const char *path) IsEmptyString() argument 708 IsEmptyArray(const char *ns, const char *path) IsEmptyArray() argument 793 ComposeArrayItemPath(const char *ns, const char *arrayName, int32 index, dng_string &s) const ComposeArrayItemPath() argument 818 ComposeStructFieldPath(const char *ns, const char *structName, const char *fieldNS, const char *fieldName, dng_string &s) const ComposeStructFieldPath() argument 880 GetString(const char *ns, const char *path, dng_string &s) const GetString() argument 916 ValidateStringList(const char *ns, const char *path) ValidateStringList() argument 960 GetStringList(const char *ns, const char *path, dng_string_list &list) const GetStringList() argument 1006 GetAltLangDefault(const char *ns, const char *path, dng_string &s) const GetAltLangDefault() argument 1082 GetStructField(const char *ns, const char *path, const char *fieldNS, const char *fieldName, dng_string &s) const GetStructField() argument 1125 Set(const char *ns, const char *path, const char *text) Set() argument 1165 SetString(const char *ns, const char *path, const dng_string &s) SetString() argument 1182 SetStringList(const char *ns, const char *path, const dng_string_list &list, bool isBag) SetStringList() argument 1229 SetAltLangDefault(const char *ns, const char *path, const dng_string &s) SetAltLangDefault() argument 1261 SetStructField(const char *ns, const char *path, const char *fieldNS, const char *fieldName, const char *text) SetStructField() argument 1287 DeleteStructField(const char *ns, const char *structName, const char *fieldNS, const char *fieldName) DeleteStructField() argument 1553 TXMP_STRING_TYPE ns; IteratePaths() local [all...] |
H A D | dng_xmp_sdk.h | 59 typedef bool (IteratePathsCallback) (const char *ns, 101 bool Exists (const char *ns, 104 void AppendArrayItem (const char *ns, 110 int32 CountArrayItems (const char *ns, 113 bool HasNameSpace (const char *ns) const; 115 void Remove (const char *ns, 118 void RemoveProperties (const char *ns); 120 bool IsEmptyString (const char *ns, 123 bool IsEmptyArray (const char *ns, 126 void ComposeArrayItemPath (const char *ns, [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceRegList.h | 20 // assumes the parameters are register names declared in the "ns" 24 #define REGLIST1(ns, r0) \ 25 { ns::Reg_##r0 } 26 #define REGLIST2(ns, r0, r1) \ 27 { ns::Reg_##r0, ns::Reg_##r1 } 28 #define REGLIST3(ns, r0, r1, r2) \ 29 { ns::Reg_##r0, ns::Reg_##r1, ns [all...] |
/third_party/node/test/es-module/ |
H A D | test-esm-data-urls.js | 16 const ns = await import(plainESMURL); 17 assert.deepStrictEqual(Object.keys(ns), ['default']); 18 assert.strictEqual(ns.default.a, 'aaa'); 25 ns.default 30 ns 36 const ns = await import(plainESMURL); 37 assert.deepStrictEqual(Object.keys(ns), ['default']); 38 assert.strictEqual(ns.default, plainESMURL); 43 const ns = await import(plainESMURL); 44 assert.deepStrictEqual(Object.keys(ns), ['defaul [all...] |
/third_party/python/Objects/ |
H A D | namespaceobject.c | 30 _PyNamespaceObject *ns = (_PyNamespaceObject *)self; in namespace_new() local 31 ns->ns_dict = PyDict_New(); in namespace_new() 32 if (ns->ns_dict == NULL) { in namespace_new() 33 Py_DECREF(ns); in namespace_new() 42 namespace_init(_PyNamespaceObject *ns, PyObject *args, PyObject *kwds) in namespace_init() argument 54 return PyDict_Update(ns->ns_dict, kwds); in namespace_init() 59 namespace_dealloc(_PyNamespaceObject *ns) in namespace_dealloc() argument 61 PyObject_GC_UnTrack(ns); in namespace_dealloc() 62 Py_CLEAR(ns->ns_dict); in namespace_dealloc() 63 Py_TYPE(ns) in namespace_dealloc() 68 namespace_repr(PyObject *ns) namespace_repr() argument 149 namespace_traverse(_PyNamespaceObject *ns, visitproc visit, void *arg) namespace_traverse() argument 157 namespace_clear(_PyNamespaceObject *ns) namespace_clear() argument 178 namespace_reduce(_PyNamespaceObject *ns, PyObject *Py_UNUSED(ignored)) namespace_reduce() argument 250 PyObject *ns = namespace_new(&_PyNamespace_Type, NULL, NULL); _PyNamespace_New() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | phase_template.c | 71 const int ns = new->linesize[0] / sizeof(pixel); in analyze_plane() local 81 const pixel *rend, *end = nptr + (h - 2) * ns; in analyze_plane() 85 nptr += ns; in analyze_plane() 94 pdif += DIFF(nptr, ns, nptr, ns); in analyze_plane() 95 tdif += DIFF(nptr, ns, optr, os); in analyze_plane() 99 pdif += DIFF(nptr, ns, nptr, ns); in analyze_plane() 100 tdif += DIFF(optr, os, nptr, ns); in analyze_plane() 107 pdif += DIFF(nptr, ns, npt in analyze_plane() [all...] |