Home
last modified time | relevance | path

Searched refs:_namespaces (Results 1 – 4 of 4) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DassertionFunctionWildcardImport1.types1 === tests/cases/compiler/src/core/_namespaces/ts.ts ===
15 import * as ts from "./_namespaces/ts";
18 import { Debug } from "./_namespaces/ts";
38 === tests/cases/compiler/src/other/_namespaces/ts.ts ===
40 export * from "../../core/_namespaces/ts"
44 import * as ts from "./_namespaces/ts";
47 import { Debug } from "./_namespaces/ts";
DassertionFunctionWildcardImport1.symbols1 === tests/cases/compiler/src/core/_namespaces/ts.ts ===
16 import * as ts from "./_namespaces/ts";
19 import { Debug } from "./_namespaces/ts";
35 === tests/cases/compiler/src/other/_namespaces/ts.ts ===
37 export * from "../../core/_namespaces/ts"
41 import * as ts from "./_namespaces/ts";
44 import { Debug } from "./_namespaces/ts";
/third_party/python/Lib/xml/sax/
Dexpatreader.py94 self._namespaces = namespaceHandling
132 return self._namespaces
147 self._namespaces = state
277 if self._namespaces:
/third_party/python/Lib/xml/etree/
DElementTree.py746 qnames, namespaces = _namespaces(self._root, default_namespace)
810 def _namespaces(elem, default_namespace=None): function