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

  /external/libchrome/sandbox/win/src/
sandbox_policy.h 35 // Allowable semantics when a rule is matched.
36 enum Semantics {
41 FILES_ALLOW_DIR_ANY, // Allows open or create with directory semantics
226 // semantics: One of the above enumerated FileSemantics.
235 virtual ResultCode AddRule(SubSystem subsystem, Semantics semantics,
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 192 SmallVector<Expr *, 4> Semantics;
202 Semantics.push_back(semantic);
208 ResultIndex = Semantics.size();
209 Semantics.push_back(resultExpr);
228 ResultIndex = Semantics.size() - 1;
368 // Make sure we bind that in the semantics.
394 assert(index < Semantics.size() &&
395 "captured expression not found in semantics!");
396 if (e == Semantics[index]) break;
405 Semantics, ResultIndex)
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 682 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
683 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
693 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
694 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
742 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
743 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
    [all...]

Completed in 41 milliseconds