Home
last modified time | relevance | path

Searched full:reflected (Results 1 – 25 of 1018) sorted by relevance

12345678910>>...41

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
DNelderMead.java107 final RealPointValuePair reflected = new RealPointValuePair(xR, evaluate(xR), false); in iterateSimplex() local
109 if ((comparator.compare(best, reflected) <= 0) && in iterateSimplex()
110 (comparator.compare(reflected, secondBest) < 0)) { in iterateSimplex()
112 // accept the reflected point in iterateSimplex()
113 replaceWorstPoint(reflected, comparator); in iterateSimplex()
115 } else if (comparator.compare(reflected, best) < 0) { in iterateSimplex()
124 if (comparator.compare(expanded, reflected) < 0) { in iterateSimplex()
128 // accept the reflected point in iterateSimplex()
129 replaceWorstPoint(reflected, comparator); in iterateSimplex()
134 if (comparator.compare(reflected, worst) < 0) { in iterateSimplex()
[all …]
DMultiDirectional.java74 final RealPointValuePair reflected = evaluateNewSimplex(original, 1.0, comparator); in iterateSimplex() local
75 if (comparator.compare(reflected, best) < 0) { in iterateSimplex()
80 if (comparator.compare(reflected, expanded) <= 0) { in iterateSimplex()
81 // accept the reflected simplex in iterateSimplex()
/external/python/httplib2/tests/
Dtest_http.py100 reflected = tests.HttpRequest.from_bytes(content)
101 assert reflected.uri == "/?a=%D0%82"
110 reflected = tests.HttpRequest.from_bytes(content)
111 assert reflected.method == "GET"
122 reflected = tests.HttpRequest.from_bytes(content)
123 assert reflected.method == method
152 reflected = tests.HttpRequest.from_bytes(content)
153 assert reflected.headers.get("user-agent", "").startswith("Python-httplib2/")
162 reflected = tests.HttpRequest.from_bytes(content)
163 assert reflected.headers.get("user-agent") == "fred/1.0"
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math3/optim/nonlinear/scalar/noderiv/
DNelderMeadSimplex.java215 final PointValuePair reflected in iterate() local
218 if (comparator.compare(best, reflected) <= 0 && in iterate()
219 comparator.compare(reflected, secondBest) < 0) { in iterate()
220 // Accept the reflected point. in iterate()
221 replaceWorstPoint(reflected, comparator); in iterate()
222 } else if (comparator.compare(reflected, best) < 0) { in iterate()
231 if (comparator.compare(expanded, reflected) < 0) { in iterate()
235 // Accept the reflected point. in iterate()
236 replaceWorstPoint(reflected, comparator); in iterate()
239 if (comparator.compare(reflected, worst) < 0) { in iterate()
[all …]
DMultiDirectionalSimplex.java160 final PointValuePair reflected = evaluateNewSimplex(evaluationFunction, in iterate() local
162 if (comparator.compare(reflected, best) < 0) { in iterate()
167 if (comparator.compare(reflected, expanded) <= 0) { in iterate()
168 // Keep the reflected simplex. in iterate()
/external/apache-commons-math/src/main/java/org/apache/commons/math3/optimization/direct/
DNelderMeadSimplex.java218 final PointValuePair reflected in iterate() local
221 if (comparator.compare(best, reflected) <= 0 && in iterate()
222 comparator.compare(reflected, secondBest) < 0) { in iterate()
223 // Accept the reflected point. in iterate()
224 replaceWorstPoint(reflected, comparator); in iterate()
225 } else if (comparator.compare(reflected, best) < 0) { in iterate()
234 if (comparator.compare(expanded, reflected) < 0) { in iterate()
238 // Accept the reflected point. in iterate()
239 replaceWorstPoint(reflected, comparator); in iterate()
242 if (comparator.compare(reflected, worst) < 0) { in iterate()
[all …]
DMultiDirectionalSimplex.java163 final PointValuePair reflected = evaluateNewSimplex(evaluationFunction, in iterate() local
165 if (comparator.compare(reflected, best) < 0) { in iterate()
170 if (comparator.compare(reflected, expanded) <= 0) { in iterate()
171 // Keep the reflected simplex. in iterate()
/external/skia/include/codec/
DSkEncodedOrigin.h16 kTopRight_SkEncodedOrigin = 2, // Reflected across y-axis
18 kBottomLeft_SkEncodedOrigin = 4, // Reflected across x-axis
19 kLeftTop_SkEncodedOrigin = 5, // Reflected across x-axis, Rotated 90 CCW
21 kRightBottom_SkEncodedOrigin = 7, // Reflected across x-axis, Rotated 90 CW
/external/guava/android/guava/src/com/google/common/collect/
DSortedMultiset.java30 * natural order or an explicit {@link Comparator}. This order is reflected when iterating over the
111 * Returns a descending view of this multiset. Modifications made to either map will be reflected
119 * multiset, so changes to one will be reflected in the other. The returned multiset supports all
130 * reflected in the other. The returned multiset supports all operations that this multiset
148 * multiset, so changes to one will be reflected in the other. The returned multiset supports all
/external/guava/guava/src/com/google/common/collect/
DSortedMultiset.java30 * natural order or an explicit {@link Comparator}. This order is reflected when iterating over the
111 * Returns a descending view of this multiset. Modifications made to either map will be reflected
119 * multiset, so changes to one will be reflected in the other. The returned multiset supports all
130 * reflected in the other. The returned multiset supports all operations that this multiset
148 * multiset, so changes to one will be reflected in the other. The returned multiset supports all
/external/python/cpython2/Lib/test/
Dtest_winreg.py26 # registry reflection and formerly reflected keys are shared instead.
35 # On OS'es that support reflection we should test with a reflected key
387 # HKLM\Software is redirected but not reflected in all OSes
396 # area. Because we are doing this in a key which gets reflected,
412 # The key is not reflected until created_key is closed.
425 # Set a new value, which will get reflected to 32-bit
439 # Make use of a key which gets redirected and reflected
446 # HKCU\Software\Classes is reflected by default
452 # The key is now closed and would normally be reflected to the
/external/python/cpython3/Lib/test/
Dtest_winreg.py26 # registry reflection and formerly reflected keys are shared instead.
35 # On OS'es that support reflection we should test with a reflected key
424 # HKLM\Software is redirected but not reflected in all OSes
433 # area. Because we are doing this in a key which gets reflected,
449 # The key is not reflected until created_key is closed.
462 # Set a new value, which will get reflected to 32-bit
476 # Make use of a key which gets redirected and reflected
483 # HKCU\Software\Classes is reflected by default
489 # The key is now closed and would normally be reflected to the
/external/sdv/vsomeip/third_party/boost/spirit/doc/lex/
Dlexer_semantic_actions.qbk126 sequence. Any modifications to this iterator value will be reflected in
130 sequence. Any modifications to this iterator value will be reflected in
141 to this value will be reflected in the generated token.]]
144 modifications to this value will be reflected in the generated token.]]
147 to this value will be reflected in the lexer itself (the next match will
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DItemsOrBuilder.java30 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
42 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
54 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
DItems.java80 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
95 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
118 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
585 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
599 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
621 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
643 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
664 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
681 …g regexp: [a-zA-Z0-9-_]+, and be less than 128 bytes in length. This is reflected as part of a URL…
/external/rust/crates/tokio/src/net/unix/
Dsocketaddr.rs10 /// Documentation reflected in [`SocketAddr`]
19 /// Documentation reflected in [`SocketAddr`]
/external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1/src/main/java/com/google/cloud/aiplatform/v1/
DIndexOrBuilder.java410 * not already reflected in the Index. Result of any successfully completed
411 * Operation on the Index is reflected in it.
430 * not already reflected in the Index. Result of any successfully completed
431 * Operation on the Index is reflected in it.
450 * not already reflected in the Index. Result of any successfully completed
451 * Operation on the Index is reflected in it.
/external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/
DIndexOrBuilder.java411 * results are not already reflected in the Index. Result of any successfully
412 * completed Operation on the Index is reflected in it.
431 * results are not already reflected in the Index. Result of any successfully
432 * completed Operation on the Index is reflected in it.
451 * results are not already reflected in the Index. Result of any successfully
452 * completed Operation on the Index is reflected in it.
/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1p4beta1/src/main/java/com/google/cloud/vision/v1p4beta1/
DProductSearchResultsOrBuilder.java32 * not reflected in the current results.
46 * not reflected in the current results.
60 * not reflected in the current results.
/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1p3beta1/src/main/java/com/google/cloud/vision/v1p3beta1/
DProductSearchResultsOrBuilder.java32 * not reflected in the current results.
46 * not reflected in the current results.
60 * not reflected in the current results.
/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1/src/main/java/com/google/cloud/vision/v1/
DProductSearchResultsOrBuilder.java32 * not reflected in the current results.
46 * not reflected in the current results.
60 * not reflected in the current results.
/external/mockito/src/test/java/org/mockitousage/bugs/
DMockitoStubbedCallInAnswerTest.java40 //we expect it to be reflected: in stubbing_the_right_mock()
95 //we expect it to be reflected: in overriding_stubbing()
/external/protobuf/php/src/Google/Protobuf/
DApi.php57 * The major version is also reflected in the package name of the
112 * The major version is also reflected in the package name of the
224 * The major version is also reflected in the package name of the
251 * The major version is also reflected in the package name of the
/external/cronet/third_party/protobuf/php/src/Google/Protobuf/
DApi.php57 * The major version is also reflected in the package name of the
112 * The major version is also reflected in the package name of the
224 * The major version is also reflected in the package name of the
251 * The major version is also reflected in the package name of the
/external/skia/tests/
DBackendSurfaceMutableStateTest.cpp67 // Verify that setting that state via a copy of a backendTexture is reflected in all the in DEF_GANESH_TEST_FOR_VULKAN_CONTEXT()
103 // Verify that modifying the layout via the GrVkTexture is reflected in the GrBackendTexture in DEF_GANESH_TEST_FOR_VULKAN_CONTEXT()
120 // Verify that modifying the layout via the GrBackendTexutre is reflected in the GrVkTexture in DEF_GANESH_TEST_FOR_VULKAN_CONTEXT()

12345678910>>...41