Searched refs:expressions (Results 1 – 25 of 443) sorted by relevance
12345678910>>...18
... eclipse/core/ org/eclipse/core/expressions/ org/eclipse/core/expressions/ElementHandler ...
3 // Obj-C string literal expressions13 // @selector expressions26 // @protocol expressions39 // @encode expressions50 // @() boxing expressions.
4 /** \page TopicWritingEfficientProductExpression Writing efficient matrix product expressions7 simply write your expressions in the most high level way. This is especially true9 take some care when writing your expressions in order to minimize useless evaluations12 and evaluate complex product expressions, and discuss the current limitations.13 In particular we will focus on expressions matching level 2 and 3 BLAS routines, i.e,18 …tural API. Each of these routines can compute in a single evaluation a wide variety of expressions.21 you to write faster code by making your expressions more Eigen friendly.33 More precisely each side is simplified by iteratively removing trivial expressions such as scalar m…34 negation and conjugation. Transpose and Block expressions are not evaluated and they only modify th…35 and shape. All other expressions are immediately evaluated.[all …]
17 …atrixBase: The common base class for all dense matrix expressions (as opposed to array expressions…18 … ArrayBase: The common base class for all dense array expressions (as opposed to matrix expression…23 …s of the most generic object present in %Eigen. It could be any matrix expressions, any dense or s…131 \b Note: Functions taking \e const references to Matrix (or Array) can process expressions at the c…171 The implementation above does now not only work with temporary expressions but it also allows to us…186 … %Eigen supports automatic resizing but it is not possible to do so on expressions. Why should res…205 …expressions and for parameters being matrices and having the wrong size. Resizing the expressions …
79 Arrays also support expressions of the form <tt>array + scalar</tt> which add a scalar to each coef…130 \section TutorialArrayClassConvert Converting between array and matrix expressions139 \link MatrixBase Matrix expressions \endlink have an \link MatrixBase::array() .array() \endlink me…140 'converts' them into \link ArrayBase array expressions\endlink, so that coefficient-wise operations141 can be applied easily. Conversely, \link ArrayBase array expressions \endlink158 because Eigen allows assigning array expressions to matrix variables).
19 import org.eclipse.core.expressions.EvaluationResult;20 import org.eclipse.core.expressions.Expression;21 import org.eclipse.core.expressions.ExpressionInfo;22 import org.eclipse.core.expressions.IEvaluationContext;
6 ; This testcase is for testing expressions constructed from11 ;; Test constant cast expressions33 ;; Test constant getelementpr expressions for arrays50 ;; TODO: Test constant getelementpr expressions for structures79 ;; TODO: Test constant expressions for unary and binary operators
5 ; This testcase is for testing expressions constructed from10 ;; Test constant cast expressions31 ;; Test constant getelementpr expressions for arrays48 ;; TODO: Test constant getelementpr expressions for structures77 ;; TODO: Test constant expressions for unary and binary operators
4 ; CHECK-LABEL: Classifying expressions for: @infer.sext.024 ; CHECK-LABEL: Classifying expressions for: @infer.zext.044 ; CHECK-LABEL: Classifying expressions for: @infer.sext.164 ; CHECK-LABEL: Classifying expressions for: @infer.sext.284 ; CHECK-LABEL: Classifying expressions for: @infer.zext.1
4 ; CHECK-LABEL: Classifying expressions for: @bad.nsw5 ; CHECK-LABEL: Classifying expressions for: @bad.nsw
4 ; CHECK-LABEL: Classifying expressions for: @x23 ; CHECK-LABEL: Classifying expressions for: @y
4 ; CHECK-LABEL: Classifying expressions for: @f26 ; CHECK-LABEL: Classifying expressions for: @g
25 + Constant, uniform and dynamic switch expressions27 + Complex constant expressions as case labels35 - Non-integer switch expressions
10 scalar literal expressions; *Collection Literals* provide a short-hand82 parenthesized expression. Parenthesized expressions are supported using92 ``(BOOL)0`` respectively. To support ``@YES`` and ``@NO`` expressions,110 Objective-C++ also supports ``@true`` and ``@false`` expressions, which116 Objective-C provides a new syntax for boxing C expressions:215 As with all C pointers, character pointer expressions can involve219 ``NULL`` character pointers used in boxed expressions.237 sub-expressions of an array literal can be any Objective-C object251 sub-expressions of a dictionary literal must be Objective-C object252 pointer typed, as in array literals. Key sub-expressions must be of an[all …]
48 ; simplifications on sizeof, alignof, and offsetof expressions. The181 ; SCEV: Classifying expressions for: @goo8184 ; SCEV: Classifying expressions for: @goo1187 ; SCEV: Classifying expressions for: @foo8190 ; SCEV: Classifying expressions for: @foo1193 ; SCEV: Classifying expressions for: @hoo8195 ; SCEV: Classifying expressions for: @hoo1313 ; SCEV: Classifying expressions for: @fa316 ; SCEV: Classifying expressions for: @fb319 ; SCEV: Classifying expressions for: @fc[all …]
12 // GCC allows pointer expressions in integer constant expressions.
83 .. _TableGen expressions:85 TableGen values and expressions229 colon character ("``:``"). If `value definitions`_ or `let expressions`_ are266 .. _let expressions:267 .. _"let" expressions within a record:269 'let' expressions274 derived class or definition wants to override. Let expressions consist of the316 The more esoteric forms of `TableGen expressions`_ are useful in conjunction523 'let' expressions526 "Let" expressions at file scope are similar to `"let" expressions within a[all …]
38 // boxed expressions.49 #error "boxed expressions not supported"
25 Package syntax parses regular expressions into parse trees and compiles26 parse trees into programs. Most clients of regular expressions will use the
1 * Summary: regular expressions handling2 * Description: basic API for libxml regular expressions handling used19 * thank the POSIX regex expressions.116 * expressions are used within a context149 * 2 core expressions shared by all for the empty language set
4 ; Test if SLP can handle GEP expressions.25 ; Test that we don't vectorize GEP expressions if indexes are not constants.
22 parse the Kaleidoscope language (the latter for binary expressions and33 Kaleidoscope, we have expressions, a prototype, and a function object.34 We'll start with expressions first:93 expressions. One thing that is nice about our AST is that it captures132 With this scaffolding, we can now talk about parsing expressions and295 We call this class of expressions "primary" expressions, for reasons320 Now that basic expressions are handled, we need to handle binary321 expressions. They are a bit more complex.326 Binary expressions are significantly harder to parse because they are375 expressions. The basic idea of operator precedence parsing is to break[all …]
22 (values of variables and expressions) is encapsulated by the state31 individual expressions. The analysis of an expression can cause the94 If you are interested in bringing up support for C++ expressions, the96 handles the simulation of individual expressions. There are plenty of97 examples there of how other expressions are handled.
4 The perltest.pl script tests Perl's regular expressions; it has the same38 malformed regular expressions, in order to check that PCRE diagnoses them
149 private JavaExpression concatenate(List<JavaExpression> expressions) { in concatenate() argument153 for (JavaExpression expression : expressions) { in concatenate()