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

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 229 bool isAtomic() const { return m_isAtomic; }
230 void setIsAtomic(bool isAtomic) { m_isAtomic = isAtomic; }
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 299 static bool isAtomic(Instruction *I) {
301 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
303 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
328 if (isAtomic(&Inst))
  /external/clang/lib/CodeGen/
CGObjC.cpp 518 bool isAtomic, bool hasStrong) {
526 // sizeof (Type of Ivar), isAtomic, false);
537 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
594 bool isAtomic() const { return IsAtomic; }
605 unsigned IsAtomic : 1;
621 IsAtomic = prop->isAtomic();
646 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
662 } else if (!IsAtomic) {
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 228 bool isAtomic() const { return getOrdering() != NotAtomic; }
235 bool isSimple() const { return !isAtomic() && !isVolatile(); }
348 bool isAtomic() const { return getOrdering() != NotAtomic; }
355 bool isSimple() const { return !isAtomic() && !isVolatile(); }
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]

Completed in 85 milliseconds