HomeSort by: relevance | last modified time | path
    Searched refs:STC (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 42 enum STC : ulong // transfer changes to declaration.h
115 safeGroup = STC.safe | STC.trusted | STC.system,
116 IOR = STC.in_ | STC.ref_ | STC.out_,
117 TYPECTOR = (STC.const_ | STC.immutable_ | STC.shared_ | STC.wild)
    [all...]
clone.d 56 StorageClass s2 = (f.storage_class & STC.disable);
60 s2 |= STC.safe;
62 s2 |= STC.system;
64 s2 |= STC.trusted;
67 s2 |= STC.pure_;
69 s2 |= STC.nothrow_;
71 s2 |= STC.nogc;
76 StorageClass stc = (sa & (STC.pure_ | STC.nothrow_ | STC.nogc)) | (so & STC.disable)
    [all...]
escape.d 335 else if (v.storage_class & STC.variadic && p == sc.func)
436 if (!(param.storageClass & STC.return_))
446 const byRef = param.isReference() && !(param.storageClass & STC.scope_)
447 && !(param.storageClass & STC.returnScope); // fixme: it's possible to infer returnScope without scope with vaIsFirstRef
587 const bool vaIsRef = va && va.storage_class & STC.parameter &&
630 (va.storage_class & v.storage_class & (STC.maybescope | STC.variadic)) == STC.maybescope &&
640 (v.isScope() || (v.storage_class & STC.maybescope)) &&
641 !(v.storage_class & STC.return_) &
    [all...]
declaration.d 108 auto mustInit = ((var.storage_class & STC.nodefaultctor) != 0 ||
222 StorageClass storage_class = STC.undefined_;
278 if (!(storage_class & STC.disable))
281 if (sc.func && sc.func.storage_class & STC.disable)
330 if (!(ovl.storage_class & STC.disable))
397 if ((storage_class & (STC.foreach_ | STC.ref_)) == (STC.foreach_ | STC.ref_))
420 return (storage_class & STC.static_) != 0
    [all...]
attrib.d 84 extern (D) static Scope* createNewScope(Scope* sc, StorageClass stc, LINK linkage,
89 if (stc != sc.stc ||
99 sc2.stc = stc;
223 * <stc> <decl...>
227 StorageClass stc;
229 extern (D) this(StorageClass stc, Dsymbols* decl)
232 this.stc = stc;
    [all...]
dsymbolsem.d 248 dsym.isDeprecated_ = !!(sc.stc & STC.deprecated_);
315 dsym.storage_class |= sc.stc & STC.deprecated_;
345 printf(" stc = x%llx\n", dsym.storage_class);
377 if ((dsym.storage_class & (STC.foreach_ | STC.local)) == (STC.foreach_ | STC.local))
389 dsym.storage_class |= (sc.stc & ~(STC.synchronized_ | STC.override_ | STC.abstract_ | STC.final_))
    [all...]
parse.d 231 const stc = parseAttribute(exps);
232 if (stc & atAttrGroup)
240 if (stc)
315 StorageClass stc;
521 s = new AST.UnitTestDeclaration(loc, token.loc, STC.undefined_, null);
584 stc = STC.static_;
592 stc = STC.const_;
598 stc = STC.immutable_
    [all...]
importc.d 185 if (!(dsym.storage_class & (STC.static_ | STC.gshared)))
187 if (dsym.storage_class & (STC.extern_ | STC.field | STC.in_ | STC.foreach_ | STC.parameter | STC.result))
semantic3.d 257 //printf("storage class = x%x %x\n", sc.stc, storage_class);
263 if (funcdecl.storage_class & STC.inference)
276 funcdecl.storage_class |= STC.disable;
331 sc2.stc &= STC.flowThruFunction;
418 funcdecl.v_arguments.storage_class |= STC.temp | STC.parameter;
426 _arguments.storage_class |= STC.temp;
437 funcdecl.v_argptr.storage_class |= STC.temp;
457 StorageClass stc = 0
    [all...]
dmangle.d 987 auto stc = p.storageClass;
990 if (stc & STC.scopeinferred)
991 stc &= ~(STC.scope_ | STC.scopeinferred);
992 if (stc & STC.returninferred)
993 stc &= ~(STC.return_ | STC.returninferred)
    [all...]
statementsem.d 715 vinit = copyToTemp(STC.rvalue, "__aggr", fs.aggr);
809 if (p.storageClass & STC.manifest)
813 if (p.storageClass & STC.alias_)
971 if (p.storageClass & STC.ref_)
979 if (p.storageClass & STC.ref_)
994 fs.key.storage_class |= STC.temp | STC.foreach_;
996 fs.key.storage_class |= STC.nodtor;
998 if (p.storageClass & STC.ref_)
1026 fs.value.storage_class |= STC.foreach_
    [all...]
aggregate.d 169 sc2.stc &= STC.flowThruAggregate;
464 if ((vx.storage_class & STC.nodefaultctor) && !ctorinit)
597 auto stc = storage_class;
599 stc |= _scope.stc;
600 type = type.addSTC(stc);
608 return !!(this.storage_class & STC.deprecated_);
614 this.storage_class |= STC.deprecated_;
636 if (storage_class & STC.static_
    [all...]
sideeffect.d 259 if (v && (v.storage_class & STC.temp))
369 * stc = storage classes will be added to the made temporary variable
375 VarDeclaration copyToTemp(StorageClass stc, const char[] name, Expression e)
381 vd.storage_class = stc | STC.temp | STC.ctfe; // temporary is always CTFEable
397 * e's lvalue-ness will be handled well by STC.ref_ or STC.rvalue.
415 vd.storage_class |= e.isLvalue() ? STC.ref_ : STC.rvalue
    [all...]
func.d 368 this.storage_class &= ~(STC.TYPECTOR | STC.FUNCATTR);
450 if (storage_class & STC.inference)
545 vthis.storage_class |= STC.parameter | STC.nodtor;
551 vthis.storage_class |= STC.parameter;
554 vthis.storage_class |= STC.ref_;
561 vthis.storage_class |= STC.return_;
563 vthis.storage_class |= STC.scope_;
565 vthis.storage_class |= STC.returnScope
    [all...]
mtype.d 241 StorageClass stc = 0;
243 stc |= STC.immutable_;
245 stc |= STC.const_;
247 stc |= STC.wild;
249 stc |= STC.shared_;
250 return stc;
    [all...]
hdrgen.d 257 StorageClass stc = p.storageClass;
258 if (!p.type && !stc)
259 stc = STC.auto_;
260 if (stcToBuffer(buf, stc))
408 StorageClass stc = p.storageClass;
409 if (!p.type && !stc)
410 stc = STC.auto_;
411 if (stcToBuffer(buf, stc))
    [all...]
typesem.d 225 if (d && (d.storage_class & STC.templateparameter))
317 if (v.storage_class & (STC.const_ | STC.immutable_ | STC.manifest) ||
1158 //printf("TypeFunction::semantic() %s, sc.stc = %llx\n", mtype.toChars(), sc.stc);
1185 if (sc.stc & STC.pure_)
1187 if (sc.stc & STC.nothrow_
    [all...]
canthrow.d 246 if (vd.storage_class & STC.manifest)
249 else if (vd.isStatic() || vd.storage_class & (STC.extern_ | STC.gshared))
dsymbol.d 856 //printf("Dsymbol::setScope() %p %s, %p stc = %llx\n", this, toChars(), sc, sc.stc);
1734 Parameters* p = new Parameter(STC.in_, Type.tchar.constOf().arrayOf(), null, null);
1949 v.storage_class |= STC.temp | STC.static_ | STC.const_;
1963 v.storage_class |= STC.temp | STC.static_ | STC.const_;
2026 v.storage_class |= STC.temp | STC.static_ | STC.const_
    [all...]
traits.d 438 const save = sc.stc;
440 sc.stc |= STC.deprecated_;
443 sc.stc = save;
446 sc.stc = save;
591 ((cast(TypeClass)t.toBasetype()).sym.storage_class & STC.final_) != 0);
777 return isDeclX(d => (d.storage_class & STC.lazy_) != 0);
1441 StorageClass stc;
1443 // Set stc to storage class of the ith parameter
1461 stc = p.storageClass
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
LoopWidening.cpp 58 const StackFrameContext *STC = LCtx->getStackFrame();
60 const MemRegion *Regions[] = {MRMgr.getStackLocalsRegion(STC),
61 MRMgr.getStackArgumentsRegion(STC),
87 const CXXMethodDecl *CXXMD = dyn_cast<CXXMethodDecl>(STC->getDecl());
90 MRMgr.getCXXThisRegion(CXXMD->getThisType(), STC);
MemRegion.cpp 815 MemRegionManager::getStackLocalsRegion(const StackFrameContext *STC) {
816 assert(STC);
817 StackLocalsSpaceRegion *&R = StackLocalsSpaceRegions[STC];
823 new (R) StackLocalsSpaceRegion(*this, STC);
828 MemRegionManager::getStackArgumentsRegion(const StackFrameContext *STC) {
829 assert(STC);
830 StackArgumentsSpaceRegion *&R = StackArgumentsSpaceRegions[STC];
836 new (R) StackArgumentsSpaceRegion(*this, STC);
981 const auto *STC = V.get<const StackFrameContext *>();
983 if (!STC) {
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm_acle_builtins.def 33 VAR1 (STC, stc, void)
34 VAR1 (STC, stc2, void)
35 VAR1 (STC, stcl, void)
36 VAR1 (STC, stc2l, void)
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
arm_acle_builtins.def 33 VAR1 (STC, stc, void)
34 VAR1 (STC, stc2, void)
35 VAR1 (STC, stcl, void)
36 VAR1 (STC, stc2l, void)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
TargetMachine.h 161 template <typename STC> const STC &getSubtarget(const Function &F) const {
162 return *static_cast<const STC*>(getSubtargetImpl(F));

Completed in 76 milliseconds

1 2 3