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

12 3 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java 41 private static final String ns = CtsXmlResultReporter.ns; field in class:DeviceInfoResult
65 serializer.startTag(ns, TAG);
71 serializer.startTag(ns, SCREEN_TAG);
72 serializer.attribute(ns, DeviceInfoConstants.RESOLUTION,
74 serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY,
76 serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY_BUCKET,
78 serializer.attribute(ns, DeviceInfoConstants.SCREEN_SIZE,
80 serializer.endTag(ns, SCREEN_TAG);
82 serializer.startTag(ns, PHONE_TAG)
    [all...]
Test.java 121 serializer.startTag(CtsXmlResultReporter.ns, TAG);
122 serializer.attribute(CtsXmlResultReporter.ns, NAME_ATTR, getName());
123 serializer.attribute(CtsXmlResultReporter.ns, RESULT_ATTR, mResult.getValue());
124 serializer.attribute(CtsXmlResultReporter.ns, STARTTIME_ATTR, mStartTime);
125 serializer.attribute(CtsXmlResultReporter.ns, ENDTIME_ATTR, mEndTime);
128 serializer.startTag(CtsXmlResultReporter.ns, SCENE_TAG);
129 serializer.attribute(CtsXmlResultReporter.ns, MESSAGE_ATTR, mMessage);
131 serializer.startTag(CtsXmlResultReporter.ns, STACK_TAG);
133 serializer.endTag(CtsXmlResultReporter.ns, STACK_TAG);
135 serializer.endTag(CtsXmlResultReporter.ns, SCENE_TAG)
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.h 19 string ns; member in struct:XMLAttribute
25 XMLAttribute(string ns, string name, string value);
38 const string& ns, const string& name, const string& def);
46 string Get(const string& ns) const;
47 string GetPrefix(const string& ns) const;
66 static XMLNode* NewElement(const SourcePos& pos, const string& ns, const string& name,
89 inline void SetName(const string& ns, const string& n) { m_ns = ns; m_name = n; }
94 vector<XMLNode*> GetElementsByName(const string& ns, const string& name) const;
95 XMLNode* GetElementByNameAt(const string& ns, const string& name, size_t index) const
    [all...]
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 32 namespace ns { namespace
51 if (result((ns::type) i).check())
60 if (result((ns::rec) i).check())
  /external/libxslt/libxslt/
namespaces.h 38 xmlNsPtr ns,
43 xmlNsPtr ns,
54 xmlNsPtr ns);
attributes.c 91 const xmlChar *ns; /* and its namespace */ member in struct:_xsltAttrElem
250 * @set and @ns; this fixes bug #340400.
256 if (old->ns != NULL)
257 list->ns = xmlDictLookup(style->dict, old->ns, -1);
263 if (old->ns != NULL)
264 cur->next->ns = xmlDictLookup(style->dict, old->ns, -1);
331 (child->ns == NULL) ||
434 refAttrItems->ns = prefix2
656 xmlNsPtr ns = NULL; local
    [all...]
templates.c 367 * @ns: the attribute namespace URI
378 const xmlChar *name, const xmlChar *ns)
386 expr = xsltGetNsProp(inst, name, ns);
412 * @ns: the attribute namespace URI
423 const xmlChar *name, const xmlChar *ns, int *found) {
430 expr = xsltGetNsProp(inst, name, ns);
481 if ((attr->ns != NULL) && xmlStrEqual(attr->ns->href, XSLT_NAMESPACE))
506 if (((attr->ns != NULL) == (ret->ns != NULL)) &
    [all...]
  /external/chromium/third_party/libjingle/overrides/talk/xmllite/
qname.h 18 QName(const std::string & ns, const std::string & local);
19 QName(bool add, const std::string & ns, const std::string & local);
qname.cc 16 QName::QName(const std::string & ns, const std::string & local) :
17 namespace_(ns), local_part_(local) {}
19 QName::QName(bool add, const std::string & ns, const std::string & local) :
20 namespace_(ns), local_part_(local) {}
  /frameworks/base/services/sensorservice/
SensorInterface.cpp 53 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) {
54 return mSensorDevice.setDelay(ident, handle, ns);
SensorInterface.h 40 virtual status_t setDelay(void* ident, int handle, int64_t ns) = 0;
61 virtual status_t setDelay(void* ident, int handle, int64_t ns);
RotationVectorSensor.h 44 virtual status_t setDelay(void* ident, int handle, int64_t ns);
58 virtual status_t setDelay(void* ident, int handle, int64_t ns);
SensorDevice.h 46 status_t setDelayForIdent(void* ident, int64_t ns);
57 status_t setDelay(void* ident, int handle, int64_t ns);
  /device/samsung/tuna/libsensors/
ProximitySensor.h 45 virtual int setDelay(int32_t handle, int64_t ns);
  /bionic/libc/netbsd/resolv/
res_send.c 229 int ns; local
234 for (ns = 0; ns < statp->nscount; ns++) {
235 srv = (struct sockaddr_in *)(void *)get_nsaddr(statp, (size_t)ns);
247 for (ns = 0; ns < statp->nscount; ns++) {
248 srv6 = (struct sockaddr_in6 *)(void *)get_nsaddr(statp, (size_t)ns);
358 int gotsomewhere, terrno, try, v_circuit, resplen, ns, n local
    [all...]
  /external/libxml2/include/libxml/
xpath.h 402 * @ns: a node-set
408 #define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0)
411 * @ns: a node-set
416 * Returns the xmlNodePtr at the given @index in @ns or NULL if
419 #define xmlXPathNodeSetItem(ns, index) \
420 ((((ns) != NULL) && \
421 ((index) >= 0) && ((index) < (ns)->nodeNr)) ? \
422 (ns)->nodeTab[(index)]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 49 * @param ns Namespace URI of the element
55 TransformerImpl transformer, String ns, String localName)
62 if (((null == ns) || (ns.length() == 0))
143 * @param ns Namespace URI of the element
150 String ns, String localName, Properties props, Serializer oldSerializer)
155 if (((null == ns) || (ns.length() == 0))
ClonerToResultTree.java 80 // String ns = dtm.getNamespaceURI(node);
83 // m_rth.startElement(ns, localName, dtm.getNodeNameX(node), null);
154 String ns = dtm.getNamespaceURI(node); local
155 if (ns==null) ns="";
157 // rth.startElement(ns, localName, dtm.getNodeNameX(node), null);
160 rth.startElement(ns, localName, dtm.getNodeNameX(node));
  /external/icu4c/i18n/
numsys.cpp 89 NumberingSystem *ns = new NumberingSystem(); local
91 ns->setRadix(radix_in);
92 ns->setDesc(desc_in);
93 ns->setAlgorithmic(isAlgorithmic_in);
94 ns->setName(NULL);
95 return ns;
122 NumberingSystem *ns = new NumberingSystem(); local
123 return ns;
132 NumberingSystem *ns = new NumberingSystem(); local
133 return ns;
178 NumberingSystem* ns = NumberingSystem::createInstance(radix,isAlgorithmic,nsd,status); local
    [all...]
  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 19 namespace ns { namespace
22 A<ns::B> a8; // expected-error{{use of class template ns::B requires template arguments}}
  /device/moto/stingray/sensors/
AccelerationSensor.h 45 virtual int setDelay(int32_t handle, int64_t ns);
GyroSensor.h 46 virtual int setDelay(int32_t handle, int64_t ns);
PressureSensor.h 44 virtual int setDelay(int32_t handle, int64_t ns);
  /device/samsung/crespo/libsensors/
LightSensor.h 48 virtual int setDelay(int32_t handle, int64_t ns);
  /external/clang/test/SemaCXX/
literal-operators.cpp 10 namespace ns { void operator "" _ns_good (const char *); } namespace

Completed in 340 milliseconds

12 3 4 5 6 7 8 91011>>