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

12 3 4 5 6 7

  /external/skia/src/c/
sk_paint.cpp 20 SkPaint::Cap fSK;
37 #define SKType SkPaint::Cap
109 SkPaint::Cap skcap;
  /prebuilts/go/darwin-x86/src/regexp/syntax/
regexp.go 26 Cap int // capturing index, for OpCapture
50 OpCapture // capturing subexpression with index Cap, optional name Name
107 if x.Cap != y.Cap || x.Name != y.Name || !x.Sub[0].Equal(y.Sub[0]) {
295 m = re.Cap
314 names[re.Cap] = re.Name
  /prebuilts/go/linux-x86/src/regexp/syntax/
regexp.go 26 Cap int // capturing index, for OpCapture
50 OpCapture // capturing subexpression with index Cap, optional name Name
107 if x.Cap != y.Cap || x.Name != y.Name || !x.Sub[0].Equal(y.Sub[0]) {
295 m = re.Cap
314 names[re.Cap] = re.Name
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 62 mPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 549 MachineOperand *allocateOperandArray(OperandCapacity Cap) {
550 return OperandRecycler.allocate(Cap, Allocator);
555 /// Cap must be the same capacity that was used to allocate the array.
556 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) {
557 OperandRecycler.deallocate(Cap, Array);
  /external/skia/gm/
nonclosedpaths.cpp 26 // The path looks closed, but final rendering has 2 ends with cap.
81 constexpr SkPaint::Cap kCap[] = {
100 for (size_t cap = 0; cap < SK_ARRAY_COUNT(kCap); ++cap) {
110 paint.setStrokeCap(kCap[cap]);
cubicpaths.cpp 141 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
146 paint.setStrokeCap(cap);
178 SkPaint::Cap fCap;
215 for (size_t cap = 0; cap < SK_ARRAY_COUNT(gCaps); ++cap) {
216 if (0 < cap) {
232 gCaps[cap].fCap, gCaps[cap].fJoin, gStyles[style].fStyle
    [all...]
  /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...]
  /packages/apps/Settings/src/com/android/settings/widget/
DonutView.java 87 mBackgroundCircle.setStrokeCap(Paint.Cap.BUTT);
94 mFilledArc.setStrokeCap(Paint.Cap.BUTT);
219 // Technically, this should be the cap height, but I can live with the descent - ascent.
  /prebuilts/go/darwin-x86/src/runtime/
memmove_linux_amd64_test.go 52 sp.Len, sp.Cap = 3<<30, 3<<30
  /prebuilts/go/linux-x86/src/runtime/
memmove_linux_amd64_test.go 52 sp.Len, sp.Cap = 3<<30, 3<<30
  /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;
SPIRVModule.cpp 92 bool hasCapability(SPIRVCapabilityKind Cap) const {
93 return CapMap.find(Cap) != CapMap.end();
451 SPIRVModuleImpl::addCapability(SPIRVCapabilityKind Cap) {
452 addCapabilities(SPIRV::getCapability(Cap));
453 SPIRVDBG(spvdbgs() << "addCapability: " << Cap << '\n');
454 if (hasCapability(Cap))
457 CapMap.insert(std::make_pair(Cap, new SPIRVCapability(this, Cap)));
461 SPIRVModuleImpl::addCapabilityInternal(SPIRVCapabilityKind Cap) {
463 if (hasCapability(Cap))
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
CircularProgressDrawable.java 214 * Sets the stroke cap of the progress spinner. Default stroke cap is {@link Paint.Cap#SQUARE}.
216 * @param strokeCap stroke cap
218 public void setStrokeCap(Paint.Cap strokeCap) {
224 * Returns the stroke cap of the progress spinner.
226 * @return stroke cap
228 public Paint.Cap getStrokeCap() {
644 mPaint.setStrokeCap(Paint.Cap.SQUARE);
665 void setStrokeCap(Paint.Cap strokeCap)
    [all...]
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
AnalogWatchFaceService.java 161 mHourPaint.setStrokeCap(Paint.Cap.ROUND);
168 mMinutePaint.setStrokeCap(Paint.Cap.ROUND);
175 mSecondPaint.setStrokeCap(Paint.Cap.ROUND);
SweepWatchFaceService.java 133 mHourPaint.setStrokeCap(Paint.Cap.ROUND);
140 mMinutePaint.setStrokeCap(Paint.Cap.ROUND);
147 mSecondPaint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 165 paint.setStrokeCap(Paint.Cap.BUTT);
173 paint.setStrokeCap(Paint.Cap.ROUND);
179 paint.setStrokeCap(Paint.Cap.SQUARE);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
LineAndPointFormatter.java 115 vertexPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/skia/src/pdf/
SkPDFGraphicState.cpp 39 static int to_stroke_cap(uint8_t cap) {
40 // PDF32000.book section 8.4.3.3 "Line Cap Style"
41 switch ((SkPaint::Cap)cap) {
  /frameworks/base/libs/hwui/
PathCache.h 132 SkPaint::Cap cap; member in struct:android::uirenderer::PathDescription
TessellationCache.h 64 SkPaint::Cap cap; member in struct:android::uirenderer::TessellationCache::Description
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineFunction.h 660 MachineOperand *allocateOperandArray(OperandCapacity Cap) {
661 return OperandRecycler.allocate(Cap, Allocator);
666 /// Cap must be the same capacity that was used to allocate the array.
667 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) {
668 OperandRecycler.deallocate(Cap, Array);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineFunction.h 660 MachineOperand *allocateOperandArray(OperandCapacity Cap) {
661 return OperandRecycler.allocate(Cap, Allocator);
666 /// Cap must be the same capacity that was used to allocate the array.
667 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) {
668 OperandRecycler.deallocate(Cap, Array);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineFunction.h 660 MachineOperand *allocateOperandArray(OperandCapacity Cap) {
661 return OperandRecycler.allocate(Cap, Allocator);
666 /// Cap must be the same capacity that was used to allocate the array.
667 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) {
668 OperandRecycler.deallocate(Cap, Array);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineFunction.h 660 MachineOperand *allocateOperandArray(OperandCapacity Cap) {
661 return OperandRecycler.allocate(Cap, Allocator);
666 /// Cap must be the same capacity that was used to allocate the array.
667 void deallocateOperandArray(OperandCapacity Cap, MachineOperand *Array) {
668 OperandRecycler.deallocate(Cap, Array);
    [all...]

Completed in 982 milliseconds

12 3 4 5 6 7