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

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
SimpleEstimationProblem.java 26 * <p>This class <em>only</em> handles parameters and measurements
27 * storage and unbound parameters filtering. It does not compute
30 * various parameters in order to compute the partial derivatives
36 * various parameters and their current estimate.</p>
47 /** Estimated parameters. */
48 private final List<EstimatedParameter> parameters; field in class:SimpleEstimationProblem
54 * Build an empty instance without parameters nor measurements.
57 parameters = new ArrayList<EstimatedParameter>();
62 * Get all the parameters of the problem.
63 * @return parameters
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AlgorithmIdentifier.java 16 private ASN1Encodable parameters; field in class:AlgorithmIdentifier
48 ASN1Encodable parameters)
51 this.parameters = parameters;
67 parameters = seq.getObjectAt(1);
71 parameters = null;
82 return parameters;
90 * parameters ANY DEFINED BY algorithm OPTIONAL }
99 if (parameters != null)
101 v.add(parameters);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
ParametersWithIV.java 9 private CipherParameters parameters; field in class:ParametersWithIV
12 CipherParameters parameters,
15 this(parameters, iv, 0, iv.length);
19 CipherParameters parameters,
25 this.parameters = parameters;
37 return parameters;
  /external/jcommander/src/test/java/com/beust/jcommander/args/
Args1.java 31 public List<String> parameters = Lists.newArrayList(); field in class:Args1
  /external/libchrome/sandbox/win/src/
policy_engine_params.h 15 // the input parameters. In order to better make sense of this header is
20 // Models the set of interesting parameters of an intercepted system call
32 // You could say that the following parameters are of interest to policy:
42 // and the actual code will use this for defining the parameters:
177 ParameterSet parameters[1]; member in struct:sandbox::CountedParameterSetBase
180 // This template defines the actual list of policy parameters for a given
189 return parameters[n];
197 ParameterSet parameters[T::PolParamLast]; member in struct:sandbox::CountedParameterSet
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
CallbacksTest.java 28 final List<Integer> parameters = new ArrayList<Integer>(); local
32 parameters.add(i1);
35 assertEquals(Arrays.asList(1), parameters);
43 final List<Integer> parameters = new ArrayList<Integer>(); local
48 parameters.add(i1);
49 parameters.add(i2);
50 parameters.add(i3);
51 parameters.add(i4);
52 parameters.add(i5);
53 parameters.add(i6)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
AbstractStaticReplyCommandHandler.java 100 Object[] parameters = (messageParameter == null) ? null : new Object[] { messageParameter }; local
101 sendReply(session, replyCode, replyMessageKey, replyText, parameters);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AbstractStubCommandHandler.java 98 Object[] parameters = (messageParameter == null) ? null : new Object[] { messageParameter }; local
99 sendReply(session, replyCode, replyMessageKey, replyText, parameters);
  /external/proguard/src/proguard/classfile/attribute/
