Home
last modified time | relevance | path

Searched refs:NS (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/
Dhtml.js3 var NS = exports.NAMESPACES = { variable
172 SPECIAL_ELEMENTS[NS.HTML] = {};
173 SPECIAL_ELEMENTS[NS.HTML][$.ADDRESS] = true;
174 SPECIAL_ELEMENTS[NS.HTML][$.APPLET] = true;
175 SPECIAL_ELEMENTS[NS.HTML][$.AREA] = true;
176 SPECIAL_ELEMENTS[NS.HTML][$.ARTICLE] = true;
177 SPECIAL_ELEMENTS[NS.HTML][$.ASIDE] = true;
178 SPECIAL_ELEMENTS[NS.HTML][$.BASE] = true;
179 SPECIAL_ELEMENTS[NS.HTML][$.BASEFONT] = true;
180 SPECIAL_ELEMENTS[NS.HTML][$.BGSOUND] = true;
[all …]
Dforeign_content.js8 NS = HTML.NAMESPACES, variable
86 'xlink:actuate': {prefix: 'xlink', name: 'actuate', namespace: NS.XLINK},
87 'xlink:arcrole': {prefix: 'xlink', name: 'arcrole', namespace: NS.XLINK},
88 'xlink:href': {prefix: 'xlink', name: 'href', namespace: NS.XLINK},
89 'xlink:role': {prefix: 'xlink', name: 'role', namespace: NS.XLINK},
90 'xlink:show': {prefix: 'xlink', name: 'show', namespace: NS.XLINK},
91 'xlink:title': {prefix: 'xlink', name: 'title', namespace: NS.XLINK},
92 'xlink:type': {prefix: 'xlink', name: 'type', namespace: NS.XLINK},
93 'xml:base': {prefix: 'xml', name: 'base', namespace: NS.XML},
94 'xml:lang': {prefix: 'xml', name: 'lang', namespace: NS.XML},
[all …]
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp60 const NSAPI &NS, Commit &commit) { in rewriteObjCRedundantCallWithLiteral() argument
62 if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts())) in rewriteObjCRedundantCallWithLiteral()
71 NS.getNSClassId(NSAPI::ClassId_NSString) == II && in rewriteObjCRedundantCallWithLiteral()
72 (NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel || in rewriteObjCRedundantCallWithLiteral()
73 NS.getNSStringSelector(NSAPI::NSStr_initWithString) == Sel)) || in rewriteObjCRedundantCallWithLiteral()
76 NS.getNSClassId(NSAPI::ClassId_NSArray) == II && in rewriteObjCRedundantCallWithLiteral()
77 (NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel || in rewriteObjCRedundantCallWithLiteral()
78 NS.getNSArraySelector(NSAPI::NSArr_initWithArray) == Sel)) || in rewriteObjCRedundantCallWithLiteral()
81 NS.getNSClassId(NSAPI::ClassId_NSDictionary) == II && in rewriteObjCRedundantCallWithLiteral()
82 (NS.getNSDictionarySelector( in rewriteObjCRedundantCallWithLiteral()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.meaning/
Dp1.cpp24 namespace NS { namespace
32 namespace NS { namespace
35 void NS::foo(); // expected-warning {{extra qualification}}
36 extern int NS::bar; // expected-warning {{extra qualification}}
37 …struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name specifie…
38 …template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a…
39 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}}
41 void NS::foo() {} // expected-warning{{extra qualification on member 'foo'}} in foo()
42 int NS::bar; // expected-warning{{extra qualification on member 'bar'}}
43 struct NS::X { }; // expected-warning{{extra qualification on member 'X'}}
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
Dopen_element_stack_test.js8 NS = HTML.NAMESPACES; variable
143 var htmlElement = treeAdapter.createElement($.HTML, NS.HTML, []),
297 stack.push(treeAdapter.createElement($.HTML, NS.HTML, []));
298 stack.push(treeAdapter.createElement($.DIV, NS.HTML, []));
301 stack.push(treeAdapter.createElement($.P, NS.HTML, []));
302 stack.push(treeAdapter.createElement($.UL, NS.HTML, []));
303 stack.push(treeAdapter.createElement($.BUTTON, NS.HTML, []));
304 stack.push(treeAdapter.createElement($.OPTION, NS.HTML, []));
307 stack.push(treeAdapter.createElement($.TITLE, NS.SVG, []));
314 stack.push(treeAdapter.createElement($.HTML, NS.HTML, []));
[all …]
Dformatting_element_list_test.js8 NS = html.NAMESPACES; variable
27 element1 = treeAdapter.createElement($.DIV, NS.HTML, []),
28 element2 = treeAdapter.createElement($.P, NS.HTML, []);
46 element1 = treeAdapter.createElement($.DIV, NS.HTML, []),
47 element2 = treeAdapter.createElement($.P, NS.HTML, []),
48 element3 = treeAdapter.createElement($.SPAN, NS.HTML, []),
49 element4 = treeAdapter.createElement($.TITLE, NS.HTML, []);
71 element1 = treeAdapter.createElement($.DIV, NS.HTML, [
75 element2 = treeAdapter.createElement($.DIV, NS.HTML, [
114 element1 = treeAdapter.createElement($.DIV, NS.HTML, [
[all …]
/external/expat/lib/
Dxmltok_ns.c9 NS(XmlGetUtf8InternalEncoding)(void) in NS() function
15 NS(XmlGetUtf16InternalEncoding)(void) in NS() function
29 static const ENCODING * const NS(encodings)[] = {
40 NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end, in NS() function
43 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS()
48 NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end, in NS() function
51 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS()
56 NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr, in NS() function
63 p->initEnc.scanners[XML_PROLOG_STATE] = NS(initScanProlog); in NS()
64 p->initEnc.scanners[XML_CONTENT_STATE] = NS(initScanContent); in NS()
[all …]
/external/clang/test/CodeGenCXX/
Dpredefined-expr.cpp127 namespace NS { namespace
416 template <typename T, template <typename> class Param = NS::ClassTemplate>
465 NS::Base::staticFunction(); in main()
467 NS::Base b; in main()
474 b.withTemplateParameter1(NS::ClassTemplate<int>()); in main()
475 b.withTemplateParameter2(NS::ClassTemplate<NS::Base *>()); in main()
479 b.functionTemplate1<NS::Base *>(0); in main()
484 NS::Base().refQualifiedFunction(); in main()
486 NS::Derived d; in main()
489 NS::ClassTemplate<int> t1; in main()
[all …]
Ddebug-info-gline-tables-only.cpp6 namespace NS { namespace
26 NS::C c;
27 NS::D d;
28 NS::E e;
29 NS::F f;
Dmangle-std-externc.cpp10 namespace NS { namespace
26 return NS::D<NS::C>::i; in f()
/external/clang/test/Index/
Dindex-refs.cpp2 namespace NS { namespace
11 NS::MyInt NS::gx = EnumVal;
14 NS::MyInt x; in foo()
37 namespace NS { namespace
42 using namespace NS;
43 using namespace NS::Inn;
44 using NS::Foo;
Dfile-refs.cpp1 namespace NS { namespace
9 void NS::C::m() { in m()
15 NS::C c1(); in f()
16 NS::C c2 = NS::C(); in f()
/external/clang/test/SemaCXX/
Dfor-range-no-std.cpp16 namespace NS { namespace
28 NS::iter begin(NS::NoADL); // expected-note {{not viable}}
29 NS::iter end(NS::NoADL);
36 for (int b : NS::ADL()) {} // ok in f()
37 for (int b : NS::NoADL()) {} // expected-error {{invalid range expression of type 'NS::NoADL'}} in f()
Delaborated-type-specifier.cpp19 namespace NS { namespace
28 void test_X_elab(NS::X x) { in test_X_elab()
33 namespace NS { namespace
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/
Dopen_element_stack.js7 NS = HTML.NAMESPACES; variable
35 return ns === NS.HTML;
38 return ns === NS.MATHML;
44 return ns === NS.HTML;
47 return ns === NS.SVG;
53 return ns === NS.HTML;
56 return ns === NS.MATHML;
59 return ns === NS.SVG;
64 return (tn === $.APPLET || tn === $.OBJECT) && ns === NS.HTML;
67 return (tn === $.CAPTION || tn === $.MARQUEE) && ns === NS.HTML;
[all …]
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
Dp3.cpp5 namespace NS { namespace
8 using namespace NS;
20 namespace NS { namespace
23 using namespace NS;
25 using C = NS::C; // ok, same type
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/simple_api/
Dtokenizer_proxy.js10 NS = HTML.NAMESPACES; variable
47 this.inForeignContent = namespace !== NS.HTML;
57 this.inForeignContent = this.currentNamespace !== NS.HTML;
82 this._enterNamespace(NS.SVG);
85 this._enterNamespace(NS.MATHML);
94 this._enterNamespace(NS.HTML);
119 else if ((tn === $.SVG && this.currentNamespace === NS.SVG) ||
120 (tn === $.MATH && this.currentNamespace === NS.MATHML))
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
Dp2.cpp99 namespace NS { namespace
100 struct NS {}; struct
102 struct DerivedFromNS : NS::NS {
104 …using InhCtor::NS::NS; // expected-error {{using declaration in class refers into 'InhCtor::NS::',…
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/serialization/
Dserializer.js10 NS = HTML.NAMESPACES; variable
89 qualifiedTn = (ns === NS.HTML || ns === NS.SVG || ns === NS.MATHML) ? tn : (ns + ':' + tn);
111 var childNodesHolder = tn === $.TEMPLATE && ns === NS.HTML ?
132 else if (attr.namespace === NS.XML)
135 else if (attr.namespace === NS.XMLNS) {
142 else if (attr.namespace === NS.XLINK)
/external/clang/test/Parser/
Dobjc-recover.mm31 namespace NS { // expected-error{{expected unqualified-id}}
39 namespace NS {
45 // Make sure the declaration of NS::foo was recognized.
46 NS::foo();
53 namespace NS { // expected-error{{expected unqualified-id}}
/external/llvm/tools/opt/
DBreakpointPrinter.cpp33 if (auto *NS = dyn_cast<MDNamespace>(Context)) { in getContextName() local
34 if (!NS->getName().empty()) { in getContextName()
35 getContextName(NS->getScope(), N); in getContextName()
36 N = N + NS->getName().str() + "::"; in getContextName()
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
Dp1.cpp89 for (A NS:A()) { // expected-error {{no viable conversion from 'int' to 'X::A'}} in g() local
228 namespace NS { namespace
235 int *begin(NS::NoADL);
236 int *end(NS::NoADL);
243 for (auto u : NS::ADL()) { in j()
245 …for (auto u : NS::NoADL()) { // expected-error {{invalid range expression of type 'NS::NoADL'; no … in j()
/external/clang/test/PCH/
Dchain-staticvar-instantiation.cpp11 namespace NS { namespace
33 int g2 = NS::TS<int, 2>::value;
42 int g3 = NS::TS<int, 2>::value;
Dchain-friend-instantiation.cpp9 namespace NS { namespace
21 class TClass: public NS::TBaseClass<T>
28 namespace NS { namespace
/external/clang/include/clang/Edit/
DRewriters.h28 const NSAPI &NS, Commit &commit);
31 const NSAPI &NS, Commit &commit,
35 const NSAPI &NS, Commit &commit);

12345678910>>...12