HomeSort by relevance Sort by last modified time
    Searched defs:Cap (Results 1 - 25 of 43) sorted by null

1 2

  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 27 ARO::Capacity Cap = ARO::Capacity::get(0);
28 EXPECT_LT(0u, Cap.getSize());
30 size_t PrevSize = Cap.getSize();
32 Cap = ARO::Capacity::get(N);
33 EXPECT_LE(N, Cap.getSize());
35 EXPECT_EQ(PrevSize, Cap.getSize());
37 EXPECT_LT(PrevSize, Cap.getSize());
38 PrevSize = Cap.getSize();
42 Cap = ARO::Capacity::get(0);
43 PrevSize = Cap.getSize()
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 63 // Cap returns the capacity of the buffer's underlying byte slice, that is, the
65 func (b *Buffer) Cap() int { return cap(b.buf) }
96 if len(b.buf)+n > cap(b.buf) {
100 } else if m+n <= cap(b.buf)/2 {
102 // slice. We only need m+n <= cap(b.buf) to slide, but
109 buf = makeSlice(2*cap(b.buf) + n)
167 if free := cap(b.buf) - len(b.buf); free < MinRead {
173 newBuf = makeSlice(2*cap(b.buf) + MinRead)
179 m, e := r.Read(b.buf[len(b.buf):cap(b.buf)]
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
buffer.go 63 // Cap returns the capacity of the buffer's underlying byte slice, that is, the
65 func (b *Buffer) Cap() int { return cap(b.buf) }
96 if len(b.buf)+n > cap(b.buf) {
100 } else if m+n <= cap(b.buf)/2 {
102 // slice. We only need m+n <= cap(b.buf) to slide, but
109 buf = makeSlice(2*cap(b.buf) + n)
167 if free := cap(b.buf) - len(b.buf); free < MinRead {
173 newBuf = makeSlice(2*cap(b.buf) + MinRead)
179 m, e := r.Read(b.buf[len(b.buf):cap(b.buf)]
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/
NvmExpress.h 135 NVME_CAP Cap;
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.h 214 auto Cap = getVec(CapabilityAddresses);
216 Cap.push_back(CapabilityFloat16Buffer);
218 Cap.insert(Cap.end(), C.begin(), C.end());
219 return Cap;
  /external/skia/include/core/
SkPaint.h 379 /** Cap enum specifies the settings for the paint's strokecap. This is the
383 If the cap is round or square, the caps are drawn when the contour has
389 The zero length contour draws the square cap without rotation, since
392 enum Cap {
415 /** Return the paint's stroke cap type, controlling how the start and end
417 @return the line cap style for the paint, used whenever the paint's
420 Cap getStrokeCap() const { return (Cap)fBitfields.fCapType; }
422 /** Set the paint's stroke cap type.
423 @param cap set the paint's line cap style, used whenever the paint'
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
value.go 673 // Cap returns v's capacity.
675 func (v Value) Cap() int {
684 return (*sliceHeader)(v.ptr).Cap
686 panic(&ValueError{"reflect.Value.Cap", v.kind()})
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
value.go 673 // Cap returns v's capacity.
675 func (v Value) Cap() int {
684 return (*sliceHeader)(v.ptr).Cap
686 panic(&ValueError{"reflect.Value.Cap", v.kind()})
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 106 static final Cap[] sCapArray = {
107 Cap.BUTT, Cap.ROUND, Cap.SQUARE
399 * The Cap specifies the treatment for the beginning and ending of
402 public enum Cap {
418 private Cap(int nativeInt) {
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 636 milliseconds

1 2