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

  /external/chromium/net/base/
asn1_util.h 25 // it have the given |tag_value|. It returns true on success. The following
34 unsigned tag_value,
41 unsigned tag_value,
asn1_util.cc 12 unsigned tag_value,
20 if (static_cast<unsigned char>(data[0]) != tag_value)
64 unsigned tag_value,
67 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/v8/src/
hydrogen.cc 2932 HValue* tag_value = Pop(); local
    [all...]

Completed in 57 milliseconds