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 215 bool isAtomic() const { return m_isAtomic; }
216 void setIsAtomic(bool isAtomic) { m_isAtomic = isAtomic; }
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 312 static bool isAtomic(Instruction *I) {
314 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
316 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
344 if (isAtomic(BI))
  /external/llvm/include/llvm/IR/
Instructions.h 213 bool isAtomic() const { return getOrdering() != NotAtomic; }
220 bool isSimple() const { return !isAtomic() && !isVolatile(); }
333 bool isAtomic() const { return getOrdering() != NotAtomic; }
340 bool isSimple() const { return !isAtomic() && !isVolatile(); }
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 515 bool isAtomic, bool hasStrong) {
523 // sizeof (Type of Ivar), isAtomic, false);
534 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
591 bool isAtomic() const { return IsAtomic; }
602 unsigned IsAtomic : 1;
618 IsAtomic = prop->isAtomic();
643 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
659 } else if (!IsAtomic) {
    [all...]

Completed in 413 milliseconds