HomeSort by relevance Sort by last modified time
    Searched defs:Parse (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
pli.cc 40 bool Pli::Parse(const RtcpCommonHeader& header, const uint8_t* payload) {
receiver_report.cc 34 bool ReceiverReport::Parse(const RTCPUtility::RtcpCommonHeader& header,
52 block.Parse(next_report_block, ReportBlock::kLength);
report_block.cc 48 bool ReportBlock::Parse(const uint8_t* buffer, size_t length) {
rrtr.cc 30 void Rrtr::Parse(const uint8_t* buffer) {
sli.cc 53 void Sli::Macroblocks::Parse(const uint8_t* buffer) {
61 bool Sli::Parse(const RtcpCommonHeader& header, const uint8_t* payload) {
80 item.Parse(next_item);
voip_metric.cc 45 void VoipMetric::Parse(const uint8_t* buffer) {
app.cc 35 bool App::Parse(const RtcpCommonHeader& header, const uint8_t* payload) {
extended_jitter_report.cc 42 bool ExtendedJitterReport::Parse(const RtcpCommonHeader& header,
  /frameworks/base/cmds/incident_helper/src/
TextParserBase.cpp 26 status_t NoopParser::Parse(const int in, const int out) const
41 status_t ReverseParser::Parse(const int in, const int out) const
  /frameworks/base/cmds/incident_helper/src/parsers/
BatteryTypeParser.cpp 27 BatteryTypeParser::Parse(const int in, const int out) const
35 // parse line by line
KernelWakesParser.cpp 27 KernelWakesParser::Parse(const int in, const int out) const
40 // parse line by line
43 // parse head line
49 // parse for each record, the line delimiter is \t only!
  /art/cmdline/
cmdline_type_parser.h 33 // Parse a single value for an argument definition out of the wildcard component.
37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) {
42 // Parse a value and append it into the existing value so far, for argument
45 // The value is parsed out of the wildcard component as in Parse.
58 // Whether or not your type can parse argument definitions defined without a "_"
  /build/kati/
flags.cc 51 void Flags::Parse(int argc, char** argv) {
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cmdflag/
flag.go 72 // Parse sees if argument i is present in the definitions and if so,
75 func Parse(cmd string, defns []*Defn, args []string, i int) (f *Defn, value string, extra bool) {
  /prebuilts/go/linux-x86/src/cmd/go/internal/cmdflag/
flag.go 72 // Parse sees if argument i is present in the definitions and if so,
75 func Parse(cmd string, defns []*Defn, args []string, i int) (f *Defn, value string, extra bool) {
  /test/vts/utils/python/coverage/
sancov_parser.py 52 def Parse(self):
104 offsets = p.Parse()
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
HttpUtilities.h 81 The Parse() function is used to transform data stored in HttpHeader
112 /// designed to be used by EFI drivers and applications to parse HTTP
119 EFI_HTTP_UTILS_PARSE Parse;
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
html_module.py 25 def Parse(self, excluded_scripts):
27 parser_results = parse_html_deps.HTMLModuleParser().Parse(self.contents)
31 self.dependency_metadata = Parse(self.loader,
113 def Parse(loader, module_name, module_dir_name, is_component, parser_results,
  /external/libmojo/mojo/edk/system/ports/
message.cc 17 bool Message::Parse(const void* bytes,
  /external/skia/experimental/skottie/
SkottieParser.cpp 21 bool Parse<SkScalar>(const Json::Value& jv, SkScalar* v) {
24 return Parse(jv[0], v);
36 bool Parse<bool>(const Json::Value& jv, bool* v) {
46 bool Parse<int>(const Json::Value& jv, int* v) {
56 bool Parse<SkString>(const Json::Value& jv, SkString* v) {
66 bool Parse<SkPoint>(const Json::Value& jv, SkPoint* v) {
74 return Parse(jvx.isArray() ? jvx[0] : jvx, &v->fX)
75 && Parse(jvy.isArray() ? jvy[0] : jvy, &v->fY);
79 bool Parse<std::vector<float>>(const Json::Value& jv, std::vector<float>* v) {
86 if (!Parse(jv[i], v->data() + i))
    [all...]
  /external/skqp/experimental/skottie/
SkottieParser.cpp 21 bool Parse<SkScalar>(const Json::Value& jv, SkScalar* v) {
24 return Parse(jv[0], v);
36 bool Parse<bool>(const Json::Value& jv, bool* v) {
46 bool Parse<int>(const Json::Value& jv, int* v) {
56 bool Parse<SkString>(const Json::Value& jv, SkString* v) {
66 bool Parse<SkPoint>(const Json::Value& jv, SkPoint* v) {
74 return Parse(jvx.isArray() ? jvx[0] : jvx, &v->fX)
75 && Parse(jvy.isArray() ? jvy[0] : jvy, &v->fY);
79 bool Parse<std::vector<float>>(const Json::Value& jv, std::vector<float>* v) {
86 if (!Parse(jv[i], v->data() + i))
    [all...]
  /external/webrtc/webrtc/test/
rtcp_packet_parser.cc 24 void RtcpPacketParser::Parse(const void *data, size_t len) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 29 // Parse extracts the bitfield b from i, and return it as an unsigned integer.
30 // Parse will panic if b is invalid.
31 func (b BitField) Parse(i uint32) uint32 {
41 u := int32(b.Parse(i))
60 // parse extracts the bitfields from i, concatenate them and return the result
62 // parse will panic if any bitfield in b is invalid, but it doesn't check if
64 func (bs BitFields) parse(i uint32) (u uint32, Bits uint8) { func
66 u = (u << b.Bits) | b.Parse(i)
72 // Parse extracts the bitfields from i, concatenate them and return the result
73 // as an unsigned integer. Parse will panic if any bitfield in b is invalid
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
floatconv.go 19 // by Parse, with base argument 0. The entire string (not just a prefix) must
23 if f, _, err := z.Parse(s, 0); err == nil {
29 // scan is like Parse but reads the longest possible prefix representing a valid
31 // as the implementation of Parse. It does not recognize ħInf and does not expect
213 // Parse parses s which must contain a text representation of a floating-
250 func (z *Float) Parse(s string, base int) (f *Float, b int, err error) {
276 // ParseFloat is like f.Parse(s, base) with f set to the given precision
279 return new(Float).SetPrec(prec).SetMode(mode).Parse(s, base)
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 29 // Parse extracts the bitfield b from i, and return it as an unsigned integer.
30 // Parse will panic if b is invalid.
31 func (b BitField) Parse(i uint32) uint32 {
41 u := int32(b.Parse(i))
60 // parse extracts the bitfields from i, concatenate them and return the result
62 // parse will panic if any bitfield in b is invalid, but it doesn't check if
64 func (bs BitFields) parse(i uint32) (u uint32, Bits uint8) { func
66 u = (u << b.Bits) | b.Parse(i)
72 // Parse extracts the bitfields from i, concatenate them and return the result
73 // as an unsigned integer. Parse will panic if any bitfield in b is invalid
    [all...]

Completed in 1559 milliseconds

1 2 3 4 5 6 7 8 910