Searched defs:Shadow (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/ui/views/corewm/
H A Dshadow.cc14 // Shadow opacity for different styles.
27 float GetOpacityForStyle(views::corewm::Shadow::Style style) {
29 case views::corewm::Shadow::STYLE_ACTIVE:
31 case views::corewm::Shadow::STYLE_INACTIVE:
33 case views::corewm::Shadow::STYLE_SMALL:
39 int GetInteriorInsetForStyle(views::corewm::Shadow::Style style) {
41 case views::corewm::Shadow::STYLE_ACTIVE:
43 case views::corewm::Shadow::STYLE_INACTIVE:
45 case views::corewm::Shadow::STYLE_SMALL:
56 Shadow function in class:views::corewm::Shadow
[all...]
H A Dshadow.h24 class VIEWS_EXPORT Shadow : public ui::ImplicitAnimationObserver { class in namespace:views::corewm
39 Shadow();
40 virtual ~Shadow();
82 DISALLOW_COPY_AND_ASSIGN(Shadow);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parser.h207 unsigned Shadow:1; member in struct:asm_parser_state::__anon13716
/external/chromium_org/ui/views/bubble/
H A Dbubble_border.h57 enum Shadow { enum in class:views::BubbleBorder
83 BubbleBorder(Arrow arrow, Shadow shadow, SkColor color);
133 Shadow shadow() const { return shadow_; }
178 Shadow shadow_;
/external/mesa3d/src/mesa/program/
H A Dprogram_parser.h207 unsigned Shadow:1; member in struct:asm_parser_state::__anon24201
/external/clang/lib/AST/
H A DDeclCXX.cpp883 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
884 if (Shadow->getDeclName().getNameKind()
886 data().Conversions.addDecl(getASTContext(), Shadow, Shadow->getAccess()); local
1919 const UsingShadowDecl *Shadow = this; local
1921 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1922 Shadow = NextShadow;
1923 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h216 friend class Shadow;
224 // Shadow (from most significant bit):
232 class Shadow : public FastState { class in namespace:__tsan
234 explicit Shadow(u64 x) function in class:__tsan::Shadow
238 explicit Shadow(const FastState &s) function in class:__tsan::Shadow
274 static inline bool TidsAreEqual(const Shadow s1, const Shadow s2) {
280 static inline bool Addr0AndSizeAreEqual(const Shadow s1, const Shadow s2) {
285 static inline bool TwoRangesIntersect(Shadow s
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2132 UsingShadowDecl *Shadow = *I; local
2135 Shadow->getLocation(),
2136 Shadow->getTargetDecl(),
2147 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
2150 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
3968 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
3969 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
H A DSemaDeclCXX.cpp6983 UsingShadowDecl *Shadow local
6986 UD->addShadowDecl(Shadow);
6988 Shadow->setAccess(UD->getAccess());
6990 Shadow->setInvalidDecl();
6993 PushOnScopeChains(Shadow, S);
6995 CurContext->addDecl(Shadow);
6998 return Shadow;
7028 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { argument
7029 if (Shadow->getDeclName().getNameKind() ==
7031 cast<CXXRecordDecl>(Shadow
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp152 // Shadow = (Mem >> scale) + (1 << offset_log)
296 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
565 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { argument
566 // Shadow >> scale
567 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
569 return Shadow;
570 // (Shadow >> scale) | offset
572 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
574 return IRB.CreateAdd(Shadow, ConstantIn
1243 PoisonShadowPartialRightRedzone(uint8_t *Shadow, size_t Size, size_t RZSize, size_t ShadowGranularity, uint8_t Magic) argument
[all...]
H A DMemorySanitizer.cpp433 Instruction *Shadow; member in struct:__anon22547::MemorySanitizerVisitor::ShadowOriginAndInsertPoint
437 : Shadow(S), Origin(O), OrigIns(I) { }
438 ShadowOriginAndInsertPoint() : Shadow(0), Origin(0), OrigIns(0) { }
465 Value *Shadow = getShadow(Val); local
466 Value *ShadowPtr = getShadowPtr(Addr, Shadow->getType(), IRB);
469 IRB.CreateAlignedStore(Shadow, ShadowPtr, I.getAlignment());
478 if (ClStoreCleanOrigin || isa<StructType>(Shadow->getType())) {
482 Value *ConvertedShadow = convertToShadowTyNoVec(Shadow, IRB);
506 Instruction *Shadow = InstrumentationList[i].Shadow; local
743 Value *Shadow = ShadowMap[V]; local
1032 Value *Shadow; member in class:__anon22547::MemorySanitizerVisitor::Combiner
1284 Value* Shadow = local
1423 Value *Shadow = getShadow(&I, 1); local
1691 Value *Shadow = getShadow(RetVal); local
[all...]

Completed in 525 milliseconds