HomeSort by relevance Sort by last modified time
    Searched defs:parameters (Results 251 - 275 of 1608) sorted by null

<<11121314151617181920>>

  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptGraph.java 80 * and scripts (and parameters).
201 * the script classes in the graph, and the parameters passed to the scripts.
311 * Build a {@link Script} by setting parameters it might require for execution.
314 * {@link Script.ScriptParameter parameters} in it.
375 * Configure the script with no parameters.
392 * Configure the script with parameters.
395 * {@link Script.ScriptParameter script parameters} defined.</p>
462 ParameterMap<Script<?>> parameters = (ParameterMap<Script<?>>) local
465 Script<?> script = instantiateScript(scriptClass, inputInfo, parameters);
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
ChatActivity.java 291 List<Message> parameters = Arrays.asList(params); local
292 if (parameters.isEmpty()) {
295 for (Message message : parameters) {
299 return parameters.get(parameters.size() - 1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c 456 PyObject* parameters = NULL; local
635 parameters = PyIter_Next(parameters_iter);
636 if (!parameters) {
642 pysqlite_statement_bind_parameters(self->statement, parameters, allow_8bit_chars);
660 rc = pysqlite_statement_recompile(self->statement, parameters);
754 Py_XDECREF(parameters);
767 Py_XDECREF(parameters);
    [all...]
  /external/ImageMagick/MagickCore/
utility.c 748 parameters;
786 parameters=ParseCommandOption(MagickCommandOptions,MagickFalse,option);
787 if (parameters > 0)
790 Do not expand command option parameters.
792 for (j=0; j < parameters; j++)
881 parameters=ParseCommandOption(MagickCommandOptions,MagickFalse,option);
882 if (parameters > 0)
888 Do not expand command option parameters.
891 for (k=0; k < parameters; k++)
737 parameters; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
HybridNonLinearSolver.h 51 struct Parameters {
52 Parameters()
89 void resetParameters(void) { parameters = Parameters(); }
90 Parameters parameters; member in class:Eigen::HybridNonLinearSolver
129 /* check the input parameters for errors. */
134 parameters.maxfev = 100*(n+1);
135 parameters.xtol = tol;
159 /* check the input parameters for errors. *
    [all...]
LevenbergMarquardt.h 60 struct Parameters {
61 Parameters()
104 void resetParameters(void) { parameters = Parameters(); }
106 Parameters parameters; member in class:Eigen::LevenbergMarquardt
143 /* check the input parameters for errors. */
148 parameters.ftol = tol;
149 parameters.xtol = tol;
150 parameters.maxfev = 100*(n+1)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
MediaTypeTest.java 114 private static final ImmutableListMultimap<String, String> PARAMETERS =
118 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters()); method
120 MediaType.parse("application/atom+xml; charset=utf-8").parameters()); method
121 assertEquals(PARAMETERS,
122 MediaType.parse("application/atom+xml; a=1; a=2; b=3").parameters());
134 MediaType.parse("text/plain").withParameters(PARAMETERS));
136 MediaType.parse("text/plain; a=1; a=2; b=3").withParameters(PARAMETERS));
141 ImmutableListMultimap<String, String> parameters = local
144 mediaType.withParameters(parameters);
  /external/guice/extensions/mini/src/com/google/inject/mini/
MiniGuice.java 66 * <li>Injection of {@code @Provides} method parameters.
70 * <li>Binding annotations on injected parameters and fields.
153 Object[] parameters = keysToValues(parameterKeys);
155 return method.invoke(instance, parameters);
283 Object[] parameters = new Object[parameterKeys.length]; local
285 parameters[i] = bindings.get(parameterKeys[i]).get();
287 return parameters;
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 241 CtClass[] parameters; local
243 parameters = Descriptor.getParameterTypes(method.getDescriptor(), clazz.getClassPool());
248 for (int i = 0; i < parameters.length; i++) {
249 Type type = zeroExtend(Type.get(parameters[i]));
  /external/pdfium/xfa/fxfa/fm2js/
xfa_simpleexpression.cpp 518 uint32_t parameters = 0x00; local
526 parameters = somMethodWithObjPara.m_dParameters;
534 return parameters;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothLeAdvertisingSetFacade.java 235 AdvertisingSetParameters parameters = null; local
237 parameters = buildParameters(parametersJson);
264 parameters, data, scanResponse, periodicParameters, periodicData, callback);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 76 * Invokes the call that belongs to this object with the given parameters. Wraps the response
79 * @param parameters
80 * {@code JSONArray} containing the parameters
84 public Object invoke(RpcReceiverManager manager, final JSONArray parameters) throws Throwable {
90 if (parameters.length() > args.length) {
91 throw new RpcError("Too many parameters specified.");
96 if (i < parameters.length()) {
97 args[i] = convertParameter(parameters, i, parameterType);
109 * Invokes the call that belongs to this object with the given parameters. Wraps the response
112 * @param parameters {@code Bundle} containing the parameter
415 ParameterDescriptor[] parameters = new ParameterDescriptor[parametersAnnotations.length]; local
    [all...]
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_call.c 131 userptr_t parameters = real_to_user ( ix86->segs.es, ix86->regs.di ); local
326 copy_from_user ( &pxenv_any, parameters, 0, param_len );
343 copy_to_user ( parameters, 0, &pxenv_any, param_len );
  /external/testng/src/main/java/org/testng/internal/
ClassHelper.java 70 public static <T> T newInstance(Constructor<T> constructor, Object... parameters) {
72 return constructor.newInstance(parameters);
320 Object[] parameters = Parameters.createInstantiationParameters(constructor, local
321 "@Parameters",
326 result = objectFactory.newInstance(constructor, parameters);
338 Object[] parameters = new Object[0]; local
364 parameters = new Object[] { enclosingClassInstance };
373 parameters = new Object[] { "Default test name" };
377 result = objectFactory.newInstance(ct, parameters);
438 String[] parameters = annotation.getValue(); local
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
FailedReporter.java 203 Map<String, String> parameters = Maps.newHashMap(); local
205 parameters.putAll(c.getLocalParameters());
222 xmlClass.setParameters(parameters);
  /external/testng/src/main/java/org/testng/reporters/jq/
Model.java 140 Object[] parameters = tr.getParameters(); local
141 if (parameters.length > 0) {
144 for (int i = 0; i < parameters.length; i++) {
146 p.append(Utils.toString(parameters[i]));
  /external/v8/src/runtime/
runtime-scopes.cc 409 T parameters, int argument_count) {
434 // Loop over the actual parameters backwards.
439 arguments->set(index, parameters[index]);
459 arguments->set(index, parameters[index]);
488 elements->set(i, parameters[i]);
508 explicit ParameterArguments(Object** parameters) : parameters_(parameters) {}
587 Object** parameters = reinterpret_cast<Object**>(args[1]); local
589 ParameterArguments argument_getter(parameters);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
ViewServer.java 229 String parameters; local
234 parameters = "";
237 parameters = request.substring(index + 1);
253 command, parameters);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 78 ArrayList<ModelClass> parameters = new ArrayList<ModelClass>(1); local
79 parameters.add(parameter);
80 return (AnnotationClass) method.getReturnType(parameters);
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCameraAgentImpl.java 27 import android.hardware.Camera.Parameters;
229 private Parameters mParameters;
241 * Access parameters from the cache. If cache is empty, block by
242 * retrieving parameters directly from Camera, but if cache is present,
245 public synchronized Parameters getBlocking() {
249 Log.e(TAG, "Camera object returned null parameters!");
527 Parameters parameters = mParameterCache.getBlocking(); local
528 parameters.setRotation(
530 mCamera.setParameters(parameters);
536 Parameters parameters = mParameterCache.getBlocking(); local
564 Parameters parameters = mParameterCache.getBlocking(); local
573 Parameters parameters = mParameterCache.getBlocking(); local
582 Parameters parameters = mParameterCache.getBlocking(); local
1036 Parameters parameters = getParameters(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactoryTest.java 60 String[] parameters = { local
70 for (int i = 0; i < parameters.length; i++) {
71 String algorithm = parameters[i];
  /libcore/ojluni/src/main/java/java/util/logging/
LogRecord.java 57 * <li> Because objects in the parameters array may not be serializable,
58 * during serialization all objects in the parameters array are
140 private transient Object parameters[]; field in class:LogRecord
381 * Get the parameters to the log message.
383 * @return the log message parameters. May be null if
384 * there are no parameters.
387 return parameters;
391 * Set the parameters to the log message.
393 * @param parameters the log message parameters. (may be null
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 77 FilterDrawRepresentation parameters = (FilterDrawRepresentation) representation; local
78 mParameters = parameters;
  /system/tpm/trunks/
resource_manager_test.cc 80 const std::string& parameters) {
84 parameters.size() + (authorization.empty() ? 0 : 4);
94 return buffer + authorization + parameters;
101 const std::string& parameters) {
105 parameters.size() + (authorization.empty() ? 0 : 4);
113 Serialize_UINT32(parameters.size(), &buffer);
115 return buffer + parameters + authorization;
300 std::string parameters; local
301 Serialize_TPM_HANDLE(virtual_handle, &parameters);
303 kNoAuthorization, parameters);
364 std::string parameters = "12345"; local
390 std::string parameters = "12345"; local
482 std::string parameters; local
    [all...]
  /prebuilts/tools/common/intellij-core/171.2455.10/
picocontainer.jar 

Completed in 1131 milliseconds

<<11121314151617181920>>