Searched refs:boundary_ (Results 1 – 10 of 10) sorted by relevance
/external/dynamic_depth/internal/dynamic_depth/ |
D | plane.cc | 59 plane->boundary_ = boundary; in FromData() 87 const std::vector<float>& Plane::GetBoundary() const { return boundary_; } in GetBoundary() 111 if (!boundary_.empty()) { in Serialize() 113 if (!EncodeFloatArrayBase64(boundary_, &base64_encoded_boundary)) { in Serialize() 167 boundary_ = boundary; in ParsePlaneFields()
|
/external/webrtc/webrtc/base/ |
D | multipart.cc | 25 boundary_(boundary), in MultipartStream() 41 content_type->append(boundary_); in GetContentType() 64 ss << "--" << boundary_ << "\r\n"; in AddPart() 87 ss << "--" << boundary_ << "--" << "\r\n"; in EndParts() 103 size += boundary_.size() + 4; // for "--boundary_\r\n"; in GetPartSize() 123 size += boundary_.size() + 6; // for "--boundary_--\r\n"; in GetEndPartSize()
|
D | multipart.h | 72 std::string type_, boundary_; variable
|
/external/libbrillo/brillo/http/ |
D | http_form_data.cc | 122 boundary_{boundary} { 123 if (boundary_.empty()) 124 boundary_ = base::StringPrintf("%016" PRIx64, base::RandUint64()); 145 "%s; boundary=\"%s\"", content_type_.c_str(), boundary_.c_str()); in GetContentType() 179 return base::StringPrintf("--%s\r\n", boundary_.c_str()); in GetBoundaryStart() 183 return base::StringPrintf("--%s--", boundary_.c_str()); in GetBoundaryEnd()
|
D | http_form_data.h | 183 const std::string& GetBoundary() const { return boundary_; } in GetBoundary() 191 std::string boundary_; // Boundary string used as field separator. variable
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | hlo_extractor.cc | 48 boundary_(boundary) {} in ExtractionVisitor() 62 if (boundary_ != nullptr && boundary_->count(hlo) > 0) { in DefaultAction() 106 absl::flat_hash_set<const HloInstruction*>* boundary_; member in xla::__anon2ff0d9c50111::ExtractionVisitor
|
/external/google-breakpad/src/common/mac/ |
D | HTTPMultipartUpload.m | 59 NSString *form = [NSString stringWithFormat:fmt, boundary_, escaped, value]; 71 NSString *pre = [NSString stringWithFormat:fmt, boundary_, escaped]; 93 boundary_ = [[self multipartBoundary] retain]; 105 [boundary_ release]; 154 boundary_] forHTTPHeaderField:@"Content-type"]; 185 NSString *epilogue = [NSString stringWithFormat:@"\r\n--%@--\r\n", boundary_];
|
D | HTTPMultipartUpload.h | 42 NSString *boundary_; // The boundary string (STRONG) variable
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | plane.h | 76 std::vector<float> boundary_; variable
|
/external/Microsoft-GSL/include/gsl/ |
D | multi_span | 868 : boundary_(bnd.index_bounds()), curr_(std::move(curr)) 884 if (curr_[i] < boundary_[i] - 1) 892 curr_ = boundary_; 906 if (!less(curr_, boundary_)) 909 for (std::size_t i = 0; i < rank; ++i) { curr_[i] = boundary_[i] - 1; } 919 curr_[i] = boundary_[i] - 1; 946 for (std::size_t i = rank - 1; i-- > 0;) { stride[i] = stride[i + 1] * boundary_[i + 1]; } 953 Expects(!less(curr_, index_type{}) && !less(boundary_, curr_)); 993 std::swap(boundary_, rhs.boundary_); 1016 if (!less(idx, boundary_)) [all …]
|