HomeSort by relevance Sort by last modified time
    Searched refs:Span (Results 26 - 50 of 60) sorted by null

12 3

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/
transform.go 17 func (foldTransform) Span(src []byte, atEOF bool) (n int, err error) {
99 func (narrowTransform) Span(src []byte, atEOF bool) (n int, err error) {
182 func (wideTransform) Span(src []byte, atEOF bool) (n int, err error) {
width.go 167 // Span implements the transform.SpanningTransformer interface.
168 func (t Transformer) Span(src []byte, atEOF bool) (n int, err error) {
169 return t.t.Span(src, atEOF)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/
transform.go 17 func (foldTransform) Span(src []byte, atEOF bool) (n int, err error) {
99 func (narrowTransform) Span(src []byte, atEOF bool) (n int, err error) {
182 func (wideTransform) Span(src []byte, atEOF bool) (n int, err error) {
width.go 167 // Span implements the transform.SpanningTransformer interface.
168 func (t Transformer) Span(src []byte, atEOF bool) (n int, err error) {
169 return t.t.Span(src, atEOF)
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 304 const DenseIndex span = SplineType::Span(knot_parameters[i], degree, knots); local
307 A.row(i).segment(span-degree, degree+1) = SplineType::BasisFunctions(knot_parameters[i], degree, knots);
386 const DenseIndex span = SplineType::Span(parameters[i], degree, knots); local
390 A.block(row, span - degree, 2, degree + 1)
398 A.row(row++).segment(span - degree, degree + 1)
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 32 // The struct that represents both Span objects and UntranslatableSections.
34 // Only present for Span objects. If not present, this was an UntranslatableSection.
37 // The UTF-16 index into the string where this span starts.
40 // The UTF-16 index into the string where this span ends, inclusive.
55 inline static UnifiedSpan SpanToUnifiedSpan(const StringPool::Span& span) {
56 return UnifiedSpan{*span.name, span.first_char, span.last_char};
64 // Merges the Span and UntranslatableSections of this StyledString into a single vector o
145 UnifiedSpan* span = span_idx >= merged_spans.size() ? nullptr : &merged_spans[span_idx]; local
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 65 for (const StringPool::Span& span : str->value->spans) {
66 pb::StyledString::Span* pb_span = pb_str->add_span();
67 pb_span->set_tag(*span.name);
68 pb_span->set_first_char(span.first_char);
69 pb_span->set_last_char(span.last_char);
TableProtoDeserializer.cpp 187 for (const pb::StyledString::Span& pb_span : pb_str.span()) {
188 style_str.spans.push_back(Span{pb_span.tag(), pb_span.first_char(), pb_span.last_char()});
TableProtoSerializer_test.cpp 60 style_string.spans.push_back(Span{"b", 0u, 4u});
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
transform.go 67 // SpanningTransformer extends the Transformer interface with a Span method
72 // Span returns a position in src such that transforming src[:n] results in
92 // Calling Span can modify the Transformer state as a side effect. In
97 // copying and allocating buffers. Calls to Span and Transform may be
99 Span(src []byte, atEOF bool) (n int, err error)
320 func (nop) Span(src []byte, atEOF bool) (n int, err error) {
404 // TODO: make chain use Span (is going to be fun to implement!)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
transform.go 67 // SpanningTransformer extends the Transformer interface with a Span method
72 // Span returns a position in src such that transforming src[:n] results in
92 // Calling Span can modify the Transformer state as a side effect. In
97 // copying and allocating buffers. Calls to Span and Transform may be
99 Span(src []byte, atEOF bool) (n int, err error)
320 func (nop) Span(src []byte, atEOF bool) (n int, err error) {
404 // TODO: make chain use Span (is going to be fun to implement!)
  /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/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...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 270 // Span implements transform.SpanningTransformer. It returns a boundary n such
272 func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 270 // Span implements transform.SpanningTransformer. It returns a boundary n such
272 func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
  /frameworks/base/core/java/android/widget/
ScrollView.java 156 * The StrictMode "critical time span" objects to catch animation
161 private StrictMode.Span mScrollStrictSpan = null; // aka "drag"
162 private StrictMode.Span mFlingStrictSpan = null;
227 final int span = getChildAt(0).getBottom() - mScrollY - bottomEdge; local
228 if (span < length) {
229 return span / (float) length;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
types.go 60 pkg.spans = make(map[types.Object]Span)
main.go 302 spans map[types.Object]Span
  /prebuilts/go/linux-x86/src/cmd/vet/
types.go 60 pkg.spans = make(map[types.Object]Span)
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX86BaseImpl.h     [all...]
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 152 * Build a string from XML that converts nested elements into Span objects.
181 // This is an HTML tag which we encode as a span. Add it to the span stack.
199 Span{std::move(span_name), static_cast<uint32_t>(builder.Utf16Len())});
239 // This is an HTML tag which we encode as a span. Update the span
241 Span& top_span = out_style_string->spans[span_stack.back()];
    [all...]
ResourceUtils.cpp 698 style_str.spans.push_back(Span{util::GetString(src_pool, spans->name.index),
ResourceValues.cpp 257 for (const StringPool::Span& span : value->spans) {
258 *out << " " << *span.name << ":" << span.first_char << "," << span.last_char;
  /prebuilts/go/darwin-x86/src/runtime/
mgcsweep.go 76 // sweeps one span
83 // in the middle of sweep thus leaving the span in an inconsistent state for next GC
98 // swept this span, but in that case the sweep
101 print("runtime: bad span s.state=", s.state, " s.sweepgen=", s.sweepgen, " sweepgen=", sg, "\n")
102 throw("non in-use span in unswept list")
111 // Span is still in-use, so this returned no
112 // pages to the heap and the span needs to
135 // Returns only when span s has been swept.
139 // Otherwise when this function returns the span can become unswept again
150 // The caller must be sure that the span is a MSpanInUse span
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mgcsweep.go 76 // sweeps one span
83 // in the middle of sweep thus leaving the span in an inconsistent state for next GC
98 // swept this span, but in that case the sweep
101 print("runtime: bad span s.state=", s.state, " s.sweepgen=", s.sweepgen, " sweepgen=", sg, "\n")
102 throw("non in-use span in unswept list")
111 // Span is still in-use, so this returned no
112 // pages to the heap and the span needs to
135 // Returns only when span s has been swept.
139 // Otherwise when this function returns the span can become unswept again
150 // The caller must be sure that the span is a MSpanInUse span
    [all...]

Completed in 289 milliseconds

12 3