Searched defs:ShadowValue (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dshadow_value.cc15 ShadowValue::ShadowValue() function in class:gfx::ShadowValue
20 ShadowValue::ShadowValue(const gfx::Point& offset, function in class:gfx::ShadowValue
28 ShadowValue::~ShadowValue() {
31 ShadowValue ShadowValue::Scale(float scale) const {
34 return ShadowValue(scaled_offset, blur_ * scale, color_);
37 std::string ShadowValue
[all...]
H A Dshadow_value.h19 class ShadowValue;
20 typedef std::vector<ShadowValue> ShadowValues;
22 // ShadowValue encapsulates parameters needed to define a shadow, including the
24 class GFX_EXPORT ShadowValue { class in namespace:gfx
26 ShadowValue();
27 ShadowValue(const gfx::Point& offset, double blur, SkColor color);
28 ~ShadowValue();
36 ShadowValue Scale(float scale) const;
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp373 Value *ShadowValue, uint32_t TypeSize);
818 Value *ShadowValue,
830 LastAccessedByte, ShadowValue->getType(), false);
831 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
832 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
854 Value *ShadowValue = IRB.CreateLoad( local
857 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
867 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
817 createSlowPathCmp(IRBuilder< &IRB, Value *AddrLong, Value *ShadowValue, uint32_t TypeSize) argument

Completed in 889 milliseconds