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

  /prebuilts/go/darwin-x86/src/cmd/cover/
profile.go 148 // Boundary represents the position in a source file of the beginning or end of a
151 type Boundary struct {
158 // Boundaries returns a Profile as a set of Boundary objects within the provided src.
159 func (p *Profile) Boundaries(src []byte) (boundaries []Boundary) {
170 // boundary returns a Boundary, populating the Norm field with a normalized Count.
171 boundary := func(offset int, start bool, count int) Boundary {
172 b := Boundary{Offset: offset, Start: start, Count: count}
188 boundaries = append(boundaries, boundary(si, true, b.Count)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cover/
profile.go 148 // Boundary represents the position in a source file of the beginning or end of a
151 type Boundary struct {
158 // Boundaries returns a Profile as a set of Boundary objects within the provided src.
159 func (p *Profile) Boundaries(src []byte) (boundaries []Boundary) {
170 // boundary returns a Boundary, populating the Norm field with a normalized Count.
171 boundary := func(offset int, start bool, count int) Boundary {
172 b := Boundary{Offset: offset, Start: start, Count: count}
188 boundaries = append(boundaries, boundary(si, true, b.Count)
    [all...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
writer.go 21 boundary string
25 // NewWriter returns a new multipart Writer with a random boundary,
30 boundary: randomBoundary(),
34 // Boundary returns the Writer's boundary.
35 func (w *Writer) Boundary() string {
36 return w.boundary
40 // boundary separator with an explicit value.
45 func (w *Writer) SetBoundary(boundary string) error {
50 if len(boundary) < 1 || len(boundary) > 69
    [all...]
  /prebuilts/go/linux-x86/src/mime/multipart/
writer.go 21 boundary string
25 // NewWriter returns a new multipart Writer with a random boundary,
30 boundary: randomBoundary(),
34 // Boundary returns the Writer's boundary.
35 func (w *Writer) Boundary() string {
36 return w.boundary
40 // boundary separator with an explicit value.
45 func (w *Writer) SetBoundary(boundary string) error {
50 if len(boundary) < 1 || len(boundary) > 69
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SplitKit.cpp 523 SlotIndex Boundary = Idx.getBoundaryIndex();
524 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
527 return Boundary.getNextSlot();
530 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
544 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
    [all...]
  /external/v8/src/compiler/
types.h 273 struct Boundary {
278 static const Boundary BoundariesArray[];
279 static inline const Boundary* Boundaries();
  /external/llvm/lib/CodeGen/
SplitKit.cpp 567 SlotIndex Boundary = Idx.getBoundaryIndex();
568 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
571 return Boundary.getNextSlot();
574 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
588 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
    [all...]
  /external/v8/src/ast/
ast-types.h 345 struct Boundary {
350 static const Boundary BoundariesArray[];
351 static inline const Boundary* Boundaries();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h 219 FLOAT Boundary;
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]

Completed in 157 milliseconds