HomeSort by relevance Sort by last modified time
    Searched refs:GetAttribute (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffConfigAcc.cpp 41 pFontNode->GetAttribute(XFA_ATTRIBUTE_Typeface, wsFontFamily);
42 pFontNode->GetAttribute(XFA_ATTRIBUTE_PsName, wsPsName);
44 pFontNode->GetAttribute(XFA_ATTRIBUTE_Weight, wsValue);
49 pFontNode->GetAttribute(XFA_ATTRIBUTE_Posture, wsValue);
  /external/sfntly/cpp/src/test/
test_xml_utils.h 29 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
test_xml_utils.cc 40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 86 const TiXmlAttribute* num_cmaps_attr = GetAttribute(cmap_table->at(0),
93 int32_t platform_id = GetAttribute(*it, "platform_id")->IntValue();
94 int32_t encoding_id = GetAttribute(*it, "encoding_id")->IntValue();
99 GetAttribute(*it, "format")->IntValue());
109 sscanf_s(GetAttribute(*jt, "char")->Value(), "%x", &character);
111 sscanf(GetAttribute(*jt, "char")->Value(), "%x", &character);
113 int32_t glyph_id = GetAttribute(*jt, "gid")->IntValue();
  /system/connectivity/shill/net/
attribute_list.cc 71 NetlinkAttribute* attribute = GetAttribute(id);
138 NetlinkAttribute* attribute = GetAttribute(id);
155 NetlinkAttribute* attribute = GetAttribute(id);
165 NetlinkAttribute* attribute = GetAttribute(id);
182 NetlinkAttribute* attribute = GetAttribute(id);
191 NetlinkAttribute* attribute = GetAttribute(id);
208 NetlinkAttribute* attribute = GetAttribute(id);
217 NetlinkAttribute* attribute = GetAttribute(id);
234 NetlinkAttribute* attribute = GetAttribute(id);
243 NetlinkAttribute* attribute = GetAttribute(id)
    [all...]
rtnl_message_unittest.cc 409 EXPECT_EQ(address.GetLength(), msg.GetAttribute(IFLA_ADDRESS).GetLength());
410 EXPECT_TRUE(msg.GetAttribute(IFLA_ADDRESS).Equals(address));
413 EXPECT_EQ(name.GetLength(), msg.GetAttribute(IFLA_IFNAME).GetLength());
414 EXPECT_TRUE(msg.GetAttribute(IFLA_IFNAME).Equals(name));
418 EXPECT_TRUE(msg.GetAttribute(IFLA_MTU).ConvertToCPUUInt32(&mtu_val));
422 EXPECT_EQ(qdisc.GetLength(), msg.GetAttribute(IFLA_QDISC).GetLength());
423 EXPECT_TRUE(msg.GetAttribute(IFLA_QDISC).Equals(qdisc));
426 EXPECT_EQ(oper_state, msg.GetAttribute(IFLA_OPERSTATE).GetConstData()[0]);
446 EXPECT_EQ(address.GetLength(), msg.GetAttribute(IFA_ADDRESS).GetLength());
449 msg.GetAttribute(IFA_ADDRESS)
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
ParsedMessage.h 40 static bool GetAttribute(const char *s, const char *key, AString *value);
  /external/libweave/src/notification/
xmpp_stream_parser_unittest.cc 154 EXPECT_TRUE(stanza2->GetAttribute("from", &value));
159 EXPECT_TRUE(stanza2->GetAttribute("to", &value));
169 EXPECT_TRUE(child->GetAttribute("channel", &value));
171 EXPECT_TRUE(child->GetAttribute("xmlns:push", &value));
178 EXPECT_TRUE(child1->GetAttribute("to", &value));
xml_node.h 41 bool GetAttribute(const std::string& name, std::string* value) const;
xml_node_unittest.cc 104 EXPECT_FALSE(node_->GetAttribute("foo", &attr));
105 EXPECT_EQ("bar", attr); // Shouldn't be changed by failed GetAttribute().
106 EXPECT_TRUE(node_->GetAttribute("attr1", &attr));
108 EXPECT_TRUE(node_->GetAttribute("attr2", &attr));
112 EXPECT_FALSE(new_node.GetAttribute("attr1", &attr));
xml_node.cc 33 bool XmlNode::GetAttribute(const std::string& name, std::string* value) const {
44 GetAttribute(name, &value);
xmpp_iq_stanza_handler.cc 92 if (!stanza->GetAttribute("type", &type)) {
98 if (!stanza->GetAttribute("id", &id_str)) {
  /external/boringssl/src/crypto/test/
file_test.h 110 // GetAttribute looks up the attribute with key |key|. It sets |*out_value| to
113 bool GetAttribute(std::string *out_value, const std::string &key);
file_test.cc 178 bool FileTest::GetAttribute(std::string *out_value, const std::string &key) {
214 if (!GetAttribute(&value, key)) {
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 33 static bool GetAttribute(const char *s, const char *key, AString *value) {
68 CHECK(GetAttribute(params.c_str(), "octet-align", &value) && value == "1");
69 CHECK(!GetAttribute(params.c_str(), "crc", &value) || value == "0");
70 CHECK(!GetAttribute(params.c_str(), "interleaving", &value));
APacketSource.cpp 44 static bool GetAttribute(const char *s, const char *key, AString *value) {
114 if (GetAttribute(params, "profile-level-id", &val)) {
126 if (!GetAttribute(params, "sprop-parameter-sets", &val)) {
225 CHECK(GetAttribute(params, "config", &val));
264 if (GetAttribute(params, "objectType", &val)) {
273 CHECK(GetAttribute(params, "config", &val));
368 CHECK(GetAttribute(params, "config", &val));
542 if (!GetAttribute(params.c_str(), "mode", &val)
AMPEG4ElementaryAssembler.cpp 38 static bool GetAttribute(const char *s, const char *key, AString *value) {
72 if (!GetAttribute(s, key, &val)) {
133 CHECK(GetAttribute(params.c_str(), "mode", &value));
AMPEG4AudioAssembler.cpp 35 static bool GetAttribute(const char *s, const char *key, AString *value) {
445 if (!GetAttribute(params.c_str(), "cpresent", &val)) {
454 CHECK(GetAttribute(params.c_str(), "config", &val));
  /external/ImageMagick/PerlMagick/t/
subroutines.pl 123 $normalized_mean_error=$background->GetAttribute('mean-error');
126 $errorinfo = "GetAttribute('mean-error') returned undefined value!";
130 $normalized_maximum_error=$background->GetAttribute('maximum-error');
133 $errorinfo = "GetAttribute('maximum-error') returned undefined value!";
367 $normalized_mean_error=$srcimage->GetAttribute('mean-error');
370 $errorinfo = "GetAttribute('mean-error') returned undefined value!";
375 $normalized_maximum_error=$srcimage->GetAttribute('maximum-error');
378 $errorinfo = "GetAttribute('maximum-error') returned undefined value!";
663 $normalized_mean_error=$image->GetAttribute('mean-error');
666 $errorinfo = "GetAttribute('mean-error') returned undefined value!"
    [all...]
  /external/boringssl/src/crypto/hmac/
hmac_test.cc 90 if (!t->GetAttribute(&digest_str, "HMAC")) {
  /external/webrtc/webrtc/p2p/base/
stun.cc 95 GetAttribute(STUN_ATTR_MAPPED_ADDRESS);
97 mapped_address = GetAttribute(STUN_ATTR_XOR_MAPPED_ADDRESS);
102 return static_cast<const StunAddressAttribute*>(GetAttribute(type));
107 return static_cast<const StunUInt32Attribute*>(GetAttribute(type));
111 return static_cast<const StunUInt64Attribute*>(GetAttribute(type));
115 return static_cast<const StunByteStringAttribute*>(GetAttribute(type));
120 GetAttribute(STUN_ATTR_ERROR_CODE));
125 GetAttribute(STUN_ATTR_UNKNOWN_ATTRIBUTES));
401 const StunAttribute* StunMessage::GetAttribute(int type) const {
  /system/connectivity/shill/
routing_table_unittest.cc 197 arg->GetAttribute(RTA_OIF).ConvertToCPUUInt32(&oif) &&
199 arg->GetAttribute(RTA_PRIORITY).ConvertToCPUUInt32(&priority) &&
220 arg->GetAttribute(RTA_DST),
224 arg->GetAttribute(RTA_SRC),
228 arg->GetAttribute(RTA_GATEWAY)).Equals(entry.gateway))) &&
229 arg->GetAttribute(RTA_OIF).ConvertToCPUUInt32(&oif) &&
231 arg->GetAttribute(RTA_PRIORITY).ConvertToCPUUInt32(&priority) &&
586 arg->GetAttribute(RTA_DST),
590 arg->GetAttribute(RTA_OIF).ConvertToCPUUInt32(&oif) &&
    [all...]
routing_table.cc 307 if (!message.GetAttribute(RTA_OIF).ConvertToCPUUInt32(&interface_index_u32)) {
314 message.GetAttribute(RTA_PRIORITY).ConvertToCPUUInt32(&metric);
322 dst_bytes = message.GetAttribute(RTA_DST);
326 src_bytes = message.GetAttribute(RTA_SRC);
330 gateway_bytes = message.GetAttribute(RTA_GATEWAY);
  /external/pdfium/xfa/src/fdp/include/
fde_xml.h 88 virtual FX_BOOL GetAttribute(int32_t index,
118 virtual FX_BOOL GetAttribute(int32_t index,
  /frameworks/av/media/libstagefright/foundation/
ParsedMessage.cpp 252 bool ParsedMessage::GetAttribute(
285 if (!GetAttribute(s, key, &stringValue)) {

Completed in 1403 milliseconds

1 2 3