Searched defs:ns (Results 126 - 150 of 304) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser.cc208 XmlParser::ParseContext::StartNamespace(const char *prefix, const char *ns) { argument
209 xmlnsstack_.AddXmlns(*prefix ? prefix : STR_EMPTY, ns);
/external/chromium_org/third_party/libxslt/libxslt/
H A Dfunctions.c475 * The XPath module sets the owner element of a ns-node on
476 * the ns->next field.
700 xmlNsPtr ns = (xmlNsPtr) cur; local
702 if (ns->context != NULL)
703 doc = ns->context;
854 xmlNsPtr ns; local
857 ns = xmlSearchNs(tctxt->inst->doc, tctxt->inst, NULL);
858 if (ns != NULL) nsURI = xmlStrdup(ns->href);
H A Dpreproc.c73 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL))
85 if ((parent->ns == NULL) || (parent->type != XML_ELEMENT_NODE) ||
86 ((parent->ns != inst->ns) &&
87 (!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
113 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL) ||
127 if (((parent->ns == inst->ns) ||
128 ((parent->ns !
925 xmlNsPtr ns; local
1046 xmlNsPtr ns; local
[all...]
H A Dtemplates.c368 * @ns: the attribute namespace URI
379 const xmlChar *name, const xmlChar *ns)
387 expr = xsltGetNsProp(inst, name, ns);
413 * @ns: the attribute namespace URI
424 const xmlChar *name, const xmlChar *ns, int *found) {
431 expr = xsltGetNsProp(inst, name, ns);
482 if ((attr->ns != NULL) && xmlStrEqual(attr->ns->href, XSLT_NAMESPACE))
507 if (((attr->ns != NULL) == (ret->ns !
378 xsltEvalAttrValueTemplate(xsltTransformContextPtr ctxt, xmlNodePtr inst, const xmlChar *name, const xmlChar *ns) argument
423 xsltEvalStaticAttrValueTemplate(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *name, const xmlChar *ns, int *found) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_miptree.c401 struct nv30_surface *ns; local
405 ns = CALLOC_STRUCT(nv30_surface);
406 if (!ns)
408 ps = &ns->base;
419 ns->width = u_minify(pt->width0, ps->u.tex.level);
420 ns->height = u_minify(pt->height0, ps->u.tex.level);
421 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1;
422 ns->offset = layer_offset(pt, ps->u.tex.level, ps->u.tex.first_layer);
424 ns->pitch = 4096; /* random, just something the hw won't reject.. */
426 ns
437 struct nv30_surface *ns = nv30_surface(ps); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_miptree.c374 struct nv50_surface *ns = CALLOC_STRUCT(nv50_surface); local
375 if (!ns)
377 ps = &ns->base;
388 ns->width = u_minify(mt->base.base.width0, ps->u.tex.level);
389 ns->height = u_minify(mt->base.base.height0, ps->u.tex.level);
390 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1;
391 ns->offset = mt->level[templ->u.tex.level].offset;
394 ps->width = ns->width;
395 ps->height = ns->height;
397 ns
409 struct nv50_surface *ns = nv50_surface_from_miptree(mt, templ); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c355 struct nv50_surface *ns = nv50_surface_from_miptree(nv50_miptree(pt), templ); local
356 if (!ns)
358 ns->base.context = pipe;
359 return &ns->base;
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dxmlparser.cc191 XmlParser::ParseContext::StartNamespace(const char *prefix, const char *ns) { argument
192 xmlnsstack_.AddXmlns(*prefix ? prefix : STR_EMPTY, ns);
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DConfig.h98 static bool HasIgnorableDestructor(const std::string& ns, argument
100 return ns == "blink" && name == "ScriptWrappable";
H A DRecordInfo.cpp416 NamespaceDecl* ns =
418 if (ns && Config::HasIgnorableDestructor(ns->getName(), name_)) {
525 NamespaceDecl* ns = local
527 if (!ns || ns->getName() != "blink")
/external/clang/test/Parser/
H A Dcxx0x-attributes.cpp117 [[]] namespace ns { int i; } // expected-error {{an attribute list cannot appear here}} expected-note {{declared here}} namespace
121 [[]] using ns::i; // expected-error {{an attribute list cannot appear here}}
122 [[unknown]] using namespace ns; // expected-warning {{unknown attribute 'unknown' ignored}}
123 [[noreturn]] using namespace ns; // expected-error {{'noreturn' attribute only applies to functions}}
125 using [[]] alignas(4) [[]] ns::i; // expected-error {{an attribute list cannot appear here}}
130 [[ns::i); // expected-error {{expected ']'}} \
134 [[a]b ns::i); // expected-error {{expected ']'}} \
138 [[ab]ab] ns::i); // expected-error {{an attribute list cannot appear here}}
140 alignas(4 ns::i; // expected-note {{to match this '('}}
146 using ns
[all...]
/external/clang/test/SemaCXX/
H A Dattr-deprecated.cpp82 namespace ns { namespace in namespace:test1
87 foo(ns::Foo()); // expected-warning {{deprecated}}
H A Dfriend.cpp10 namespace ns { namespace in namespace:test0
15 friend void ns::f(int a);
H A Dusing-decl-1.cpp67 namespace ns { namespace in namespace:test0
77 void test(ns::Foo *p) {
101 namespace ns { int foo; } namespace in namespace:test2
102 template <class T> using ns::foo; // expected-error {{cannot template a using declaration}}
/external/e2fsprogs/misc/
H A Duuidd.c239 int i, s, ns, len, num; local
339 ns = accept(s, (struct sockaddr *) &from_addr, &fromlen);
341 if (ns < 0) {
347 len = read(ns, &op, 1);
357 if (read_all(ns, (char *) &num, sizeof(num)) != 4)
434 write_all(ns, (char *) &reply_len, sizeof(reply_len));
435 write_all(ns, reply_buf, reply_len);
437 close(ns);
/external/jemalloc/src/
H A Dutil.c105 const char *p, *ns; local
109 ns = p;
141 ns = p;
196 if (p == ns) {
205 if (p == ns) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
H A Dtrace-event-perl.c270 unsigned long s, ns; local
292 ns = nsecs - s * NSECS_PER_SEC;
305 XPUSHs(sv_2mortal(newSVuv(ns)));
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_miptree.c401 struct nv30_surface *ns; local
405 ns = CALLOC_STRUCT(nv30_surface);
406 if (!ns)
408 ps = &ns->base;
419 ns->width = u_minify(pt->width0, ps->u.tex.level);
420 ns->height = u_minify(pt->height0, ps->u.tex.level);
421 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1;
422 ns->offset = layer_offset(pt, ps->u.tex.level, ps->u.tex.first_layer);
424 ns->pitch = 4096; /* random, just something the hw won't reject.. */
426 ns
437 struct nv30_surface *ns = nv30_surface(ps); local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_miptree.c374 struct nv50_surface *ns = CALLOC_STRUCT(nv50_surface); local
375 if (!ns)
377 ps = &ns->base;
388 ns->width = u_minify(mt->base.base.width0, ps->u.tex.level);
389 ns->height = u_minify(mt->base.base.height0, ps->u.tex.level);
390 ns->depth = ps->u.tex.last_layer - ps->u.tex.first_layer + 1;
391 ns->offset = mt->level[templ->u.tex.level].offset;
394 ps->width = ns->width;
395 ps->height = ns->height;
397 ns
409 struct nv50_surface *ns = nv50_surface_from_miptree(mt, templ); local
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c355 struct nv50_surface *ns = nv50_surface_from_miptree(nv50_miptree(pt), templ); local
356 if (!ns)
358 ns->base.context = pipe;
359 return &ns->base;
/external/openfst/src/include/fst/
H A Dprune.h113 StateId ns = fst->NumStates(); local
114 if (ns == 0) return;
115 vector<Weight> idistance(ns, Weight::Zero());
118 tmp.reserve(ns);
131 vector<bool> visited(ns, false);
132 vector<size_t> enqueued(ns, kNoKey);
H A Dutil.h92 int32 ns = 0; local
93 strm.read(reinterpret_cast<char *>(&ns), sizeof(ns));
94 for (int i = 0; i < ns; ++i) {
198 int32 ns = s.size(); local
199 strm.write(reinterpret_cast<const char *>(&ns), sizeof(ns));
200 return strm.write(s.data(), ns);
/external/openfst/src/test/
H A Dfst_test.h66 StateId ns = 0; local
99 ++ns;
112 StateId ns = 0; local
116 ++ns;
118 CHECK_EQ(fst.NumStates(), ns);
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DNode.java351 protected PubSub createPubsubPacket(Type type, PacketExtension ext, PubSubNamespace ns) argument
353 return PubSubManager.createPubsubPacket(to, type, ext, ns);
362 protected Packet sendPubsubPacket(Type type, NodeExtension ext, PubSubNamespace ns) argument
365 return PubSubManager.sendPubsubPacket(con, to, type, ext, ns);
/external/srec/srec/cfront/
H A Dspec_anl.c47 void magsq(fftdata *x, fftdata *y, fftdata *z, int ns);
186 void magsq(fftdata *x, fftdata *y, fftdata *z, int ns) argument
196 for (i = 1; i < ns; i++)
418 void freq_warp(front_freq *freqobj, fftdata *inbuf, int ns) argument
431 tmpbuf = (fftdata *) CALLOC(ns, sizeof(fftdata), "cfront.tmpbuf");
446 c = (float)((1.0 - b) * (ns - 1));
448 nsE = (int)(y1 * (ns - 1));
450 for (i = 0; i < ns; i++)
458 if (u < ns)
464 tmpbuf[i] = inbuf[ns
[all...]

Completed in 536 milliseconds

1234567891011>>