Home
last modified time | relevance | path

Searched refs:ns1 (Results 1 – 25 of 33) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
Dcircular4.symbols5 export namespace ns1 {
6 >ns1 : Symbol(ns1, Decl(a.ts, 0, 31))
20 import type { ns1 } from './a';
21 >ns1 : Symbol(ns1, Decl(b.ts, 0, 13))
29 export type T = ns1.nested.T;
31 >ns1 : Symbol(ns1, Decl(b.ts, 0, 13))
32 >nested : Symbol(ns1.nested, Decl(a.ts, 1, 22))
33 >T : Symbol(ns1.nested.T, Decl(a.ts, 2, 27))
Dcircular4.types5 export namespace ns1 {
15 import type { ns1 } from './a';
16 >ns1 : any
20 export type T = ns1.nested.T;
22 >ns1 : any
Dcircular4.errors.txt7 export namespace ns1 {
16 import type { ns1 } from './a';
19 export type T = ns1.nested.T;
DconstAssertions.js109 const ns1 = accessorNames('foo');
195 const ns1 = accessorNames('foo'); constant
313 declare const ns1: readonly ["get-foo", "set-foo"];
DconstAssertions.symbols333 const ns1 = accessorNames('foo');
334 >ns1 : Symbol(ns1, Decl(constAssertions.ts, 107, 5))
/third_party/musl/src/stat/
Dutimensat.c18 long ns0=0, ns1=0; in utimensat() local
21 ns1 = times[1].tv_nsec; in utimensat()
23 if (!NS_SPECIAL(ns1)) s1 = times[1].tv_sec; in utimensat()
27 ((long long[]){s0, ns0, s1, ns1}) : 0, flags); in utimensat()
33 times ? ((long[]){s0, ns0, s1, ns1}) : 0, flags); in utimensat()
/third_party/typescript/tests/cases/conformance/externalModules/typeOnly/
Dcircular4.ts5 export namespace ns1 { namespace
12 import type { ns1 } from './a';
15 export type T = ns1.nested.T;
/third_party/libabigail/tests/data/test-abidiff-exit/
Dtest-rhbz2114909-v0.cc1 namespace ns1 namespace
21 class C : public base_1, ns1::base_1, ns1::base_2
Dtest-rhbz2114909-v1.cc1 namespace ns1 namespace
22 class C : public ns1::base_2
Dtest-rhbz2114909-report-1.txt11 class ns1::base_1 at test-rhbz2114909-v0.cc:3:1
14 'class ns1::base_2' at test-rhbz2114909-v0.cc:8:1 changed:
/third_party/python/Lib/test/test_email/data/
Dmsg_25.txt47 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
51 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
55 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
59 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
63 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
67 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
71 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
75 Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00…
/third_party/python/Lib/test/
Dtest_types.py1565 ns1 = types.SimpleNamespace()
1574 self.assertEqual(len(ns1.__dict__), 0)
1575 self.assertEqual(vars(ns1), {})
1582 ns1 = vars(types.SimpleNamespace())
1585 self.assertEqual(ns1, {})
1589 ns1 = types.SimpleNamespace()
1595 self.assertEqual(ns1.__dict__, {})
1609 ns1 = types.SimpleNamespace()
1611 ns1.a = 'spam'
1612 ns1.b = 'ham'
[all …]
/third_party/libxml2/result/XPath/tests/
Dnssimple14 2 namespace ns1 href=nsuri1
18 Expression: //*[namespace::ns1]
22 namespace ns1 href=nsuri1
/third_party/libxml2/
Dc14n.c437 xmlNsPtr ns1 = cur->nsTab[i]; in xmlC14NVisibleNsStackFind() local
439 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) { in xmlC14NVisibleNsStackFind()
440 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)); in xmlC14NVisibleNsStackFind()
470 xmlNsPtr ns1 = cur->nsTab[i]; in xmlExcC14NVisibleNsStackFind() local
472 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) { in xmlExcC14NVisibleNsStackFind()
473 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) { in xmlExcC14NVisibleNsStackFind()
474 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i])); in xmlExcC14NVisibleNsStackFind()
519 const xmlNsPtr ns1 = (const xmlNsPtr) data1; in xmlC14NNsCompare() local
521 if (ns1 == ns2) in xmlC14NNsCompare()
523 if (ns1 == NULL) in xmlC14NNsCompare()
[all …]
Dxpath.c3618 xmlNsPtr ns1, ns2; in xmlXPathNodeSetContains() local
3620 ns1 = (xmlNsPtr) val; in xmlXPathNodeSetContains()
3622 if (ns1 == ns2) in xmlXPathNodeSetContains()
3624 if ((ns1->next != NULL) && (ns2->next == ns1->next) && in xmlXPathNodeSetContains()
3625 (xmlStrEqual(ns1->prefix, ns2->prefix))) in xmlXPathNodeSetContains()
6586 xmlNodeSetPtr ns1; in xmlXPathCompareNodeSets() local
6601 ns1 = arg1->nodesetval; in xmlXPathCompareNodeSets()
6604 if ((ns1 == NULL) || (ns1->nodeNr <= 0)) { in xmlXPathCompareNodeSets()
6623 for (i = 0;i < ns1->nodeNr;i++) { in xmlXPathCompareNodeSets()
6624 val1 = xmlXPathCastNodeToNumber(ns1->nodeTab[i]); in xmlXPathCompareNodeSets()
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dconstify-module-enums-types.hpp17 namespace ns1 { namespace
46 ns1::foo member5;
Dconstify-module-enums-namespace.hpp3 namespace ns1 { namespace
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dconstify-module-enums-namespace.rs12 pub mod ns1 { module
31 pub this_should_work: root::ns1::ns2::foo::Type,
/third_party/libxml2/test/XPath/docs/
Dns1 <doc xmlns:ns1="nsuri1">
/third_party/libxml2/test/XPath/tests/
Dnssimple3 //*[namespace::ns1]
/third_party/libabigail/src/
Dabg-reporter-priv.cc1172 const abg_compat::optional<std::string>& ns1 = symbol1->get_namespace(); in maybe_report_diff_for_symbol() local
1174 if (ns1 != ns2) in maybe_report_diff_for_symbol()
1178 if (ns1.has_value()) in maybe_report_diff_for_symbol()
1179 out << "'" << ns1.value() << "'"; in maybe_report_diff_for_symbol()
/third_party/typescript/tests/cases/conformance/expressions/typeAssertions/
DconstAssertions.ts112 const ns1 = accessorNames('foo'); constant
/third_party/lwip/src/netif/ppp/
Dppp.c1110 int sdns(ppp_pcb *pcb, u32_t ns1, u32_t ns2) { in sdns() argument
1114 ip_addr_set_ip4_u32_val(ns, ns1); in sdns()
1125 int cdns(ppp_pcb *pcb, u32_t ns1, u32_t ns2) { in cdns() argument
1131 ip_addr_set_ip4_u32_val(nsb, ns1); in cdns()
/third_party/lwip/src/include/netif/ppp/
Dppp_impl.h437 int sdns(ppp_pcb *pcb, u32_t ns1, u32_t ns2);
438 int cdns(ppp_pcb *pcb, u32_t ns1, u32_t ns2);
/third_party/node/doc/api/
Ddns.md413 { type: 'NS', value: 'ns1.example.com' },
416 nsname: 'ns1.example.com',
521 (e.g. `['ns1.example.com', 'ns2.example.com']`).
968 { type: 'NS', value: 'ns1.example.com' },
971 nsname: 'ns1.example.com',
1056 `['ns1.example.com', 'ns2.example.com']`).

12