HomeSort by relevance Sort by last modified time
    Searched defs:Span (Results 1 - 19 of 19) sorted by null

  /prebuilts/go/darwin-x86/src/cmd/vet/
shadow.go 59 // Span stores the minimum range of byte positions in the file in which a
63 // shadowing variable is declared within the span of the shadowed variable.
69 // One wrinkle: A "naked return" is a silent use of a variable that the Span
79 type Span struct {
84 // contains reports whether the position is inside the span.
85 func (s Span) contains(pos token.Pos) bool {
89 // growSpan expands the span for the object to contain the instance represented
97 span, ok := pkg.spans[obj]
99 if span.min > pos {
100 span.min = po
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
shadow.go 59 // Span stores the minimum range of byte positions in the file in which a
63 // shadowing variable is declared within the span of the shadowed variable.
69 // One wrinkle: A "naked return" is a silent use of a variable that the Span
79 type Span struct {
84 // contains reports whether the position is inside the span.
85 func (s Span) contains(pos token.Pos) bool {
89 // growSpan expands the span for the object to contain the instance represented
97 span, ok := pkg.spans[obj]
99 if span.min > pos {
100 span.min = po
    [all...]
  /external/boringssl/src/include/openssl/
span.h 32 class Span;
38 // they can be used with any type that implicitly converts into a Span.
40 "Span<T> must be derived from SpanBase<const T>");
42 friend bool operator==(Span<T> lhs, Span<T> rhs) {
59 friend bool operator!=(Span<T> lhs, Span<T> rhs) { return !(lhs == rhs); }
63 // A Span<T> is a non-owning reference to a contiguous array of objects of type
64 // |T|. Conceptually, a Span is a simple a pointer to |T| and a count of
65 // elements accessible via that pointer. The elements referenced by the Span ca
    [all...]
bytestring.h 20 #include <openssl/span.h>
44 // Allow implicit conversions to and from bssl::Span<const uint8_t>.
45 cbs_st(bssl::Span<const uint8_t> span)
46 : data(span.data()), len(span.size()) {}
47 operator bssl::Span<const uint8_t>() const {
  /frameworks/base/tools/aapt2/
StringPool.h 35 struct Span {
43 std::vector<Span> spans;
136 struct Span {
146 std::vector<Span> spans;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/secure/bidirule/
bidirule.go 223 n, err1 := t.Span(src, atEOF)
231 // Span returns the first n bytes of src that conform to the Bidi rule.
232 func (t *Transformer) Span(src []byte, atEOF bool) (n int, err error) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/secure/bidirule/
bidirule.go 223 n, err1 := t.Span(src, atEOF)
231 // Span returns the first n bytes of src that conform to the Bidi rule.
232 func (t *Transformer) Span(src []byte, atEOF bool) (n int, err error) {
  /external/swiftshader/src/Renderer/
Primitive.hpp 66 struct Span
72 // The rasterizer adds a zero length span to the top and bottom of the polygon to allow
74 Span outlineUnderflow[2];
75 Span outline[OUTLINE_RESOLUTION];
76 Span outlineOverflow[2];
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
transform.go 69 // SpanningTransformer extends the Transformer interface with a Span method
74 // Span returns a position in src such that transforming src[:n] results in
94 // Calling Span can modify the Transformer state as a side effect. In
99 // copying and allocating buffers. Calls to Span and Transform may be
101 Span(src []byte, atEOF bool) (n int, err error)
322 func (nop) Span(src []byte, atEOF bool) (n int, err error) {
406 // TODO: make chain use Span (is going to be fun to implement!)
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 271 // Span implements transform.SpanningTransformer. It returns a boundary n such
273 func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
transform.go 69 // SpanningTransformer extends the Transformer interface with a Span method
74 // Span returns a position in src such that transforming src[:n] results in
94 // Calling Span can modify the Transformer state as a side effect. In
99 // copying and allocating buffers. Calls to Span and Transform may be
101 Span(src []byte, atEOF bool) (n int, err error)
322 func (nop) Span(src []byte, atEOF bool) (n int, err error) {
406 // TODO: make chain use Span (is going to be fun to implement!)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 271 // Span implements transform.SpanningTransformer. It returns a boundary n such
273 func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 188 * \brief Returns the span within the knot vector in which u is falling.
189 * \param u The site for which the span is determined.
191 DenseIndex span(Scalar u) const;
196 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots);
234 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span(
255 const DenseIndex i = Spline::Span(u, degree, knots);
291 DenseIndex Spline<_Scalar, _Dim, _Degree>::span(Scalar u) const function in class:Eigen::Spline
293 return Spline::Span(u, degree(), knots());
301 const DenseIndex span = this->span(u) local
324 const DenseIndex span = spline.span(u); local
386 const DenseIndex span = SplineType::Span(u, p, U); local
    [all...]
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-api/0.13.0/
opentracing-api-0.13.0.jar 
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp 367 ConstantRange Span =
373 Span = Span.inverse();
376 if (Span.getSetSize().ugt(8) || Span.isEmptySet() ||
378 Span.isWrappedSet())
381 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 162 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.SourceCodeInfo), global::Google.Protobuf.Reflection.SourceCodeInfo.Parser, new[]{ "Location" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.SourceCodeInfo.Types.Location), global::Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Parser, new[]{ "Path", "Span", "LeadingComments", "TrailingComments", "LeadingDetachedComments" }, null, null, null)}),
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 182 // How many Span tags (e.g. animations) to report.
2287 Span span = null; local
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 541 ConstantRange Span = ConstantRange::makeAllowedICmpRegion(
548 Span = Span.subtract(*RHSC);
556 Span = Span.inverse();
559 if (Span.getSetSize().ugt(8) || Span.isEmptySet()) {
568 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)
    [all...]

Completed in 1227 milliseconds