HomeSort by relevance Sort by last modified time
    Searched refs:ns (Results 201 - 225 of 327) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 276 XmlElement::FirstWithNamespace(const std::string & ns) {
279 if (!pChild->IsText() && pChild->AsElement()->Name().Namespace() == ns)
286 XmlElement::NextWithNamespace(const std::string & ns) {
289 if (!pChild->IsText() && pChild->AsElement()->Name().Namespace() == ns)
xmlparser.cc 214 XmlParser::ParseContext::StartNamespace(const char *prefix, const char *ns) {
217 // ns == NS_CLIENT ? NS_CLIENT :
218 // ns == NS_ROSTER ? NS_ROSTER :
219 // ns == NS_GR ? NS_GR :
220 std::string(ns));
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 725 var ns = {};
729 if (ns[n[i]] == null)
730 ns[n[i]] = { rows: [], o: null };
731 ns[n[i]].rows.push(i);
740 for (var i in ns) {
741 if (ns[i].rows.length == 1 && typeof(os[i]) != "undefined" && os[i].rows.length == 1) {
742 n[ns[i].rows[0]] = { text: n[ns[i].rows[0]], row: os[i].rows[0] };
743 o[os[i].rows[0]] = { text: o[os[i].rows[0]], row: ns[i].rows[0] };
  /hardware/invensense/libsensors/
MPLSensor.h 57 virtual int setDelay(int32_t handle, int64_t ns);
MPLSensor.cpp 868 int MPLSensor::setDelay(int32_t handle, int64_t ns)
872 " setDelay handle: %d rate %d", handle, (int) (ns / 1000000LL));
904 if (ns < 0)
908 mDelays[what] = ns;
925 uint64_t ns = mDelays[i]; local
926 wanted = wanted < ns ? wanted : ns;
930 //Limit all rates to 100Hz max. 100Hz = 10ms = 10000000ns
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
b.c 470 int s, ns; local
478 if ((ns = f->gototab[s][*p]) != 0)
479 s = ns;
490 int s, ns; local
509 if ((ns = f->gototab[s][*q]) != 0)
510 s = ns;
549 int s, ns; local
567 if ((ns = f->gototab[s][*q]) != 0)
568 s = ns;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToStream.java     [all...]
  /external/libxml2/
schematron.c 49 (node->ns != NULL) && \
51 ((xmlStrEqual(node->ns->href, xmlSchematronNs)) || \
52 (xmlStrEqual(node->ns->href, xmlOldSchematronNs))))
56 if ((node->type == XML_ELEMENT_NODE ) && (node->ns != NULL) && \
57 ((xmlStrEqual(node->ns->href, xmlSchematronNs)) || \
58 (xmlStrEqual(node->ns->href, xmlOldSchematronNs)))) \
797 * @ns: the namespace name
803 const xmlChar *prefix, const xmlChar *ns)
830 xmlDictLookup(ctxt->dict, ns, -1);
1166 while (IS_SCHEMATRON(cur, "ns")) {
    [all...]
xinclude.c     [all...]
xmlschemas.c 317 ((node != NULL) && (node->ns != NULL) && \
319 (xmlStrEqual(node->ns->href, xmlSchemaNs)))
5778 xmlNsPtr ns; local
6709 const xmlChar *pc, *ns, *dictnsItem; local
7087 const xmlChar *attrValue, *name = NULL, *ns = NULL; local
8572 const xmlChar *ns = NULL, *fixed, *name, *attrValue; local
12702 xmlSchemaWildcardNsPtr ns; local
21753 xmlNsPtr ns; local
21801 xmlNsPtr ns = xmlSearchNs(node->doc, node, prefix); local
25452 xmlNsPtr ns; local
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 326 pBuffer[nOffset++] = (uint8_t)((psSequence->ns << 4) | (psSequence->nr));
340 psSequence->ns = pBuffer[nOffset] >> 4;
phLlcNfc_Frame.c 216 * \copydoc page_reg resets ns and nr value, when ack for U frame is received
672 uint8_t ns = 0; local
689 ns = (uint8_t)GET_BITS8 (
702 if(((ns <= nr) && ((nr - ns) <= psFrameInfo->window_size))
703 || ((ns > nr) && (((PH_LLCNFC_MOD_NS_NR + nr) - ns) <=
706 if(((ns < nr) && ((nr - ns) <= psFrameInfo->window_size))
707 || ((ns > nr) && (((PH_LLCNFC_MOD_NS_NR + nr) - ns) <=
    [all...]
  /external/libxslt/libxslt/
xsltutils.h 55 (((n) != NULL) && ((n)->ns != NULL) && \
56 (xmlStrEqual((n)->ns->href, XSLT_NAMESPACE)))
  /external/webrtc/
Android.mk 22 include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/ns/main/source/Android.mk
  /external/webrtc/src/modules/audio_processing/main/source/
Android.mk 56 $(LOCAL_PATH)/../../ns/main/interface \
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 413 String ns = Context.NOTIFICATION_SERVICE; local
415 (NotificationManager) mContext.getSystemService(ns);
  /external/openssl/crypto/x509v3/
v3_purp.c 362 ASN1_BIT_STRING *ns; local
455 if((ns=X509_get_ext_d2i(x, NID_netscape_cert_type, NULL, NULL))) {
456 if(ns->length > 0) x->ex_nscert = ns->data[0];
459 ASN1_BIT_STRING_free(ns);
  /bionic/libc/netbsd/resolv/
res_init.c 736 int ns; local
743 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
744 if (statp->_u._ext.nssocks[ns] != -1) {
745 (void) close(statp->_u._ext.nssocks[ns]);
746 statp->_u._ext.nssocks[ns] = -1;
  /ndk/sources/host-tools/make-3.81/
file.c 774 file_timestamp_cons (const char *fname, time_t s, int ns)
776 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
801 int ns;
814 ns = timespec.tv_nsec;
826 ns = timeval.tv_usec * 1000;
835 ns = 0;
841 return file_timestamp_cons (0, s, ns);
795 int ns; local
  /external/bluetooth/glib/gio/
gfileinfo.c 181 char *ns; local
202 ns = g_strndup (attribute, colon - attribute);
204 ns = g_strdup ("");
206 ns_info = _lookup_namespace (ns);
207 g_free (ns);
    [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 275 const char *ns; local
277 ns = II->getNameStart();
279 ns = "<anonymous>";
280 OS << '"' << UD->getDeclKindName() << ns << ";\"";
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 109 namespace ns { namespace
  /external/srec/srec/include/
front.h 166 int np, ns, nf, lognp; member in struct:__anon11332
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1046 int i, ns = lstrm.GetByte(); local
1049 if( ns != m_planes ) goto decoding_end;
1050 for( i = 0; i < ns; i++ )
1083 ProcessScan( idx, ns, data, step, color );
1110 void GrFmtJpegReader::ProcessScan( int* idx, int ns, uchar* data, int step, int color )
1119 assert( ns == m_planes && m_ss == 0 && m_se == 63 &&
1122 assert( idx[0] == 0 && (ns ==1 || (idx[1] == 1 && idx[2] == 2)));
1124 for( i = 0; i < ns; i++ )
1133 if( ns == 3 )
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java     [all...]

Completed in 579 milliseconds

1 2 3 4 5 6 7 891011>>