/external/lldb/source/Expression/ |
ASTResultSynthesizer.cpp | 274 // is_lvalue is used to record whether the expression returns an assignable Lvalue or an 313 bool is_lvalue = local 330 log->Printf("Last statement is an %s with type: %s", (is_lvalue ? "lvalue" : "rvalue"), s.c_str()); 335 if (is_lvalue)
|
ClangExpressionDeclMap.cpp | 184 bool is_lvalue 205 uint32_t offset = m_parser_vars->m_materializer->AddResultVariable(user_type, is_lvalue, m_keep_result_in_memory, err); 271 if (is_lvalue) [all...] |
/external/eigen/Eigen/src/Core/ |
ArrayWrapper.h | 44 internal::is_lvalue<ExpressionType>::value, 164 internal::is_lvalue<ExpressionType>::value,
|
Diagonal.h | 54 MaskLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0, 93 internal::is_lvalue<MatrixType>::value,
|
MapBase.h | 45 bool(internal::is_lvalue<Derived>::value), 193 internal::is_lvalue<Derived>::value,
|
Map.h | 96 Flags3 = is_lvalue<PlainObjectType>::value ? int(Flags2) : (int(Flags2) & ~LvalueBit),
|
Swap.h | 44 internal::is_lvalue<ExpressionType>::value,
|
Transpose.h | 44 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0, 113 internal::is_lvalue<MatrixType>::value,
|
Ref.h | 206 typename internal::enable_if<bool(internal::is_lvalue<Derived>::value&&bool(Traits::template match<Derived>::MatchAtCompileTime)),Derived>::type* = 0,
|
Block.h | 85 FlagsLvalueBit = is_lvalue<XprType>::value ? LvalueBit : 0,
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir.h | 168 virtual bool is_lvalue() const function in class:ir_rvalue 1482 bool is_lvalue() const function in class:ir_swizzle [all...] |
ir_validate.cpp | 610 if (!actual_param->is_lvalue()) {
|
ast_function.cpp | 144 * is_lvalue() is insufficient because the actual parameter at the 166 } else if (!actual->is_lvalue()) { [all...] |
ir.cpp | 1263 ir_dereference::is_lvalue() const function in class:ir_dereference [all...] |
ast_to_hir.cpp | 644 * is handled by ir_dereference::is_lvalue. 707 } else if (!lhs->is_lvalue()) { [all...] |
/external/eigen/Eigen/src/Core/util/ |
StaticAssert.h | 192 EIGEN_STATIC_ASSERT(internal::is_lvalue<Derived>::value, \
|
XprHelper.h | 459 struct is_lvalue
|
/external/lldb/include/lldb/Expression/ |
ClangExpressionDeclMap.h | 141 bool is_lvalue);
|
Materializer.h | 89 uint32_t AddResultVariable (const TypeFromUser &type, bool is_lvalue, bool keep_in_memory, Error &err);
|
/external/mesa3d/src/glsl/ |
ir.h | 168 virtual bool is_lvalue() const function in class:ir_rvalue 1482 bool is_lvalue() const function in class:ir_swizzle [all...] |
ir_validate.cpp | 610 if (!actual_param->is_lvalue()) {
|
ast_function.cpp | 144 * is_lvalue() is insufficient because the actual parameter at the 166 } else if (!actual->is_lvalue()) { [all...] |
ir.cpp | 1263 ir_dereference::is_lvalue() const function in class:ir_dereference [all...] |
ast_to_hir.cpp | 644 * is handled by ir_dereference::is_lvalue. 707 } else if (!lhs->is_lvalue()) { [all...] |
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
ExprNodes.py | 315 def is_lvalue(self): member in class:ExprNode 319 return self.is_lvalue() and not self.type.is_memoryviewslice 1830 def is_lvalue(self): member in class:NameNode 3362 def is_lvalue(self): member in class:IndexNode 4315 def is_lvalue(self): member in class:CallNode 5490 def is_lvalue(self): member in class:AttributeNode [all...] |