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

  /external/chromium_org/net/cert/
asn1_util.h 35 // it have the given |tag_value|. It returns true on success. The following
44 // If |tag_value & kOptional| is true then *out_header_len can be zero after a
47 unsigned tag_value,
54 // If |tag_value & kOptional| is true then this function cannot distinguish
57 unsigned tag_value,
asn1_util.cc 12 unsigned tag_value,
18 if ((tag_value & kAny) && (tag_value & kOptional))
21 if (in->empty() && (tag_value & kOptional)) {
32 if (tag_value != kAny &&
33 static_cast<unsigned char>(data[0]) != (tag_value & 0xff)) {
34 if (tag_value & kOptional) {
85 unsigned tag_value,
88 if (!ParseElement(in, tag_value, out, &header_len))
  /external/oprofile/libpp/
profile_spec.h 71 * @param tag_value a "tag:value" to interpret, all error throw an
74 void parse(std::string const & tag_value);
112 * @param tag_value input "tag:value" string
113 * @param value if success return the value part of tag_value
119 action_t get_handler(std::string const & tag_value,
profile_spec.cpp 74 void profile_spec::parse(string const & tag_value)
77 action_t action = get_handler(tag_value, value);
80 "a valid tag \"" + tag_value + "\"");
87 bool profile_spec::is_valid_tag(string const & tag_value)
90 return get_handler(tag_value, value);
184 profile_spec::get_handler(string const & tag_value, string & value)
186 string::size_type pos = tag_value.find_first_of(':');
190 string tag(tag_value.substr(0, pos));
191 value = tag_value.substr(pos + 1);
  /external/chromium_org/third_party/qcms/src/
qcmsint.h 212 struct tag_value {
  /external/chromium_org/third_party/ots/src/
ots.cc 35 bool CheckTag(uint32_t tag_value) {
37 const uint32_t check = tag_value & 0xff;
41 tag_value >>= 8;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 2782 std::string tag_value; local
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 4765 HValue* tag_value = Top(); local
    [all...]

Completed in 656 milliseconds