Home
last modified time | relevance | path

Searched +full:no +full:- +full:return +full:- +full:assign (Results 1 – 25 of 1088) sorted by relevance

12345678910>>...44

/third_party/typescript_eslint/packages/eslint-plugin/src/configs/
Deslint-recommended.ts3 * - disables rules from eslint:recommended which are already handled by TypeScript.
4 * - enables rules that make sense due to TS's typechecking / transpilation.
11 'constructor-super': 'off', // ts(2335) & ts(2377)
12 'getter-return': 'off', // ts(2378)
13 'no-const-assign': 'off', // ts(2588)
14 'no-dupe-args': 'off', // ts(2300)
15 'no-dupe-class-members': 'off', // ts(2393) & ts(2300)
16 'no-dupe-keys': 'off', // ts(1117)
17 'no-func-assign': 'off', // ts(2539)
18 'no-import-assign': 'off', // ts(2539) & ts(2540)
[all …]
/third_party/ejdb/src/bindings/ejdb2_node/
D.eslintrc15 "no-const-assign": "error",
16 "no-undef": "off",
17 "no-unreachable": "warn",
18 "no-unused-vars": "warn",
19 "no-redeclare": "error",
20 "no-octal": "error",
21 "no-self-assign": "error",
22 "no-unused-labels": "warn",
23 "no-useless-return": "warn",
24 "constructor-super": "warn",
[all …]
/third_party/boost/libs/concept_check/doc/reference/
DOutputIterator.xml2 <concept name="OutputIterator" category="Iterator"><!--
4 Copyright (c) 1996-1999
8 Hewlett-Packard Company
9 --><!--
10 Copyright 2000-2001 University of Notre Dame du Lac.
11 Copyright 2001-2002 Indiana University.
14 Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
15 -->
16 <param name="Iter" role="iterator-type"/>
17 <param name="ValueType" role="value-type"/>
[all …]
DSignedInteger.xml2 <concept name="SignedInteger" category="Utility"><!--
4 Copyright (c) 1996-1999
8 Hewlett-Packard Company
9 --><!--
10 Copyright 2000-2001 University of Notre Dame du Lac.
11 Copyright 2001-2002 Indiana University.
14 Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
15 -->
16 <param name="T" role="integral-type"/>
18 <models-sentence>Integer type <arg num="1"/> must be a model of <self/>.</models-sentence>
[all …]
/third_party/node/deps/npm/node_modules/object-assign/
Dindex.js2 object-assign
8 /* eslint-disable no-unused-vars */
15 throw new TypeError('Object.assign cannot be called with null or undefined');
18 return Object(val);
23 if (!Object.assign) {
24 return false;
30 var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
33 return false;
42 return test2[n];
45 return false;
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dlower_if_to_cond_assign.cpp17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * This flattens if-statements to conditional assignments if:
29 * - the GPU has limited or no flow control support
32 * - small conditional branches are more expensive than conditional assignments
40 * Drivers for GPUs with no control flow support should simply call
44 * to attempt to flatten all if-statements.
51 * to attempt to flatten any if-statements appearing at depth > N.
68 this->found_unsupported_op = false; in ir_if_to_cond_assign_visitor()
69 this->found_expensive_op = false; in ir_if_to_cond_assign_visitor()
70 this->found_dynamic_arrayref = false; in ir_if_to_cond_assign_visitor()
[all …]
/third_party/typescript/tests/baselines/reference/
DcheckExportsObjectAssignProperty.errors.txt1 …mance/jsdoc/validator.ts(17,4): error TS2540: Cannot assign to 'readonlyProp' because it is a read
2 …nce/jsdoc/validator.ts(18,4): error TS2540: Cannot assign to 'readonlyAccessor' because it is a re…
6 …mance/jsdoc/validator.ts(37,4): error TS2540: Cannot assign to 'readonlyProp' because it is a read
7 …nce/jsdoc/validator.ts(38,4): error TS2540: Cannot assign to 'readonlyAccessor' because it is a re…
32 !!! error TS2540: Cannot assign to 'readonlyProp' because it is a read-only property.
35 !!! error TS2540: Cannot assign to 'readonlyAccessor' because it is a read-only property.
36 m1.thing = "no";
39 m1.rwAccessors = "no";
62 !!! error TS2540: Cannot assign to 'readonlyProp' because it is a read-only property.
65 !!! error TS2540: Cannot assign to 'readonlyAccessor' because it is a read-only property.
[all …]
DcheckExportsObjectAssignPrototypeProperty.errors.txt1 …mance/jsdoc/validator.ts(19,4): error TS2540: Cannot assign to 'readonlyProp' because it is a read
2 …nce/jsdoc/validator.ts(20,4): error TS2540: Cannot assign to 'readonlyAccessor' because it is a re…
29 !!! error TS2540: Cannot assign to 'readonlyProp' because it is a read-only property.
32 !!! error TS2540: Cannot assign to 'readonlyAccessor' because it is a read-only property.
33 m1.thing = "no";
36 m1.rwAccessors = "no";
53 return "Person called " + this.name;
57 …Object.defineProperty(Person.prototype, "rwAccessors", { get() { return 98122 }, set(_) { /*ignore…
58 Object.defineProperty(Person.prototype, "readonlyAccessor", { get() { return 21.75 } });
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DFunctionsGL.cpp3 // Use of this source code is governed by a BSD-style license that can be
28 // <version number><space><vendor-specific information> in GetGLVersion()
33 *outVersion = gl::Version(version[0] - '0', version[2] - '0'); in GetGLVersion()
38 // "OpenGL ES N.M vendor-specific information" in GetGLVersion()
40 *outVersion = gl::Version(version[10] - '0', version[12] - '0'); in GetGLVersion()
59 return result; in GetIndexedExtensions()
65 return GL_FRAMEBUFFER_COMPLETE; in DummyCheckFramebufferStatus()
96 #define ASSIGN(NAME, FP) *reinterpret_cast<void **>(&FP) = loadProcAddress(NAME) macro
105 ASSIGN("glGetString", getString); in initialize()
106 ASSIGN("glGetIntegerv", getIntegerv); in initialize()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DFunctionsGL.cpp3 // Use of this source code is governed by a BSD-style license that can be
28 // <version number><space><vendor-specific information> in GetGLVersion()
33 *outVersion = gl::Version(version[0] - '0', version[2] - '0'); in GetGLVersion()
38 // "OpenGL ES N.M vendor-specific information" in GetGLVersion()
40 *outVersion = gl::Version(version[10] - '0', version[12] - '0'); in GetGLVersion()
59 return result; in GetIndexedExtensions()
65 return GL_FRAMEBUFFER_COMPLETE; in StubCheckFramebufferStatus()
96 #define ASSIGN(NAME, FP) FP = reinterpret_cast<decltype(FP)>(loadProcAddress(NAME)) macro
105 ASSIGN("glGetString", getString); in initialize()
106 ASSIGN("glGetIntegerv", getIntegerv); in initialize()
[all …]
/third_party/boost/boost/numeric/ublas/
Dvector.hpp2 // Copyright (c) 2000-2010
41 …* For a \f$n\f$-dimensional vector \f$v\f$ and \f$0\leq i < n\f$ every element \f$v_i\f$ is mapped
42 …* to the \f$i\f$-th element of the container. A storage type \c A can be specified which defaults …
109 /// \param init value to assign to each element of the vector
115 /// \brief Copy-constructor of a vector
122 /// \brief Copy-constructor of a vector from a vector_expression
134 // -----------------------
136 // -----------------------
138 /// \brief Return the maximum size of the data container.
139 …/// Return the upper bound (maximum size) on the data container. Depending on the container, it ca…
[all …]
/third_party/boost/boost/optional/detail/
Dold_optional_implementation.hpp2 // Copyright (C) 2014-2016 Andrzej Krzemienski.
37 static T&& move(T&& r) { return r; } in move()
39 static rval_reference_type move(reference_type r) { return boost::move(r); } in move()
57 static reference_type move(reference_type r) { return r; } in move()
118 // No-throw
124 // No-throw
139 // move-construct an optional<T> initialized from an rvalue-ref to 'val'.
192 // This is used for both converting and in-place constructions.
206 // No-throw (assuming T::~T() doesn't)
209 // Assigns from another optional<T> (deep-copies the rhs value)
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Drbbirpt.txt10 # Copyright (C) 2002-2016, International Business Machines Corporation and others.
35 # input-char n next-state ^push-state action
36 # input-char n next-state ^push-state action
38 # | | | | |--- action to be performed by st…
41 # | | | |--- Push this named state onto the state stack.
45 # | | |--- Transition to this state if the current input character matches t…
49 # | |--- When making the state transition specified on this line, advance to t…
52 # |--- Character or named character classes to test for. If the current character being scan…
65 … escaped term ^break-rule-end doExprStart
67 '^' n start-after-caret ^break-rule-end doNoChain
[all …]
/third_party/icu/icu4c/source/common/
Drbbirpt.txt10 # Copyright (C) 2002-2016, International Business Machines Corporation and others.
35 # input-char n next-state ^push-state action
36 # input-char n next-state ^push-state action
38 # | | | | |--- action to be performed by st…
41 # | | | |--- Push this named state onto the state stack.
45 # | | |--- Transition to this state if the current input character matches t…
49 # | |--- When making the state transition specified on this line, advance to t…
52 # |--- Character or named character classes to test for. If the current character being scan…
65 … escaped term ^break-rule-end doExprStart
67 '^' n start-after-caret ^break-rule-end doNoChain
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Drbbirpt.txt10 # Copyright (C) 2002-2016, International Business Machines Corporation and others.
35 # input-char n next-state ^push-state action
36 # input-char n next-state ^push-state action
38 # | | | | |--- action to be performed by st…
41 # | | | |--- Push this named state onto the state stack.
45 # | | |--- Transition to this state if the current input character matches t…
49 # | |--- When making the state transition specified on this line, advance to t…
52 # |--- Character or named character classes to test for. If the current character being scan…
65 … escaped term ^break-rule-end doExprStart
67 '^' n start-after-caret ^break-rule-end doNoChain
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
DDisjointRangeMap.java8 * http://www.apache.org/licenses/LICENSE-2.0
51 * is unassigned in this column). Note that unlike table operations, it makes no sense to allow
57 return map.getOrDefault(checkedValue, RangeTree.empty()); in getRanges()
62 return assignedRanges; in getAssignedRanges()
82 "Assigning a null value (unassignment) with mode other than ALWAYS makes no sense: %s", in checkAssign()
90 return checkedValue; in checkAssign()
95 * {@code assign()} with a non-null value it is true that:
98 * <li>No ranges assigned to any other category value will intersect with the given ranges.
102 * @param value the category value to assign ranges to, or {@code null} to unassign.
103 * @param ranges the ranges to assign to the category value with ID {@code id}.
[all …]
DChange.java8 * http://www.apache.org/licenses/LICENSE-2.0
51 public Builder assign(Assignment<?> assignment) { in assign() method in Change.Builder
54 return this; in assign()
57 /** Assigns the non-null value in the given column for the ranges of this builder. */
58 public Builder assign(Column<?> column, Object value) { in assign() method in Change.Builder
59 return assign(Assignment.of(column, value)); in assign()
64 return assign(Assignment.unassign(column)); in unassign()
69 return Change.of(ranges, assignments.values()); in build()
74 return new Builder(ranges); in builder()
77 /** Returns the empty change which has no effect when applied to any table. */
[all …]
DRangeTable.java8 * http://www.apache.org/licenses/LICENSE-2.0
62 * but is expressed as a mapping of {@code (Column, Value) -> RangeTree} (since {@code RangeTree}
84 * assign or unassign values to ranges, or query for the ranges which have that assignment.
88 * have rows in a table for which no value is assigned in any column. Unassigned ranges can be
92 * This is useful since it allows a {@link Change} to affect no columns, but still have an effect
93 * on the final table. It's also useful when applying rules to infer values and fill-in column
100 /** Only assign ranges that were previously unassigned. */
102 /** Only assign ranges that were either unassigned or had the same value. */
104 /** Always assign ranges (and unassign them from any other values in the same category). */
112 // The map of per-column ranges.
[all …]
/third_party/boost/boost/optional/
Doptional.hpp2 // Copyright (C) 2014 - 2018 Andrzej Krzemienski.
85 // a tag for in-place initialization of contained value
93 // a tag for conditional in-place initialization of contained value
139 // No-throw
145 // No-throw
160 // move-construct an optional<T> initialized from an rvalue-ref to 'val'.
226 // This is used for both converting and in-place constructions.
241 this->assign(rhs); in operator =()
242 return *this; in operator =()
249 this->assign(static_cast<optional_base&&>(rhs)); in operator =()
[all …]
/third_party/python/Lib/lib2to3/fixes/
Dfix_except.py5 - "except E, T:" where T is a name:
9 - "except E, T:" where T is not a name, tuple or list:
17 - "except E, T:" where T is a tuple or list literal:
28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
69 #TODO(cwinter) suite-cleanup
78 assign = Assign(target, Attr(new_N, Name('args')))
80 assign = Assign(target, new_N)
85 e_suite.insert_child(i, assign)
87 # No space after a comma is legal; no space after "as",
93 return pytree.Node(node.type, children)
/third_party/boost/libs/bimap/example/bimap_and_boost/
Dassign.cpp3 // Copyright (c) 2006-2007 Matias Capeletto
12 // But the wording of the warning is misleading and unsettling, there are no
19 //-----------------------------------------------------------------------------
25 #include <boost/assign/list_of.hpp>
26 #include <boost/assign/list_inserter.hpp>
42 // We can use assign::list_of to initialize the container. in main()
44 bm_type bm = assign::list_of< bm_type::relation > /*< in main()
47 requirement of `assign::list_of` >*/ in main()
54 assign::insert( bm.left ) in main()
62 assign::push_back( bm.right ) in main()
[all …]
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/
Dupdatestate_eliminate.cc8 * http://www.apache.org/licenses/LICENSE-2.0
46 auto fg = node->func_graph(); in GetManager()
48 return nullptr; in GetManager()
50 return fg->manager(); in GetManager()
53 // Return true if the node(be_used_node) is only used by the given node.
57 return false; in OnlyUsedByOneNode()
59 auto &node_users = mgr->node_users(); in OnlyUsedByOneNode()
62 return false; in OnlyUsedByOneNode()
64 auto &partial_users = iter->second; in OnlyUsedByOneNode()
65 return (partial_users.size() == 1) && (partial_users.front().first == given_node); in OnlyUsedByOneNode()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumrange_fluent.cpp36 return copy; in numberFormatterBoth()
45 return move; in numberFormatterBoth()
54 return copy; in numberFormatterBoth()
63 return move; in numberFormatterBoth()
72 return copy; in numberFormatterFirst()
81 return move; in numberFormatterFirst()
90 return copy; in numberFormatterFirst()
99 return move; in numberFormatterFirst()
108 return copy; in numberFormatterSecond()
117 return move; in numberFormatterSecond()
[all …]
/third_party/icu/icu4c/source/i18n/
Dnumrange_fluent.cpp36 return copy; in numberFormatterBoth()
45 return move; in numberFormatterBoth()
54 return copy; in numberFormatterBoth()
63 return move; in numberFormatterBoth()
72 return copy; in numberFormatterFirst()
81 return move; in numberFormatterFirst()
90 return copy; in numberFormatterFirst()
99 return move; in numberFormatterFirst()
108 return copy; in numberFormatterSecond()
117 return move; in numberFormatterSecond()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dnumrange_fluent.cpp36 return copy; in numberFormatterBoth()
45 return move; in numberFormatterBoth()
54 return copy; in numberFormatterBoth()
63 return move; in numberFormatterBoth()
72 return copy; in numberFormatterFirst()
81 return move; in numberFormatterFirst()
90 return copy; in numberFormatterFirst()
99 return move; in numberFormatterFirst()
108 return copy; in numberFormatterSecond()
117 return move; in numberFormatterSecond()
[all …]

12345678910>>...44