Searched defs:target (Results 426 - 450 of 2230) sorted by relevance

<<11121314151617181920>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DDifferentiableMultivariateVectorialOptimizer.java97 * &sum;weight<sub>i</sub>(objective<sub>i</sub>-target<sub>i</sub>)<sup>2</sup>
100 * @param target target value for the objective functions at optimum
110 double[] target, double[] weights,
109 optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint) argument
/external/apache-http/src/org/apache/http/impl/conn/
H A DProxySelectorRoutePlanner.java123 public HttpRoute determineRoute(HttpHost target, argument
133 // If we have a forced route, we can do without a target.
140 // So we need a target to compute a route.
142 if (target == null) {
155 proxy = determineProxy(target, request, context);
163 this.schemeRegistry.getScheme(target.getSchemeName());
169 route = new HttpRoute(target, local, secure);
171 route = new HttpRoute(target, local, proxy, secure);
178 * Determines a proxy for the given target.
180 * @param target th
189 determineProxy(HttpHost target, HttpRequest request, HttpContext context) argument
266 chooseProxy(List<Proxy> proxies, HttpHost target, HttpRequest request, HttpContext context) argument
[all...]
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java151 * @param target the parameters to which to copy
153 protected void copyParams(HttpParams target) { argument
161 target.setParameter((String)me.getKey(), me.getValue());
/external/clang/test/Analysis/
H A Dunions.cpp42 int *target; member in class:PR14054_original::ParseNode::__anon2174::__anon2177
/external/clang/test/CodeGenCXX/
H A Dblocks.cpp28 const loc target = { 5, 6 }; local
29 out = ^{ (void) target; };
/external/deqp/external/openglcts/modules/glesext/texture_border_clamp/
H A DesextcTextureBorderClampParameterBorderColorError.cpp175 * @param target texture target to use for the call;
180 void TextureBorderClampParameterBorderColorErrorTest::VerifyGLTexParameterf(glw::GLenum target, glw::GLenum pname, argument
187 gl.texParameterf(target, pname, param);
194 << "target:" << getTexTargetString(target) << ", pname:" << getPNameString(pname)
206 * @param target texture target to use for the call;
211 void TextureBorderClampParameterBorderColorErrorTest::VerifyGLTexParameteri(glw::GLenum target, glw::GLenum pname, argument
218 gl.texParameteri(target, pnam
[all...]
H A DesextcTextureBorderClampParameterTextureBorderColor.cpp411 * @param target texture target to do the call for;
416 glw::GLuint sampler_id, glw::GLenum target, const glw::GLfloat* expected_data)
441 << " texture target:" << getTexTargetString(target) << "\n"
456 * @param target texture target to do the call for;
461 glw::GLenum target,
486 << " texture target:" << getTexTargetString(target) << "\
415 verifyGLGetSamplerParameterfvResult( glw::GLuint sampler_id, glw::GLenum target, const glw::GLfloat* expected_data) argument
460 verifyGLGetSamplerParameterivResult(glw::GLuint sampler_id, glw::GLenum target, const glw::GLint* expected_data) argument
504 verifyGLGetSamplerParameterIivResult( glw::GLuint sampler_id, glw::GLenum target, const glw::GLint* expected_data) argument
546 verifyGLGetSamplerParameterIuivResult( glw::GLuint sampler_id, glw::GLenum target, const glw::GLuint* expected_data) argument
587 verifyGLGetTexParameterfvResult(glw::GLenum target, const glw::GLfloat* expected_data) argument
628 verifyGLGetTexParameterivResult(glw::GLenum target, const glw::GLint* expected_data) argument
670 verifyGLGetTexParameterIivResult(glw::GLenum target, const glw::GLint* expected_data) argument
712 verifyGLGetTexParameterIuivResult(glw::GLenum target, const glw::GLuint* expected_data) argument
[all...]
H A DesextcTextureBorderClampTexParameterIErrors.cpp83 * a texture target.*/
257 * @param target texture target to use for the call;
262 void TextureBorderClampTexParameterIErrorsTest::VerifyGLTexParameterIiv(glw::GLenum target, glw::GLenum pname, argument
268 gl.texParameterIiv(target, pname, &params);
276 << "target:" << getTexTargetString(target) << ", pname:" << getPNameString(pname)
286 * @param target texture target to use for the call;
293 glw::GLenum target, gl
292 VerifyGLTexParameterIivMultipleAcceptedErrors( glw::GLenum target, glw::GLenum pname, glw::GLint params, glw::GLenum expected_error1, glw::GLenum expected_error2) argument
322 VerifyGLTexParameterIuiv(glw::GLenum target, glw::GLenum pname, glw::GLuint params, glw::GLenum expected_error) argument
[all...]
/external/deqp/external/openglcts/modules/glesext/texture_buffer/
H A DesextcTextureBufferBufferParameters.cpp100 * @param target buffer target
106 glw::GLboolean TextureBufferBufferParameters::queryBufferParameteriv(glw::GLenum target, glw::GLenum pname, argument
115 gl.getBufferParameteriv(target, pname, &result);
132 * @param target buffer target
138 glw::GLboolean TextureBufferBufferParameters::queryBufferParameteri64v(glw::GLenum target, glw::GLenum pname, argument
147 gl.getBufferParameteri64v(target, pname, &result);
164 * @param target buffer target
170 queryBufferPointerv(glw::GLenum target, glw::GLenum pname, glw::GLvoid* expected_pointer) argument
[all...]
/external/deqp/framework/opengl/
H A DgluPixelTransfer.cpp68 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src) argument
80 gl.texImage2D(target, level, internalFormat, width, height, 0, format.format, format.dataType, src.getDataPtr());
87 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src) argument
100 gl.texImage3D(target, level, internalFormat, width, height, depth, 0, format.format, format.dataType, src.getDataPtr());
107 void texSubImage2D (const RenderContext& context, deUint32 target, int level, int x, int y, const tcu::ConstPixelBufferAccess& src) argument
119 gl.texSubImage2D(target, level, x, y, width, height, format.format, format.dataType, src.getDataPtr());
126 void texSubImage3D (const RenderContext& context, deUint32 target, int level, int x, int y, int z, const tcu::ConstPixelBufferAccess& src) argument
139 gl.texSubImage3D(target, level, x, y, z, width, height, depth, format.format, format.dataType, src.getDataPtr());
/external/deqp/modules/gles31/functional/
H A Des31fSampleShadingTests.cpp239 SampleShadingRenderingCase (Context& ctx, const char* name, const char* desc, RenderTarget target, int numSamples, TestType type);
262 SampleShadingRenderingCase::SampleShadingRenderingCase (Context& ctx, const char* name, const char* desc, RenderTarget target, int numSamples, TestType type) argument
263 : MultisampleShaderRenderUtil::MultisampleRenderCase (ctx, name, desc, numSamples, target, RENDER_SIZE)
472 SampleShadingRenderingCase::RenderTarget target;
490 minSamplesGroup->addChild(new SampleShadingRenderingCase(m_context, (std::string(targets[ndx].name) + "_color").c_str(), "Test multiple samples per pixel with color", targets[ndx].target, targets[ndx].numSamples, SampleShadingRenderingCase::TEST_COLOR));
491 minSamplesGroup->addChild(new SampleShadingRenderingCase(m_context, (std::string(targets[ndx].name) + "_discard").c_str(), "Test multiple samples per pixel with", targets[ndx].target, targets[ndx].numSamples, SampleShadingRenderingCase::TEST_DISCARD));
/external/emma/core/java12/com/vladium/util/
H A DFiles.java245 * Renames 'source' to 'target' [intermediate directories are created if necessary]. If
246 * 'target' exists and 'overwrite' is false, the method is a no-op. No exceptions are
253 * @param target target file descriptor [an existing target may get deleted
255 * @param overwrite if 'true', forces an existing target to be deleted
258 * @throws IllegalArgumentException if 'target' is null
260 public static boolean renameFile (final File source, final File target, final boolean overwrite) argument
264 if (target == null)
265 throw new IllegalArgumentException ("null input: target");
[all...]
H A DIntSet.java119 public void values (final int [] target, final int offset) argument
129 target [scan ++] = entry.m_key;
/external/glide/library/src/main/java/com/bumptech/glide/
H A DDrawableTypeRequest.java17 import com.bumptech.glide.request.target.Target;
95 public <Y extends Target<File>> Y downloadOnly(Y target) { argument
96 return getDownloadOnlyRequest().downloadOnly(target);
H A DGenericTranscodeRequest.java15 import com.bumptech.glide.request.target.Target;
88 public <Y extends Target<File>> Y downloadOnly(Y target) { argument
89 return getDownloadOnlyRequest().into(target);
/external/guava/guava/src/com/google/common/collect/
H A DDescendingImmutableSortedSet.java101 int indexOf(@Nullable Object target) { argument
102 int index = forward.indexOf(target);
H A DEmptyImmutableSet.java46 @Override public boolean contains(@Nullable Object target) { argument
H A DSingletonImmutableSet.java65 @Override public boolean contains(Object target) { argument
66 return element.equals(target);
/external/guava/guava/src/com/google/common/io/
H A DCharSequenceReader.java62 public synchronized int read(CharBuffer target) throws IOException { argument
63 checkNotNull(target);
68 int charsToRead = Math.min(target.remaining(), remaining());
70 target.put(seq.charAt(pos++));
/external/guava/guava/src/com/google/common/util/concurrent/
H A DSimpleTimeLimiter.java59 * this case the call may even time out before the target method is ever
63 * the target objects; for example, a {@link
77 * before the target method is ever invoked.
84 public <T> T newProxy(final T target, Class<T> interfaceType, argument
86 checkNotNull(target);
104 return method.invoke(target, args);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCollationKey.java243 * @param target target CollationKey
245 * is less than than target, if the value is zero they are equal, and
247 * than target.
252 public int compareTo(CollationKey target) argument
256 int r = target.m_key_[i]&0xff;
275 * @param target the object to compare to.
283 public boolean equals(Object target) argument
285 if (!(target instanceof CollationKey)) {
289 return equals((CollationKey)target);
304 equals(CollationKey target) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationEnglishTest.java332 private void doTest(char[] source, char[] target, int result){ argument
335 String t = new String(target);
345 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
370 logln(msg1 + source + msg2 + target + msg3 + sResult);
372 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
380 logln(msg1 + source + msg2 + target + msg3 + sResult);
382 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
395 logln(msg1 + source + msg2 + target + msg3 + sResult);
397 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
H A DCollationFinnishTest.java89 private void doTest(char[] source, char[] target, int result) { argument
91 String t = new String(target);
100 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
124 logln(msg1 + source + msg2 + target + msg3 + sResult);
126 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
134 logln(msg1 + source + msg2 + target + msg3 + sResult);
136 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
149 logln(msg1 + source + msg2 + target + msg3 + sResult);
151 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
H A DCollationFrenchTest.java200 private void doTest(char[] source, char[] target, int result) { argument
202 String t = new String(target);
211 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
235 logln(msg1 + source + msg2 + target + msg3 + sResult);
237 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
245 logln(msg1 + source + msg2 + target + msg3 + sResult);
247 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
260 logln(msg1 + source + msg2 + target + msg3 + sResult);
262 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
H A DCollationFrozenMonkeyTest.java264 void doTest(RuleBasedCollator myCollation, String mysource, String target, int result) { argument
265 int compareResult = myCollation.compare(source, target);
270 sortKey2 = myCollation.getCollationKey(target);
276 reportCResult( mysource, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, result );
279 public void reportCResult(String src, String target, CollationKey sourceKey, CollationKey targetKey, argument
300 logln(msg1 + src + msg2 + target + msg3 + sResult);
302 errln(msg1 + src + msg2 + target + msg3 + sResult + msg4 + sExpect);
309 logln(msg1 + src + msg2 + target + msg3 + sResult);
311 errln(msg1 + src + msg2 + target + msg3 + sResult + msg4 + sExpect);
321 logln(msg1 + src + msg2 + target
[all...]

Completed in 1218 milliseconds

<<11121314151617181920>>