HomeSort by: relevance | last modified time | path
    Searched refs:Modifiable (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
declaration.d 358 * Modifiable.yes or Modifiable.initialization
360 extern (D) final Modifiable checkModify(Loc loc, Scope* sc, Expression e1, ModifyFlags flag)
364 return Modifiable.initialization;
375 return Modifiable.initialization; // do not report type related errors
389 return Modifiable.initialization; // do not report type related errors
396 // It's only modifiable if inside the right constructor
398 return Modifiable.initialization;
400 return Modifiable.yes;
401 return modifyFieldVar(loc, sc, v, e1) ? Modifiable.initialization : Modifiable.yes
    [all...]
expression.d 92 enum Modifiable
94 /// Not modifiable
96 /// Modifiable (the type is mutable)
98 /// Modifiable because it is initialization
1002 // See if this expression is a modifiable lvalue (i.e. not const)
1003 if (checkModifiable(this, sc) == Modifiable.yes)
3726 // See if this expression is a modifiable lvalue (i.e. not const)
5539 error("slice expression `%s` is not a modifiable lvalue", toChars());
5824 bool modifiable = false; // assume it is an rvalue
5886 modifiable = true
    [all...]
statementsem.d 1032 if (fs.aggr.checkModifiable(sc2, ModifyFlags.noError) == Modifiable.initialization)
expressionsem.d 9026 && exp.e1.checkModifiable(sc) == Modifiable.initialization)
9034 // set Index::modifiable flag for complex AA element initialization
9327 // ensure we keep the expr modifiable
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 319 /// non-modifiable lvalue, if specified.
346 CM_RValue, // Not modifiable because it's an rvalue
347 CM_Function, // Not modifiable because it's a function; C++ only
361 unsigned short Modifiable;
364 : Kind(k), Modifiable(m)
372 assert(Modifiable != CM_Untested && "Did not test for modifiability.");
373 return static_cast<ModifiableType>(Modifiable);
409 /// expression is modifiable (C99 6.3.2.1p1).
411 /// if the expression is not modifiable.

Completed in 30 milliseconds