Home
last modified time | relevance | path

Searched refs:evaluated (Results 1 – 25 of 206) sorted by relevance

123456789

/external/proguard/src/proguard/classfile/attribute/visitor/
DStackSizeComputer.java51 private boolean[] evaluated = new boolean[ClassConstants.TYPICAL_CODE_LENGTH]; field in StackSizeComputer
66 return evaluated[instructionOffset]; in isReachable()
76 if (!evaluated[instructionOffset]) in getStackSize()
138 if (evaluated.length < codeLength) in visitCodeAttribute0()
140 evaluated = new boolean[codeLength]; in visitCodeAttribute0()
145 Arrays.fill(evaluated, 0, codeLength, false); in visitCodeAttribute0()
289 if (evaluated[instructionOffset]) in evaluateInstructionBlock()
309 while (!evaluated[instructionOffset]) in evaluateInstructionBlock()
312 evaluated[instructionOffset] = true; in evaluateInstructionBlock()
368 if (evaluated[instructionOffset]) in evaluateInstructionBlock()
/external/tensorflow/tensorflow/core/common_runtime/
Dshape_refiner.cc407 int dst_idx, bool* evaluated, in EvaluateConstantTensorForEdge() argument
409 *evaluated = false; in EvaluateConstantTensorForEdge()
418 *evaluated = true; in EvaluateConstantTensorForEdge()
458 *evaluated = true; in EvaluateConstantTensorForEdge()
732 bool evaluated = false; in ConstantPartialShape() local
734 &evaluated, &scalar)); in ConstantPartialShape()
735 if (evaluated) { in ConstantPartialShape()
775 bool evaluated = false; in ConstantPartialShape() local
777 EvaluateConstantTensorForEdge(node, dst_idx, &evaluated, &t)); in ConstantPartialShape()
779 evaluated ? &t : nullptr, src_shape, result)); in ConstantPartialShape()
[all …]
/external/eigen/doc/
DHiPerformance.dox34 negation and conjugation. Transpose and Block expressions are not evaluated and they only modify th…
35 and shape. All other expressions are immediately evaluated.
61 Otherwise the product m2 * m3 is evaluated into a temporary.</td>
71 Without this optimization, the matrix product would be evaluated into a
94 and so the matrix product will be immediately evaluated.</td>
106 m2*m3 will be evaluated anyway. However, note how this expression can be rewritten
DTopicLazyEvaluation.dox21evaluated as late as possible, instead of immediately. However, most other expression-templates-ba…
55 the product <tt>matrix3 * matrix4</tt> gets evaluated immediately into a temporary matrix. Indeed, …
57 …that the total cost of an operation is reduced if a sub-expression gets evaluated into a temporary…
/external/llvm/test/Transforms/IndVarSimplify/
Dconst_phi.ll20 ; %phi0.pre and %phi1.pre are evaluated by SCEV to constant 0.
26 ; %phi0 and %phi1 are evaluated by SCEV to constant 0.
/external/llvm/test/MC/ARM/
Derror-location.s19 @ CHECK: <unknown>:0: error: expression could not be evaluated
26 @ CHECK: <unknown>:0: error: symbol 'undef' could not be evaluated in a subtraction expression
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/xml/
DHasXPath.java61 return evaluated(item, mismatch) in matchesSafely()
74 private Condition<Object> evaluated(Node item, Description mismatch) { in evaluated() method in HasXPath
/external/selinux/secilc/docs/
Dcil_conditional_statements.md86 …L statements that will be instantiated when the <code>boolean</code> is evaluated as <code>true</c…
90 …L statements that will be instantiated when the <code>boolean</code> is evaluated as <code>false</…
198 …L statements that will be instantiated when the <code>tunable</code> is evaluated as <code>true</c…
202 …L statements that will be instantiated when the <code>tunable</code> is evaluated as <code>false</…
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java1089 int evaluated = 0; // bit flags representing already evaluated styles in parse() local
1114 evaluated |= (Style.LOCALIZED_GMT.flag | Style.LOCALIZED_GMT_SHORT.flag); in parse()
1135 evaluated |= Style.LOCALIZED_GMT_SHORT.flag; in parse()
1150 evaluated |= Style.LOCALIZED_GMT.flag; in parse()
1305 evaluated |= style.flag; in parse()
1329 ((evaluated & ISO_Z_STYLE_FLAG) == 0 || (evaluated & ISO_LOCAL_STYLE_FLAG) == 0)) { in parse()
1356 (evaluated & Style.LOCALIZED_GMT.flag) == 0) { in parse()
1378 (evaluated & Style.LOCALIZED_GMT_SHORT.flag) == 0) { in parse()
1433 … if (parseTZDBAbbrev && parsedPos < maxPos && (evaluated & Style.SPECIFIC_SHORT.flag) == 0) { in parse()
1466 if (parsedPos < maxPos && (evaluated & Style.ZONE_ID.flag) == 0) { in parse()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DTimeZoneFormat.java1028 int evaluated = 0; // bit flags representing already evaluated styles in parse() local
1053 evaluated |= (Style.LOCALIZED_GMT.flag | Style.LOCALIZED_GMT_SHORT.flag); in parse()
1074 evaluated |= Style.LOCALIZED_GMT_SHORT.flag; in parse()
1089 evaluated |= Style.LOCALIZED_GMT.flag; in parse()
1244 evaluated |= style.flag; in parse()
1268 ((evaluated & ISO_Z_STYLE_FLAG) == 0 || (evaluated & ISO_LOCAL_STYLE_FLAG) == 0)) { in parse()
1295 (evaluated & Style.LOCALIZED_GMT.flag) == 0) { in parse()
1317 (evaluated & Style.LOCALIZED_GMT_SHORT.flag) == 0) { in parse()
1372 … if (parseTZDBAbbrev && parsedPos < maxPos && (evaluated & Style.SPECIFIC_SHORT.flag) == 0) { in parse()
1405 if (parsedPos < maxPos && (evaluated & Style.ZONE_ID.flag) == 0) { in parse()
[all …]
/external/llvm/test/MC/ELF/
Dsubtraction-error.s8 ; CHECK: symbol 'a' could not be evaluated in a subtraction expression
/external/python/cpython2/Doc/reference/
Dexpressions.rst198 comma-separated list of expressions is supplied, its elements are evaluated from
257 Variables used in the generator expression are evaluated lazily when the
260 evaluated, so that an error produced by it can be seen before any other possible
262 :keyword:`for` clauses cannot be evaluated immediately since they may depend on
289 If a comma-separated sequence of key/datum pairs is given, they are evaluated
326 list of expressions is supplied, its elements are evaluated from left to right
707 evaluated before the call is attempted. Please refer to section :ref:`function`
864 are evaluated from right to left (this does not constrain the evaluation order
1088 ``x < y and y <= z``, except that ``y`` is evaluated only once (but in both
1089 cases ``z`` is not evaluated at all when ``x < y`` is found to be false).
[all …]
/external/llvm/test/Transforms/Reassociate/
Dabsorption.ll4 ; evaluated as the absorbing value.
/external/icu/icu4c/source/i18n/
Dtzfmt.cpp831 int32_t evaluated = 0; // bit flags representing already evaluated styles in parse() local
856evaluated |= STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALIZED_GMT] | STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALI… in parse()
880 evaluated |= STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALIZED_GMT_SHORT]; in parse()
897 evaluated |= STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALIZED_GMT]; in parse()
1093 evaluated |= STYLE_PARSE_FLAGS[style]; in parse()
1119 ((evaluated & ISO_Z_STYLE_FLAG) == 0 || (evaluated & ISO_LOCAL_STYLE_FLAG) == 0)) { in parse()
1145 (evaluated & STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALIZED_GMT]) == 0) { in parse()
1167 (evaluated & STYLE_PARSE_FLAGS[UTZFMT_STYLE_LOCALIZED_GMT_SHORT]) == 0) { in parse()
1223 …if (parseTZDBAbbrev && parsedPos < maxPos && (evaluated & STYLE_PARSE_FLAGS[UTZFMT_STYLE_SPECIFIC_… in parse()
1274 if (parsedPos < maxPos && (evaluated & STYLE_PARSE_FLAGS[UTZFMT_STYLE_ZONE_ID]) == 0) { in parse()
[all …]
/external/python/cpython3/Doc/reference/
Dsimple_stmts.rst161 reference is evaluated. It should yield an object with assignable attributes;
191 evaluated. It should yield either a mutable sequence object (such as a list)
193 evaluated.
222 evaluated. It should yield a mutable sequence object (such as a list). The
224 and upper bound expressions are evaluated, insofar they are present; defaults
293 the result to the original target. The target is only evaluated once.
297 version, ``x`` is only evaluated once. Also, when possible, the actual operation
335 the annotations are evaluated and stored in a special class or module
338 evaluated annotations. This attribute is writable and is automatically
342 For expressions as assignment targets, the annotations are evaluated if
[all …]
/external/clang/test/SemaObjCXX/
Darc-ppe.mm16 …nst type 'id'}} expected-warning {{expression with side effects will be evaluated despite being us…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-assamese/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-bengali/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-devanagari/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-gurmukhi/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-kannada/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-malayalam/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-oriya/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-sinhala/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…
/external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-tamil/utrrs/
DREADME2 …ccording to typographical rules applicable to a natural language can be evaluated by one with no k…

123456789