HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 501 - 525 of 1290) sorted by null

<<21222324252627282930>>

  /external/collada/src/dae/
daeElement.cpp 196 if (daeMetaAttribute* attr = getAttributeObject(i))
197 return (daeString)attr->getName();
220 if (daeMetaAttribute* attr = getAttributeObject(i)) {
222 attr->memoryToString(this, buffer);
237 daeElement::attr::attr() { } function in class:daeElement::attr
238 daeElement::attr::attr(const std::string& name, const std::string& value) function in class:daeElement::attr
241 daeTArray<daeElement::attr> daeElement::getAttributes() {
242 daeTArray<daeElement::attr> attrs
    [all...]
  /external/ipsec-tools/src/racoon/
racoonctl.c 1307 struct isakmp_data *attr; local
1317 attr = (struct isakmp_data *)(evtdump + 1);
1320 if (len < sizeof(*attr)) {
1325 if ((ntohs(attr->type) & ISAKMP_GEN_MASK) == ISAKMP_GEN_TV) {
1327 len -= sizeof(*attr);
1328 attr++;
1332 if (len < (sizeof(*attr) + ntohs(attr->lorv))) {
1337 switch (ntohs(attr->type) & ~ISAKMP_GEN_MASK) {
1339 if (ntohs(attr->lorv) < sizeof(addr4))
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 189 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
192 headercell.setText (attr.getName (), true);
194 if (attr != null)
196 boolean fail = (m_metrics [attrID] > 0) && ! attr.passes (item, m_metrics [attrID]);
199 attr.format (item, buf);
368 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
371 headercell.setText (attr.getName (), true);
373 if (attr != null)
375 boolean fail = (m_metrics [attrID] > 0) && ! attr.passes (item, m_metrics [attrID]);
378 attr.format (item, buf)
485 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
662 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
880 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
917 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
977 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
1041 final IItemAttribute attr = item.getAttribute (attrID, m_settings.getUnitsType ()); local
    [all...]
  /external/collada/src/modules/LIBXMLPlugin/
daeLIBXMLPlugin.cpp 427 void daeLIBXMLPlugin::writeAttribute( daeMetaAttribute* attr, daeElement* element)
430 attr->memoryToString(element, buffer);
437 if (!attr->getIsRequired()) {
438 if(!attr->getDefaultValue() && str.empty())
440 if(attr->getDefaultValue() && attr->compareToDefault(element) == 0)
444 xmlTextWriterStartAttribute(writer, (xmlChar*)(daeString)attr->getName());
456 if (daeMetaAttribute* attr = element->getMeta()->getValueAttribute()) {
458 attr->memoryToString(element, buffer);
  /external/libxml2/include/libxml/
valid.h 263 xmlAttributePtr attr);
271 xmlAttrPtr attr);
280 xmlAttrPtr attr);
283 xmlAttrPtr attr);
290 xmlAttrPtr attr);
296 xmlAttrPtr attr);
299 xmlAttrPtr attr);
335 xmlAttributePtr attr);
365 xmlAttrPtr attr,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 304 UiAttributeNode attr = mNode.setAttributeValue(name, uri, value, true /* override */); local
323 return attr != null;
348 Node attr = nodeAttributes.getNamedItemNS(uri, attrName); local
349 if (attr != null) {
350 return attr.getNodeValue();
412 Node attr = nodeAttributes.item(i); local
413 String uri = attr.getNamespaceURI();
414 String name = attr.getLocalName();
415 String value = attr.getNodeValue();
  /cts/tests/tests/util/src/android/util/cts/
StateSetTest.java 63 int[] stateSet = {R.attr.state_window_focused,
64 R.attr.state_pressed,
65 R.attr.state_selected,
66 R.attr.state_focused,
67 R.attr.state_enabled,
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 112 int attr = a.getIndex(i); local
113 switch (attr) {
115 mRadius = a.getDimensionPixelSize(attr, 0);
119 mLegend = a.getText(attr);
123 mAnrType = a.getInt(attr, 0);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunport.cc 83 const StunErrorCodeAttribute* attr = response->GetErrorCode(); local
84 if (!attr) {
88 << " class=" << attr->error_class()
89 << " number=" << attr->number()
90 << " reason='" << attr->reason() << "'";
  /external/collada/include/dae/
daeElement.h 228 struct DLLSPEC attr { struct in class:daeElement
229 attr();
230 attr(const std::string& name, const std::string& value);
238 * @return A daeArray of attr objects.
240 daeTArray<attr> getAttributes();
245 * @param attrs The array of attr objects to return.
247 void getAttributes(daeTArray<attr>& attrs);
511 std::string attrMismatch; // The name of the mismatched attribute, or "" if there was no attr mismatch
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 197 pthread_condattr_t attr; local
204 pthread_condattr_init (&attr);
207 pthread_condattr_setclock (&attr, CLOCK_MONOTONIC);
210 result = pthread_cond_init (&pcond->cond, &attr);
211 pthread_condattr_destroy (&attr);
  /external/libxml2/
HTMLtree.c 99 xmlAttrPtr attr = cur->properties; local
105 while (attr != NULL) {
106 if ((attr->children != NULL) &&
107 (attr->children->type == XML_TEXT_NODE) &&
108 (attr->children->next == NULL)) {
109 value = attr->children->content;
110 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv"))
114 && (!xmlStrcasecmp(attr->name, BAD_CAST"content")))
119 attr = attr->next
242 xmlAttrPtr attr = cur->properties; local
    [all...]
  /external/qemu/
sys-tree.h 391 #define RB_PROTOTYPE_INTERNAL(name, type, field, cmp, attr) \
392 attr void name##_RB_INSERT_COLOR(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *); \
393 attr void name##_RB_REMOVE_COLOR(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *, SYS_TREE_STRUCT type *);\
394 attr SYS_TREE_STRUCT type *name##_RB_REMOVE(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *); \
395 attr SYS_TREE_STRUCT type *name##_RB_INSERT(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *); \
396 attr SYS_TREE_STRUCT type *name##_RB_FIND(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *); \
397 attr SYS_TREE_STRUCT type *name##_RB_NFIND(SYS_TREE_STRUCT name *, SYS_TREE_STRUCT type *); \
398 attr SYS_TREE_STRUCT type *name##_RB_NEXT(SYS_TREE_STRUCT type *); \
399 attr SYS_TREE_STRUCT type *name##_RB_PREV(SYS_TREE_STRUCT type *); \
400 attr SYS_TREE_STRUCT type *name##_RB_MINMAX(SYS_TREE_STRUCT name *, int);
    [all...]
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 142 pthread_attr_t attr; local
143 pthread_attr_init(&attr);
144 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 4096);
145 pthread_create(&m_tid, &attr, pf, arg);
146 pthread_attr_destroy(&attr);
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingPthreads.cpp 253 pthread_mutexattr_t attr; local
254 pthread_mutexattr_init(&attr);
255 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
257 pthread_mutex_init(&m_mutex, &attr);
259 pthread_mutexattr_destroy(&attr);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sim_common.h 211 struct eap_sim_attrs *attr, int aka, int encr);
214 struct eap_sim_attrs *attr, int aka);
223 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
225 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
227 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.h 211 struct eap_sim_attrs *attr, int aka, int encr);
214 struct eap_sim_attrs *attr, int aka);
223 u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
225 u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr,
227 u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr);
  /frameworks/base/media/libstagefright/
