HomeSort by relevance Sort by last modified time
    Searched refs:family_ (Results 1 - 15 of 15) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/ip/
tcp.hpp 75 return family_;
120 return p1.family_ == p2.family_;
126 return p1.family_ != p2.family_;
132 : family_(protocol_family)
136 int family_; member in class:asio::ip::tcp
  /external/webrtc/webrtc/base/
ipaddress.h 52 IPAddress() : family_(AF_UNSPEC) {
56 explicit IPAddress(const in_addr& ip4) : family_(AF_INET) {
61 explicit IPAddress(const in6_addr& ip6) : family_(AF_INET6) {
65 explicit IPAddress(uint32_t ip_in_host_byte_order) : family_(AF_INET) {
70 IPAddress(const IPAddress& other) : family_(other.family_) {
77 family_ = other.family_;
88 int family() const { return family_; }
116 int family_; member in class:rtc::IPAddress
    [all...]
ipaddress.cc 50 if (family_ == AF_INET) {
62 switch (family_) {
73 if (family_ != other.family_) {
76 if (family_ == AF_INET) {
79 if (family_ == AF_INET6) {
82 return family_ == AF_UNSPEC;
95 if (family_ != other.family_) {
96 if (family_ == AF_UNSPEC)
    [all...]
sslsocketfactory.cc 31 : AsyncSocketAdapter(NULL), factory_(factory), family_(family),
81 Attach(factory_->CreateProxySocket(detect_->proxy(), family_, type_));
92 int family_; member in class:rtc::ProxySocketAdapter
natsocketfactory.cc 73 : sf_(sf), family_(family), type_(type), connected_(false),
96 socket_ = sf_->CreateInternalSocket(family_, type_, addr, &server_addr_);
292 int family_; member in class:rtc::NATSocket
  /external/libchrome/base/
cpu.h 38 int family() const { return family_; }
65 int family_; // family of the processor member in class:base::CPU
cpu.cc 34 family_(0),
169 family_ = (cpu_info[0] >> 8) & 0xf;
  /external/v8/src/base/
cpu.h 41 int family() const { return family_; }
122 int family_; member in class:v8::base::final
cpu.cc 309 family_(0),
366 family_ = (cpu_info[0] >> 8) & 0xf;
384 if (family_ == 0x6) {
  /external/ImageMagick/Magick++/lib/Magick++/
Options.h 121 void fontFamily(const std::string &family_);
Image.h 258 void fontFamily(const std::string &family_);
    [all...]
Drawable.h 1072 DrawableFont ( const std::string &family_,
    [all...]
  /external/ImageMagick/Magick++/lib/
Options.cpp 303 void Magick::Options::fontFamily(const std::string &family_)
305 if (family_.length() == 0)
312 Magick::CloneString(&_drawInfo->family,family_);
313 (void) SetImageOption(imageInfo(),"family",family_.c_str());
Drawable.cpp 816 Magick::DrawableFont::DrawableFont ( const std::string &family_,
821 _family(family_),
    [all...]
Image.cpp 865 void Magick::Image::fontFamily(const std::string &family_)
868 options()->fontFamily(family_);
    [all...]

Completed in 459 milliseconds