MethodParametersAttribute.java 27 * This Attribute represents a method parameters attribute.
34 public ParameterInfo[] parameters; field in class:MethodParametersAttribute
50 ParameterInfo[] parameters)
55 this.parameters = parameters;
68 * Applies the given visitor to all parameters.
72 // Loop over all parameters.
77 parameterInfoVisitor.visitParameterInfo(clazz, method, index, parameters[index]);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableMethodProtoReference.java 45 @Nonnull protected final ImmutableList<String> parameters; field in class:ImmutableMethodProtoReference
48 public ImmutableMethodProtoReference(@Nullable Iterable<? extends CharSequence> parameters,
50 this.parameters = CharSequenceConverter.immutableStringList(parameters);
65 return parameters;
ImmutableMethodReference.java 46 @Nonnull protected final ImmutableList<String> parameters; field in class:ImmutableMethodReference
51 @Nullable Iterable<? extends CharSequence> parameters,
55 this.parameters = CharSequenceConverter.immutableStringList(parameters);
61 @Nullable ImmutableList<String> parameters,
65 this.parameters = ImmutableUtils.nullToEmptyList(parameters);
83 @Nonnull @Override public ImmutableList<String> getParameterTypes() { return parameters; }
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
SmalideaMethod.java 74 PsiParameter[] parameters = psiMethod.getParameterList().getParameters(); local
76 return Lists.transform(Arrays.asList(parameters), new Function<PsiParameter, MethodParameter>() {
198 PsiParameter[] parameters = psiMethod.getParameterList().getParameters();
200 return Lists.transform(Arrays.asList(parameters), new Function<PsiParameter, CharSequence>() {
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Macro.h 34 typedef std::vector<std::string> Parameters;
45 Parameters parameters; member in struct:pp::Macro
  /external/testng/src/main/java/org/testng/
ConversionUtils.java 16 * Turns the output of a JUnit 4 @Parameters style data provider into
22 Object[] parameters = (Object[]) o; local
29 if (c.getParameterTypes().length == parameters.length) {
38 result.add(ctor.newInstance(parameters));
  /external/testng/src/main/java/org/testng/internal/
ParameterHolder.java 6 * A simple holder for parameters that contains the parameters and where these came from
13 * Origin of the parameters.
21 public Iterator<Object[]> parameters; field in class:ParameterHolder
24 public ParameterHolder(Iterator<Object[]> parameters, ParameterOrigin origin, DataProviderHolder dph) {
26 this.parameters = parameters;
  /external/testng/src/test/java/test/hook/
HookSuccessTest.java 24 Object[] parameters = callBack.getParameters(); local
25 if (parameters.length > 0) {
26 m_parameter = parameters[0].toString();
  /external/testng/src/test/java/test/mannotation/
MTest1.java 17 import org.testng.annotations.Parameters;
21 alwaysRun = true, parameters = {"param1", "param2"},
29 alwaysRun = true, parameters = {"param5", "param6"},
37 alwaysRun = true, parameters = {"param3", "param4"},
54 @Configuration(parameters = {"oparam1", "oparam2"},
64 @Factory(parameters = {"pf1", "pf2"})
67 @Parameters({"pp1", "pp2", "pp3"})
68 public void parameters() {} method in class:MTest1
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyRequest.java 27 * Hold important data necessary to build the camera1 parameters up from a capture request.
36 /** <em>Mutable</em> camera parameters */
37 public final Camera.Parameters parameters; field in class:LegacyRequest
40 * Create a new legacy request; the parameters are copied.
45 * @param parameters the initial camera1 parameter state; (copied) can be mutated
48 Size previewSize, Camera.Parameters parameters) {
52 checkNotNull(parameters, "parameters must not be null")
    [all...]
  /frameworks/ml/bordeaux/learning/multiclass_pa/native/
multiclass_pa.h 38 // Initialize all parameters to 0.0.
50 const std::vector<float>& parameters) const;
52 const std::vector<float>& parameters) const;
60 // parameters using passive-aggressive.
86 inline std::vector<std::vector<float> >& parameters() { function in class:learningfw::MulticlassPA
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
CertPathTrustManagerParametersTest.java 41 CertPathParameters parameters = new MyCertPathParameters(); local
43 new CertPathTrustManagerParameters(parameters);
44 assertNotSame("Parameters were cloned incorrectly",
45 parameters, p.getParameters());
63 CertPathParameters parameters = new MyCertPathParameters(); local
65 parameters);
67 fail("incorrect parameters");
69 assertNotSame("Parameters were cloned incorrectly",
70 parameters, p.getParameters());
  /libcore/ojluni/src/main/java/java/util/logging/
Formatter.java 103 * <li>If there are no parameters, no formatter is used.
126 Object parameters[] = record.getParameters(); local
127 if (parameters == null || parameters.length == 0) {
128 // No parameters. Just return format string.
135 // 1 of the first 4 parameters
138 return java.text.MessageFormat.format(format, parameters);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
SimpleImageFilter.java 30 FilterBasicRepresentation parameters = (FilterBasicRepresentation) representation; local
31 mParameters = parameters;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
names.h 64 char ** parameters ; /**< The parameter names (an array of strings). */ member in struct:cloognames
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
names.h 64 char ** parameters ; /**< The parameter names (an array of strings). */ member in struct:cloognames
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_shape.h 92 /** \brief A union containing parameters for shaped windows. */
101 /** \brief The mode of these window-shape parameters. */
103 /** \brief Window-shape parameters. */
104 SDL_WindowShapeParams parameters; member in struct:SDL_WindowShapeMode
108 * \brief Set the shape and parameters of a shaped window.
110 * \param window The shaped window whose parameters should be set.
112 * \param shape_mode The parameters to set for the shaped window.
123 * \brief Get the shape parameters of a shaped window.
125 * \param window The shaped window whose parameters should be retrieved.

Completed in 1024 milliseconds

1 23 4 5 6 7 8 91011>>