Home
last modified time | relevance | path

Searched refs:location_ (Results 1 – 25 of 63) sorted by relevance

123

/external/image_io/includes/image_io/base/
Ddata_context.h26 : location_(location), in DataContext()
32 size_t GetLocation() const { return location_; } in GetLocation()
35 void SetLocation(size_t location) { location_ = location; } in SetLocation()
40 location_ += delta; in IncrementLocation()
41 return location_; in IncrementLocation()
59 return range_.IsValid() && range_.Contains(location_) && in IsValidLocationAndRange()
67 ? reinterpret_cast<const char*>(segment_.GetBuffer(location_)) in GetCharBytes()
75 return IsValidLocationAndRange() ? range_.GetEnd() - location_ : 0; in GetBytesAvailable()
133 size_t location_; variable
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
DRouteGuide.cs430 location_ = other.location_ != null ? other.location_.Clone() : null; in Feature()
455 private global::Routeguide.Point location_; field in Routeguide.Feature
461 get { return location_; }
463 location_ = value;
489 if (location_ != null) hash ^= Location.GetHashCode(); in GetHashCode()
507 if (location_ != null) { in WriteTo()
522 if (location_ != null) { in CalculateSize()
539 if (other.location_ != null) { in MergeFrom()
540 if (location_ == null) { in MergeFrom()
541 location_ = new global::Routeguide.Point(); in MergeFrom()
[all …]
/external/image_io/src/base/
Ddata_context.cc24 ss << "Invalid location:" << location_ << " range:[" << range_.GetBegin() in GetInvalidLocationAndRangeErrorText()
62 data_line = line_info_map_.GetDataLine(location_); in GetErrorText()
77 size_t spaces_count = location_ + spaces_before_caret - line_range.GetBegin(); in GetErrorText()
120 if (clipped_range->IsValid() && clipped_range->Contains(location_)) { in GetClippedAndLineRange()
121 line_begin = (clipped_range->GetBegin() + kLimit < location_) in GetClippedAndLineRange()
122 ? location_ - kLimit in GetClippedAndLineRange()
126 line_begin = location_; in GetClippedAndLineRange()
127 line_end = std::min(location_ + 2 * kLimit, range_.GetEnd()); in GetClippedAndLineRange()
155 if (index + line_range.GetBegin() < location_) { in GetLineString()
/external/vixl/src/
Dpool-manager.h118 location_(0) { in LocationBase()
130 location_(0) { in LocationBase()
143 location_(location) {} in LocationBase()
198 T GetLocation() const { return location_; } in GetLocation()
207 location_ = location; in SetLocation()
241 T location_;
335 : location_(location), in location_() function
350 T GetLocation() const { return location_; } in GetLocation()
356 void SetLocationToInvalidateOnly(T location) { location_ = location; } in SetLocationToInvalidateOnly()
361 T location_;
/external/openscreen/util/crypto/
Dopenssl_util.h44 : location_(location) { in OpenSSLErrStackTracer()
47 ~OpenSSLErrStackTracer() { ClearOpenSSLERRStack(location_); } in ~OpenSSLErrStackTracer()
50 const Location location_;
/external/llvm-project/flang/include/flang/Parser/
Dmessage.h152 : location_{pr}, text_{t} {} in Message()
154 : location_{pr}, text_{s} {} in Message()
156 : location_{pr}, text_{std::move(s)} {} in Message()
158 : location_{pr}, text_{t} {} in Message()
161 : location_{csr}, text_{t} {} in Message()
163 : location_{csr}, text_{s} {} in Message()
165 : location_{csr}, text_{std::move(s)} {} in Message()
167 : location_{csr}, text_{t} {} in Message()
171 : location_{r}, text_{MessageFormattedText{ in Message()
207 std::variant<ProvenanceRange, CharBlock> location_; variable
/external/icing/icing/legacy/index/
Dicing-mmapper.cc35 location_(0), in IcingMMapper()
45 location_(0), in IcingMMapper()
64 location_ = location; in DoMapping()
87 location_ = 0; in Unmap()
Dicing-mmapper.h68 uint64_t location() const { return location_; } in location()
87 uint64_t location_; // the requested mapping file location variable
/external/libchrome/crypto/
Dopenssl_util.h76 : location_(location) { in OpenSSLErrStackTracer()
80 ClearOpenSSLERRStack(location_); in ~OpenSSLErrStackTracer()
84 const base::Location location_;
/external/llvm-project/flang/lib/Parser/
Dmessage.cpp143 location_, that.location_); in SortBefore()
169 if (CharBlock * cb{std::get_if<CharBlock>(&location_)}) { in ResolveProvenances()
172 location_ = *resolved; in ResolveProvenances()
187 location_); in GetProvenanceRange()
256 location_, that.location_); in AtSameLocation()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc403 location_(parser_->source_code_info_->add_location()) { in LocationRecorder()
404 location_->add_span(parser_->input_->current().line); in LocationRecorder()
405 location_->add_span(parser_->input_->current().column); in LocationRecorder()
437 location_ = source_code_info_->add_location(); in Init()
438 location_->mutable_path()->CopyFrom(parent.location_->path()); in Init()
440 location_->add_span(parser_->input_->current().line); in Init()
441 location_->add_span(parser_->input_->current().column); in Init()
445 if (location_->span_size() <= 2) { in ~LocationRecorder()
451 location_->add_path(path_component); in AddPath()
455 location_->set_span(0, token.line); in StartAt()
[all …]
/external/llvm-project/flang/include/flang/Semantics/
Dsemantics.h79 const std::optional<parser::CharBlock> &location() const { return location_; } in location()
96 location_ = location; in set_location()
137 CHECK(location_); in Say()
138 return messages_.Say(*location_, std::forward<A>(args)...); in Say()
183 std::optional<parser::CharBlock> location_; variable
/external/perfetto/src/profiling/common/
Dcallstack_trie.h116 : id_(id), parent_(parent), location_(frame) {} in Node()
130 const Interned<Frame> location_; variable
135 return one.location_ < other.location_; in operator()
/external/deqp/framework/opengl/
DgluDrawUtil.hpp108 explicit BindingPoint (int location_) : type(BPTYPE_LOCATION), location(location_) {} in BindingPoint()
109 …indingPoint (const std::string& name_, int location_ = 0) : type(BPTYPE_NAME), name(name_), locati… in BindingPoint()
DgluVarType.cpp235 Layout::Layout (int location_, int binding_, int offset_, FormatLayout format_, MatrixOrder matrixO… in Layout() argument
236 : location (location_) in Layout()
/external/deqp/external/vulkancts/framework/vulkan/
DvkDebugReportUtil.hpp56 size_t location_, in DebugReportMessage()
63 , location (location_) in DebugReportMessage()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dgoogle_mesh_ca_certificate_provider_factory.h63 const std::string& location() const { return location_; } in location()
86 std::string location_; variable
/external/libbrillo/brillo/errors/
Derror.h62 return location_; in GetLocation()
114 base::Location location_; variable
Derror.cc80 new Error(location_, domain_, code_, message_, std::move(inner_error))); in Clone()
106 location_(location), in Error()
/external/libchrome/base/task/
Dcancelable_task_tracker_unittest.cc59 : location_(location), called_(false) {} in RunChecker()
63 ADD_FAILURE_AT(location_.file_name(), location_.line_number()); in ~RunChecker()
70 Location location_; member in base::__anon533752120111::RunChecker
/external/grpc-grpc/examples/cpp/route_guide/
Dhelper.cc79 if (!Match(location_) || !Match("{") || !Match(latitude_)) { in TryParseOne()
134 const std::string location_ = "\"location\":"; member in routeguide::Parser
/external/fonttools/Lib/fontTools/voltLib/
Dlexer.py40 def location_(self): member in Lexer
46 location = self.location_()
/external/fonttools/Lib/fontTools/feaLib/
Dlexer.py58 def location_(self): member in Lexer
64 location = self.location_()
176 location = self.location_()
/external/libchrome/libchrome_tools/patches/
Dlibchrome-Update-crypto.patch155 : location_(location) {
162 - const tracked_objects::Location location_;
163 + const base::Location location_;
/external/vixl/src/aarch32/
Dlocation-aarch32.cc48 VIXL_ASSERT(reference.LocationIsEncodable(location_)); in ResolveReferences()

123