HomeSort by relevance Sort by last modified time
    Searched defs:Assignment (Results 1 - 25 of 72) sorted by null

1 2 3

  /frameworks/compile/mclinker/lib/Script/
Assignment.cpp 1 //===- Assignment.cpp -----------------------------------------------------===//
9 #include "mcld/Script/Assignment.h"
28 // Assignment
30 Assignment::Assignment(Level pLevel,
34 : ScriptCommand(ScriptCommand::ASSIGNMENT),
41 Assignment::~Assignment() {
44 Assignment& Assignment::operator=(const Assignment& pAssignment)
    [all...]
  /build/soong/androidmk/parser/
ast.go 13 type Assignment struct {
20 func (x *Assignment) Dump() string {
28 func (x *Assignment) Pos() Pos {
35 func (x *Assignment) End() Pos { return x.Value.End() }
  /external/clang/test/Sema/
warn-double-promotion.c 27 void Assignment(float f, double d, long double ld) {
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /external/eigen/Eigen/src/SparseCore/
SparseProduct.h 102 struct Assignment<DstXprType, Product<Lhs,Rhs,AliasFreeProduct>, internal::assign_op<typename DstXprType::Scalar,typename Product<Lhs,Rhs,AliasFreeProduct>::Scalar>, Sparse2Dense>
118 struct Assignment<DstXprType, Product<Lhs,Rhs,AliasFreeProduct>, internal::add_assign_op<typename DstXprType::Scalar,typename Product<Lhs,Rhs,AliasFreeProduct>::Scalar>, Sparse2Dense>
129 struct Assignment<DstXprType, Product<Lhs,Rhs,AliasFreeProduct>, internal::sub_assign_op<typename DstXprType::Scalar,typename Product<Lhs,Rhs,AliasFreeProduct>::Scalar>, Sparse2Dense>
SparseAssign.h 37 internal::Assignment<Derived,OtherDerived,internal::assign_op<Scalar,typename OtherDerived::Scalar> >
126 // Generic Sparse to Sparse assignment
128 struct Assignment<DstXprType, SrcXprType, Functor, Sparse2Sparse>
136 // Generic Sparse to Dense assignment
138 struct Assignment<DstXprType, SrcXprType, Functor, Sparse2Dense>
159 struct Assignment<DstXprType, Solve<DecType,RhsType>, internal::assign_op<Scalar,Scalar>, Sparse2Sparse>
178 struct Assignment<DstXprType, SrcXprType, Functor, Diagonal2Sparse>
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 30 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |=
  /external/eigen/Eigen/src/Core/
Solve.h 137 struct Assignment<DstXprType, Solve<DecType,RhsType>, internal::assign_op<Scalar,Scalar>, Dense2Dense>
153 struct Assignment<DstXprType, Solve<Transpose<const DecType>,RhsType>, internal::assign_op<Scalar,Scalar>, Dense2Dense>
169 struct Assignment<DstXprType, Solve<CwiseUnaryOp<internal::scalar_conjugate_op<typename DecType::Scalar>, const Transpose<const DecType> >,RhsType>,
DiagonalMatrix.h 317 // Diagonal matrix to Dense assignment
319 struct Assignment<DstXprType, SrcXprType, Functor, Diagonal2Dense>
  /external/eigen/Eigen/src/IterativeLinearSolvers/
SolveWithGuess.h 96 struct Assignment<DstXprType, SolveWithGuess<DecType,RhsType,GuessType>, internal::assign_op<Scalar,Scalar>, Dense2Dense>
  /frameworks/compile/mclinker/include/mcld/Script/
Assignment.h 1 //===- Assignment.h -------------------------------------------------------===//
21 /** \class Assignment
22 * \brief This class defines the interfaces to assignment command.
25 class Assignment : public ScriptCommand {
36 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr);
38 ~Assignment();
40 Assignment& operator=(const Assignment& pAssignment);
55 return pCmd->getKind() == ScriptCommand::ASSIGNMENT;
  /build/blueprint/parser/
ast.go 30 // Definition is an Assignment or a Module at the top level of a Blueprints file
37 // An Assignment is a variable assignment at the top level of a Blueprints file, scoped to the
39 type Assignment struct {
49 func (a *Assignment) String() string {
53 func (a *Assignment) Pos() scanner.Position { return a.NamePos }
54 func (a *Assignment) End() scanner.Position { return a.Value.End() }
56 func (a *Assignment) definitionTag() {}
110 // An Expression is a Value in a Property or Assignment. It can be a literal (String or Bool), a
112 // references and Assignment
    [all...]
  /external/eigen/Eigen/src/LU/
InverseImpl.h 290 struct Assignment<DstXprType, Inverse<XprType>, internal::assign_op<typename DstXprType::Scalar,typename XprType::Scalar>, Dense2Dense>
FullPivLU.h 863 struct Assignment<DstXprType, Inverse<FullPivLU<MatrixType> >, internal::assign_op<typename DstXprType::Scalar,typename FullPivLU<MatrixType>::Scalar>, Dense2Dense>
    [all...]
  /system/tools/aidl/
ast_cpp.cpp 319 Assignment::Assignment(const std::string& left, const std::string& right)
320 : Assignment(left, new LiteralExpression{right}) {}
322 Assignment::Assignment(const std::string& left, AstNode* right)
326 void Assignment::Write(CodeWriter* to) const {
ast_java.cpp 150 Assignment::Assignment(Variable* l, Expression* r)
153 Assignment::Assignment(Variable* l, Expression* r, const Type* c)
156 void Assignment::Write(CodeWriter* to) const {
  /external/eigen/Eigen/src/QR/
CompleteOrthogonalDecomposition.h 531 struct Assignment<DstXprType, Inverse<CompleteOrthogonalDecomposition<MatrixType> >, internal::assign_op<typename DstXprType::Scalar,typename CompleteOrthogonalDecomposition<MatrixType>::Scalar>, Dense2Dense>
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 351 struct Assignment<DstXprType, Homogeneous<ArgType,Vertical>, internal::assign_op<Scalar,typename ArgType::Scalar>, Dense2Dense>
368 struct Assignment<DstXprType, Homogeneous<ArgType,Horizontal>, internal::assign_op<Scalar,typename ArgType::Scalar>, Dense2Dense>

Completed in 462 milliseconds

1 2 3