Searched refs:parameters (Results 1 - 25 of 1186) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DParametersWithRandom.java11 private CipherParameters parameters; field in class:ParametersWithRandom
14 CipherParameters parameters,
18 this.parameters = parameters;
22 CipherParameters parameters)
24 this(parameters, new SecureRandom());
34 return parameters;
13 ParametersWithRandom( CipherParameters parameters, SecureRandom random) argument
21 ParametersWithRandom( CipherParameters parameters) argument
H A DParametersWithID.java8 private CipherParameters parameters; field in class:ParametersWithID
12 CipherParameters parameters,
15 this.parameters = parameters;
26 return parameters;
11 ParametersWithID( CipherParameters parameters, byte[] id) argument
H A DParametersWithIV.java9 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;
11 ParametersWithIV( CipherParameters parameters, byte[] iv) argument
18 ParametersWithIV( CipherParameters parameters, byte[] iv, int ivOff, int ivLen) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DParametricGaussianFunction.java33 * The parameters have the following meaning:
69 * parameters <tt>a</tt>, <tt>b</tt>, <tt>c</tt>, and <tt>d</tt>.
72 * @param parameters values of <tt>a</tt>, <tt>b</tt>, <tt>c</tt>, and
76 * parameters
78 * @throws IllegalArgumentException if <code>parameters</code> is invalid as
80 * @throws ZeroException if <code>parameters</code> values are
83 public double value(double x, double[] parameters) throws ZeroException { argument
84 validateParameters(parameters);
85 final double a = parameters[0];
86 final double b = parameters[
124 gradient(double x, double[] parameters) argument
153 validateParameters(double[] parameters) argument
[all...]
H A DParametricRealFunction.java24 * variable plus some extra parameters.
33 * @param parameters function parameters
37 double value(double x, double[] parameters) argument
41 * Compute the gradient of the function with respect to its parameters.
43 * @param parameters function parameters
47 double[] gradient(double x, double[] parameters) argument
/external/junit-params/src/main/java/junitparams/internal/parameters/
H A DParametrizationStrategy.java1 package junitparams.internal.parameters;
/external/junit-params/src/main/java/junitparams/naming/
H A DTestCaseNamingStrategy.java4 * A strategy that can resolve a test case method name by it's parameters.
7 String getTestCaseName(int parametersIndex, Object parameters); argument
/external/testng/src/main/java/org/testng/internal/
H A DParameterHolder.java6 * 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) { argument
26 this.parameters = parameters;
/external/testng/src/test/java/test/parameters/
H A DSampleTest.java1 package test.parameters;
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DCallbacksTest.java28 final List<Integer> parameters = new ArrayList<Integer>();
32 parameters.add(i1);
35 assertEquals(Arrays.asList(1), parameters);
43 final List<Integer> parameters = new ArrayList<Integer>();
48 parameters.add(i1);
49 parameters.add(i2);
50 parameters.add(i3);
51 parameters.add(i4);
52 parameters.add(i5);
53 parameters
[all...]
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/command/
H A DCommand.java23 * Represents a command received from an FTP client, containing a command name and parameters.
33 private String[] parameters; field in class:Command
36 * Construct a new immutable instance with the specified command name and parameters
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) { argument
42 Assert.notNull(parameters, "parameters");
44 this.parameters = copy(parameters);
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DTelephoneNumber.java57 protected NameValueList parameters; field in class:TelephoneNumber
61 parameters = new NameValueList();
68 parameters.delete(name);
82 return (String) parameters.getValue(POSTDIAL);
90 return (String) parameters.getValue(ISUB);
97 return parameters.getValue(POSTDIAL) != null;
100 /** return true if this header has parameters.
105 return parameters.hasNameValue(pname);
127 parameters.delete(POSTDIAL);
138 * Set the list of parameters
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_filter.c85 * Structure with parameters used for pitch-filtering.
127 * filter_param : pitch filter parameters.
135 static void FilterSegment(const double* in_data, PitchFilterParam* parameters, argument
143 /* Index of |parameters->buffer| where the output is written to. */
144 int pos = parameters->index + PITCH_BUFFSIZE;
145 /* Index of |parameters->buffer| where samples are read for fractional-lag
147 int pos_lag = pos - parameters->lag_offset;
149 for (n = 0; n < parameters->num_samples; ++n) {
152 parameters->damper_state[m] = parameters
215 Update(PitchFilterParam* parameters) argument
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java25 * Represents a command received from an FTP client, containing a command name and parameters.
34 private String[] parameters; field in class:Command
37 * Construct a new immutable instance with the specified command name and parameters
40 * @param parameters - the command parameters; may be empty; may not be null
42 public Command(String name, String[] parameters) { argument
44 Assert.notNull(parameters, "parameters");
46 this.parameters = copy(parameters);
55 Command(String name, List parameters) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/command/
H A DCommand.java25 * Represents a command received from an FTP client, containing a command name and parameters.
34 private String[] parameters; field in class:Command
37 * Construct a new immutable instance with the specified command name and parameters
40 * @param parameters - the command parameters; may be empty; may not be null
42 public Command(String name, String[] parameters) { argument
44 Assert.notNull(parameters, "parameters");
46 this.parameters = copy(parameters);
55 Command(String name, List parameters) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java41 * Parse a 32-bit IP address from the String[] of FTP command parameters.
43 * @param parameters - the String[] of command parameters. It is the concatenation
47 * representation). Thus, the six parameters for the port command would be:
51 * @return the InetAddres representing the host parsed from the parameters
53 * - if parameters is null or contains an insufficient number of elements
54 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
56 public static InetAddress parseHost(String[] parameters) { argument
57 verifySufficientParameters(parameters);
59 byte host1 = parseByte(parameters[
92 parsePortNumber(String[] parameters) argument
108 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java25 * Represents a command received from an FTP client, containing a command name and parameters.
34 private String[] parameters; field in class:Command
37 * Construct a new immutable instance with the specified command name and parameters
40 * @param parameters - the command parameters; may be empty; may not be null
42 public Command(String name, String[] parameters) { argument
44 Assert.notNull(parameters, "parameters");
46 this.parameters = copy(parameters);
55 Command(String name, List parameters) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java41 * Parse a 32-bit IP address from the String[] of FTP command parameters.
43 * @param parameters - the String[] of command parameters. It is the concatenation
47 * representation). Thus, the six parameters for the port command would be:
51 * @return the InetAddres representing the host parsed from the parameters
53 * - if parameters is null or contains an insufficient number of elements
54 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
56 public static InetAddress parseHost(String[] parameters) { argument
57 verifySufficientParameters(parameters);
59 byte host1 = parseByte(parameters[
92 parsePortNumber(String[] parameters) argument
108 verifySufficientParameters(String[] parameters) argument
[all...]

Completed in 659 milliseconds

1234567891011>>