/external/v8/gypfiles/ |
D | toolchain.gypi | 3 # modification, are permitted provided that the following conditions are 7 # notice, this list of conditions and the following disclaimer. 9 # copyright notice, this list of conditions and the following 95 'conditions': [ 138 'conditions': [ 164 'conditions': [ 169 'conditions': [ 201 'conditions': [ 204 'conditions': [ 209 'conditions': [ [all …]
|
D | features.gypi | 3 # modification, are permitted provided that the following conditions are 7 # notice, this list of conditions and the following disclaimer. 9 # copyright notice, this list of conditions and the following 76 'conditions': [ 116 ], # conditions 123 'conditions': [ 133 'conditions': [ 137 ], # conditions
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_dbtables.py | 78 tabname, [colname], conditions={colname: None}) 123 conditions={col0: lambda x: pickle.loads(x) >= 8}) 126 conditions={col0: lambda x: 168 self.tdb.Select(tabname, [], conditions={'foo': '123'}) 196 conditions={'e': re.compile('wuzzy').search, 201 self.tdb.Delete(tabname, conditions={'b': dbtables.ExactCond('good')}) 204 conditions={'e': dbtables.PrefixCond('Fuzzy')}) 209 conditions={'c': lambda c: c == 'meep'}) 247 conditions={'e': dbtables.ExactCond('E'), 297 conditions={'e': dbtables.PrefixCond('the l')}) [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | expectations_parser.py | 13 def __init__(self, reason, test, conditions, results): argument 27 assert isinstance(conditions, list) 28 self._conditions = conditions 35 self.conditions == other.conditions and 47 def conditions(self): member in Expectation 109 conditions = [c for c in raw_conditions.split()] if raw_conditions else [] 111 for c in conditions: 116 return Expectation(reason, test, conditions, [r for r in results.split()])
|
/external/tensorflow/tensorflow/lite/tools/accuracy/ |
D | BUILD | 12 "//conditions:default": [], 32 "//conditions:default": [ 61 "//conditions:default": [ 82 "//conditions:default": [ 126 "//conditions:default": [ 175 "//conditions:default": [ 206 "//conditions:default": [ 226 "//conditions:default": [ 250 "//conditions:default": [ 276 "//conditions:default": [ [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmConditionalBranchTests.cpp | 47 static const string conditions[] = { "true", "false" }; variable 59 for (int conditionIdx = 0; conditionIdx < DE_LENGTH_OF_ARRAY(conditions); ++conditionIdx) in addComputeSameLabelsTest() 63 string testName = string("same_labels_") + conditions[conditionIdx]; in addComputeSameLabelsTest() 118 specs["condition"] = conditions[conditionIdx]; in addComputeSameLabelsTest() 143 for (int conditionIdx = 0; conditionIdx < DE_LENGTH_OF_ARRAY(conditions); ++conditionIdx) in addGraphicsSameLabelsTest() 147 string testName = string("same_labels_") + conditions[conditionIdx]; in addGraphicsSameLabelsTest() 209 specs["condition"] = conditions[conditionIdx]; in addGraphicsSameLabelsTest()
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | build_config_root.bzl | 28 "//conditions:default": [], 40 "//conditions:default": [], 49 "//conditions:default": [], 57 "//conditions:default": [], 65 "//conditions:default": [], 71 "//conditions:default": extra_deps, 77 "//conditions:default": otherwise,
|
/external/libyuv/files/ |
D | libyuv_test.gyp | 51 'conditions': [ 97 ], # conditions 117 'conditions': [ 123 ], # conditions 135 'conditions': [ 141 ], # conditions 156 'conditions': [ 162 ], # conditions 177 'conditions': [
|
D | libyuv.gyp | 32 'conditions': [ 56 'conditions': [ 73 'conditions': [ 99 'conditions': [ 119 ], #conditions 138 'conditions': [ 149 ], #conditions
|
/external/ipsec-tools/src/racoon/ |
D | NOTICE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in the 34 modification, are permitted provided that the following conditions 37 notice, this list of conditions and the following disclaimer. 39 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in the 92 modification, are permitted provided that the following conditions [all …]
|
/external/webrtc/webrtc/common_audio/ |
D | common_audio.gyp | 124 'conditions': [ 131 'conditions': [ 152 'conditions': [ 161 ], # conditions 181 'conditions': [ 189 ], # conditions 194 'conditions': [ 204 'conditions': [ 272 'conditions': [ 284 'conditions': [ [all …]
|
/external/ipsec-tools/ |
D | NOTICE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in the 34 modification, are permitted provided that the following conditions 37 notice, this list of conditions and the following disclaimer. 39 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in the 92 modification, are permitted provided that the following conditions [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XChoiceFormat.java | 71 private Condition[] conditions; field in XChoiceFormat 85 conditions = new Condition[items.length]; in applyPattern() 95 conditions[i] = Condition.valueOf(tag.toUpperCase(Locale.ENGLISH)); in applyPattern() 102 if (conditions[i - 1] != Condition.N) { in applyPattern() 108 for (int i = 0; i < conditions.length; ++i) { in format() 109 if (conditions[i].matches(num)) { in format()
|
/external/googletest/ |
D | BUILD.bazel | 6 # modification, are permitted provided that the following conditions are 10 # notice, this list of conditions and the following disclaimer. 12 # copyright notice, this list of conditions and the following disclaimer 80 "//conditions:default": ["-pthread"], 84 "//conditions:default": [], 94 "//conditions:default": ["-pthread"], 105 "//conditions:default": [], 109 "//conditions:default": [], 119 "//conditions:default": [], 140 "//conditions:default": [],
|
/external/tensorflow/tensorflow/python/framework/ |
D | smart_cond_test.py | 107 conditions = [(True, lambda: constant_op.constant(1)), 109 y = smart_cond.smart_case(conditions, default=raise_exception, 111 z = smart_cond.smart_case(conditions, default=raise_exception, 120 conditions = [(False, raise_exception)] 121 y = smart_cond.smart_case(conditions, 124 z = smart_cond.smart_case(conditions, 135 conditions = [(x > 1, lambda: constant_op.constant(1)), 139 z = smart_cond.smart_case(conditions, default=raise_exception)
|
/external/tensorflow/tensorflow/lite/tools/accuracy/ilsvrc/ |
D | BUILD | 12 "//conditions:default": [], 35 "//conditions:default": [ 71 "//conditions:default": [ 92 "//conditions:default": [ 115 "//conditions:default": [ 146 "//conditions:default": [ 174 "//conditions:default": [
|
/external/newfs_msdos/ |
D | LICENSE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in 35 modification, are permitted provided that the following conditions 38 notice, this list of conditions and the following disclaimer. 40 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in
|
D | NOTICE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in 35 modification, are permitted provided that the following conditions 38 notice, this list of conditions and the following disclaimer. 40 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in
|
/external/v8/src/compiler/ |
D | branch-elimination.cc | 109 ControlPathConditions conditions = node_conditions_.Get(control); in ReduceDeoptimizeConditional() local 112 if (conditions.LookupCondition(condition, &branch, &condition_value)) { in ReduceDeoptimizeConditional() 137 return UpdateConditions(node, conditions, condition, node, condition_is_true); in ReduceDeoptimizeConditional() 177 ControlPathConditions conditions = node_conditions_.Get(*input_it); in ReduceMerge() local 186 conditions.ResetToCommonAncestor(node_conditions_.Get(*input_it)); in ReduceMerge() 188 return UpdateConditions(node, conditions); in ReduceMerge() 212 Node* node, ControlPathConditions conditions) { in UpdateConditions() argument 215 if (reduced_.Set(node, true) | node_conditions_.Set(node, conditions)) { in UpdateConditions()
|
/external/tensorflow/tensorflow/contrib/ |
D | BUILD | 120 "//conditions:default": [ 129 "//conditions:default": [ 137 "//conditions:default": [ 148 "//conditions:default": [ 158 "//conditions:default": [ 187 "//conditions:default": [ 196 "//conditions:default": [ 228 "//conditions:default": [ 237 "//conditions:default": [ 248 "//conditions:default": [
|
/external/tinycompress/ |
D | NOTICE | 10 modification, are permitted provided that the following conditions are met: 13 this list of conditions and the following disclaimer. 15 this list of conditions and the following disclaimer in the documentation 40 under the terms and conditions of the GNU Lesser General Public License, 64 modification, are permitted provided that the following conditions are met: 67 this list of conditions and the following disclaimer. 69 this list of conditions and the following disclaimer in the documentation 93 under the terms and conditions of the GNU Lesser General Public License, 117 modification, are permitted provided that the following conditions are met: 120 this list of conditions and the following disclaimer. [all …]
|
/external/antlr/runtime/CSharp2/ |
D | LICENSE.TXT | 6 modification, are permitted provided that the following conditions 9 notice, this list of conditions and the following disclaimer. 11 notice, this list of conditions and the following disclaimer in 18 under the terms and conditions of this license, without any 19 additional terms or conditions.
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/ |
D | template_12-1.in | 35 "pre-conditions"); 54 "pre-conditions"); 60 "pre-conditions"); 68 "pre-conditions"); 74 "pre-conditions");
|
/external/fsck_msdos/ |
D | NOTICE | 6 * modification, are permitted provided that the following conditions 9 * notice, this list of conditions and the following disclaimer. 11 * notice, this list of conditions and the following disclaimer in the 40 * modification, are permitted provided that the following conditions 43 * notice, this list of conditions and the following disclaimer. 45 * notice, this list of conditions and the following disclaimer in the 74 * modification, are permitted provided that the following conditions 77 * notice, this list of conditions and the following disclaimer. 79 * notice, this list of conditions and the following disclaimer in the
|
/external/antlr/runtime/Delphi/ |
D | LICENSE.TXT | 7 modification, are permitted provided that the following conditions 10 notice, this list of conditions and the following disclaimer. 12 notice, this list of conditions and the following disclaimer in 19 under the terms and conditions of this license, without any 20 additional terms or conditions.
|