Searched defs:flags (Results 201 - 225 of 1848) sorted by path

1234567891011>>

/external/clang/lib/CodeGen/
H A DCGBlocks.h58 uint32_t flags; member in class:clang::CodeGen::BlockFlags
60 BlockFlags(uint32_t flags) : flags(flags) {} argument
62 BlockFlags() : flags(0) {}
63 BlockFlags(BlockFlag_t flag) : flags(flag) {}
65 uint32_t getBitMask() const { return flags; }
66 bool empty() const { return flags == 0; }
69 return BlockFlags(l.flags | r.flags);
99 uint32_t flags; member in class:clang::CodeGen::BlockFieldFlags
101 BlockFieldFlags(uint32_t flags) argument
[all...]
H A DCGClass.cpp338 void Emit(CodeGenFunction &CGF, Flags flags) { argument
538 void Emit(CodeGenFunction &CGF, Flags flags) { argument
973 void Emit(CodeGenFunction &CGF, Flags flags) { argument
992 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1001 flags.isForNormalCleanup() && useEHCleanupForArray);
1374 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1434 void Emit(CodeGenFunction &CGF, Flags flags) { argument
H A DCGCleanup.cpp436 EHScopeStack::Cleanup::Flags flags,
439 if (flags.isForEHCleanup()) CGF.EHStack.pushTerminate();
454 Fn->Emit(CGF, flags);
462 if (flags.isForEHCleanup()) CGF.EHStack.popTerminate();
434 EmitCleanup(CodeGenFunction &CGF, EHScopeStack::Cleanup *Fn, EHScopeStack::Cleanup::Flags flags, llvm::Value *ActiveFlag) argument
H A DCGDebugInfo.cpp767 unsigned flags = 0; local
769 flags |= llvm::DIDescriptor::FlagPrivate;
771 flags |= llvm::DIDescriptor::FlagProtected;
774 alignInBits, offsetInBits, flags, debugType);
2603 unsigned flags = llvm::DIDescriptor::FlagArtificial; local
2612 CGM.getLangOpts().Optimize, flags,
H A DCGDecl.cpp355 void Emit(CodeGenFunction &CGF, Flags flags) { argument
358 flags.isForNormalCleanup() && this->useEHCleanupForArray;
374 void Emit(CodeGenFunction &CGF, Flags flags) { argument
376 bool NRVO = flags.isForNormalCleanup() && NRVOFlag;
398 void Emit(CodeGenFunction &CGF, Flags flags) { argument
409 void Emit(CodeGenFunction &CGF, Flags flags) { argument
428 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1400 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1422 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1478 void Emit(CodeGenFunction &CGF, Flags flags) { argument
[all...]
H A DCGException.cpp358 void Emit(CodeGenFunction &CGF, Flags flags) { argument
907 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1317 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1344 void Emit(CodeGenFunction &CGF, Flags flags) { argument
H A DCGExprCXX.cpp1023 void Emit(CodeGenFunction &CGF, Flags flags) {
1080 void Emit(CodeGenFunction &CGF, Flags flags) {
1361 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1462 void Emit(CodeGenFunction &CGF, Flags flags) { argument
H A DCGObjC.cpp409 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1257 void Emit(CodeGenFunction &CGF, Flags flags) { argument
1261 flags.isForNormalCleanup() && useEHCleanupForArray);
1678 void Emit(CodeGenFunction &CGF, Flags flags) { argument
2253 void Emit(CodeGenFunction &CGF, Flags flags) { argument
2262 void Emit(CodeGenFunction &CGF, Flags flags) { argument
H A DCGObjCMac.cpp1207 llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags,
1601 int flags;
2818 void Emit(CodeGenFunction &CGF, Flags flags) { argument
3605 /// unsigned flags;
3629 // Add the ObjC ABI version to the module flags.
4640 // const uint32_t flags; // = 0
4694 // uint32_t const flags;
4944 // Metadata flags
4959 /// uint32_t const flags;
4973 unsigned flags,
4972 BuildClassRoTInitializer( unsigned flags, unsigned InstanceStart, unsigned InstanceSize, const ObjCImplementationDecl *ID) argument
5143 uint32_t flags = CLS_META; local
[all...]
H A DCGObjCRuntime.cpp155 void Emit(CodeGenFunction &CGF, Flags flags) { argument
300 void Emit(CodeGenFunction &CGF, Flags flags) { argument
H A DCodeGenFunction.h189 /// Generation flags.
196 unsigned flags; member in class:clang::CodeGen::EHScopeStack::Cleanup::Flags
199 Flags() : flags(0) {}
202 bool isForEHCleanup() const { return flags & F_IsForEH; }
204 void setIsForEHCleanup() { flags |= F_IsForEH; }
206 bool isNormalCleanupKind() const { return flags & F_IsNormalCleanupKind; }
207 void setIsNormalCleanupKind() { flags |= F_IsNormalCleanupKind; }
211 bool isEHCleanupKind() const { return flags & F_IsEHCleanupKind; }
212 void setIsEHCleanupKind() { flags |= F_IsEHCleanupKind; }
225 // \param flags cleanu
236 Emit(CodeGenFunction &CGF, Flags flags) argument
253 Emit(CodeGenFunction &CGF, Flags flags) argument
273 Emit(CodeGenFunction &CGF, Flags flags) argument
296 Emit(CodeGenFunction &CGF, Flags flags) argument
[all...]
H A DItaniumCXXABI.cpp960 void Emit(CodeGenFunction &CGF, Flags flags) { argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp3037 // int flags;
4163 Constructor += ", int flags=0)";
4198 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n";
4203 Constructor += ", int flags=0) {\n";
4208 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n";
5043 unsigned flags = 0; local
5045 flags |= BLOCK_HAS_COPY_DISPOSE;
5054 ByrefType += utostr(flags);
5909 Preamble += " int flags;\n";
6052 /// const uint32_t flags; //
6342 Write__class_ro_t_initializer(ASTContext *Context, std::string &Result, unsigned int flags, const std::string &InstanceStart, const std::string &InstanceSize, ArrayRef<ObjCMethodDecl *>baseMethods, ArrayRef<ObjCProtocolDecl *>baseProtocols, ArrayRef<ObjCIvarDecl *>ivars, ArrayRef<ObjCPropertyDecl *>Properties, StringRef VarName, StringRef ClassName) argument
7056 uint32_t flags = CLS_META; local
[all...]
H A DRewriteObjC.cpp2615 // int flags;
3539 Constructor += ", int flags=0)";
3574 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n";
3579 Constructor += ", int flags=0) {\n";
3584 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n";
4354 unsigned flags = 0; local
4356 flags |= BLOCK_HAS_COPY_DISPOSE;
4366 ByrefType += utostr(flags);
4398 ByrefType += utostr(flags);
5130 Preamble += " int flags;\
[all...]
/external/clang/lib/Sema/
H A DScope.cpp19 void Scope::Init(Scope *parent, unsigned flags) { argument
21 Flags = flags;
23 if (parent && !(flags & FnScope)) {
48 if (flags & FnScope) FnParent = this;
49 if (flags & BreakScope) BreakParent = this;
50 if (flags & ContinueScope) ContinueParent = this;
51 if (flags & BlockScope) BlockParent = this;
52 if (flags & TemplateParamScope) TemplateParamParent = this;
55 if (flags & FunctionPrototypeScope) PrototypeDepth++;
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp972 unsigned flags = Record[Idx++]; local
973 bool byRef = (flags & 1);
974 bool nested = (flags & 2);
975 Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : 0);
H A DASTWriterDecl.cpp790 unsigned flags = 0; local
791 if (capture.isByRef()) flags |= 1;
792 if (capture.isNested()) flags |= 2;
793 if (capture.hasCopyExpr()) flags |= 4;
794 Record.push_back(flags);
/external/clang/test/CodeGen/
H A D2005-01-02-VAArgError-ICE.c5 int flags(int a, int b, ...) { function
H A D2008-08-07-AlignPadding2.c7 int flags; member in struct:__anon4152
H A Dblockstret.c59 int flags; member in struct:block_layout_abi
67 if ((layout->flags & BLOCK_HAS_OBJC_TYPE) != BLOCK_HAS_OBJC_TYPE) return 0;
68 if (layout->flags & BLOCK_HAS_COPY_DISPOSE)
77 return (layout->flags & want) == want;
82 printf("desired global flags: %d\n", BLOCK_USE_STRET | BLOCK_IS_GLOBAL | BLOCK_HAS_OBJC_TYPE);
83 printf("desired stack flags: %d\n", BLOCK_USE_STRET | BLOCK_HAS_OBJC_TYPE);
99 desired global flags: 1879048192
100 desired stack flags: 1610612736
H A Dstruct.c27 short flags; member in struct:__sf
/external/clang/test/Sema/
H A Duninit-variables.c413 unsigned long flags; local
420 (void)(flags); // no-warning
/external/clang/tools/libclang/
H A DCIndex.cpp3015 int flags; member in struct:_CXChildVisitResult
H A DIndex_Internal.h35 int flags; member in struct:_CXCursorAndRangeVisitorBlock
/external/clang/utils/
H A Dclang-completion-mode.el45 ;; needs all of the various compilation flags (include paths, dialect
47 ;; need to be placed into the clang-flags variable in a format
59 ;;; Extra compilation flags to pass to clang.
60 (defcustom clang-flags nil
61 "Extra flags to pass to the Clang executable.
147 (cc-flags (if (listp clang-flags) clang-flags nil))
149 cc-flags

Completed in 890 milliseconds

1234567891011>>