AACWriter.cpp 132 pthread_attr_t attr; local
133 pthread_attr_init(&attr);
134 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
139 pthread_create(&mThread, &attr, ThreadWrapper, this);
140 pthread_attr_destroy(&attr);
AMRWriter.cpp 132 pthread_attr_t attr; local
133 pthread_attr_init(&attr);
134 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
139 pthread_create(&mThread, &attr, ThreadWrapper, this);
140 pthread_attr_destroy(&attr);
TimedEventQueue.cpp 59 pthread_attr_t attr; local
60 pthread_attr_init(&attr);
61 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
63 pthread_create(&mThread, &attr, ThreadWrapper, this);
65 pthread_attr_destroy(&attr);
  /frameworks/base/tools/aapt/
ResourceTable.cpp 271 String16 attr16("attr");
304 PendingAttribute attr(myPackage, in, block, inStyleable);
306 const String16 attr16("attr");
319 attr.ident = String16(block.getAttributeStringValue(identIdx, &len));
321 *outIdent = attr.ident;
324 attr.sourcePos.error("A 'name' attribute is required for <attr>\n");
325 attr.hasErrors = true;
328 attr.comment = String16(
334 attr.type = parse_flags(typeStr.string(), typeStr.size(), gFormatFlags)
1223 const uint16_t* attr = block.getAttributeName(i, &length); local
1331 const uint16_t* attr = block.getAttributeName(i, &length); local
1623 sp<Type> attr = getType(mAssetsPackage, String16("attr"), unknown); local
2340 sp<Type> attr = p->getType(String16("attr"), unknown); local
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.cpp 111 XMLAttribute attr; local
113 attr.name = "xmlns";
115 attr.name = "xmlns:";
116 attr.name += it->second;
118 attr.value = it->first;
119 attrs->push_back(attr);
163 const XMLAttribute& attr = list[i]; local
164 if (attr.ns == ns && attr.name == name) {
165 return attr.value
312 const XMLAttribute& attr = attrs[i]; local
462 XMLAttribute attr; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
DigitalClockTest.java 153 AttributeSet attr = Xml.asAttributeSet(parser); local
154 assertNotNull(attr);
155 return attr;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
X500Name.java 168 AttributeTypeAndValue[] attr = rdn.getTypesAndValues(); local
169 for (int j = 0; j != attr.length; j++)
171 if (attr[j].getType().equals(oid))
  /external/iproute2/ip/
iplink_vlan.c 144 static void vlan_print_map(FILE *f, char *name, struct rtattr *attr)
152 rem = RTA_PAYLOAD(attr);
153 for (i = RTA_DATA(attr); RTA_OK(i, rem); i = RTA_NEXT(i, rem)) {

Completed in 778 milliseconds

<<21222324252627282930>>