Searched refs:parameters (Results 51 - 75 of 1022) sorted by relevance

1234567891011>>

/external/testng/src/test/java/test/hook/
H A DConfigurableListener.java16 Object[] parameters = callBack.getParameters();
17 if (parameters.length > 0) {
18 m_methodName = ((Method) parameters[0]).getName();
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DGaussianDerivativeFunction.java57 * Constructs an instance with the specified parameters.
75 * Constructs an instance with the specified parameters.
77 * @param parameters <tt>b</tt>, <tt>c</tt>, and <tt>d</tt> parameter values
79 * @throws IllegalArgumentException if <code>parameters</code> is null,
80 * <code>parameters</code> length is not 3, or if
81 * <code>parameters[2]</code> is 0
83 public GaussianDerivativeFunction(double[] parameters) { argument
84 if (parameters == null) {
87 if (parameters.length != 3) {
88 throw new DimensionMismatchException(3, parameters
[all...]
H A DGaussianFunction.java68 * Constructs an instance with the specified parameters.
88 * Constructs an instance with the specified parameters.
90 * @param parameters <tt>a</tt>, <tt>b</tt>, <tt>c</tt>, and <tt>d</tt>
93 * @throws IllegalArgumentException if <code>parameters</code> is null,
94 * <code>parameters</code> length is not 4, or if
95 * <code>parameters[3]</code> is 0
97 public GaussianFunction(double[] parameters) { argument
98 if (parameters == null) {
101 if (parameters.length != 4) {
102 throw new DimensionMismatchException(4, parameters
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAlgorithmIdentifier.java16 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);
46 AlgorithmIdentifier( ASN1ObjectIdentifier algorithm, ASN1Encodable parameters) argument
[all...]
/external/spirv-llvm/lib/SPIRV/Mangler/
H A DFunctionDescriptor.cpp29 size_t paramCount = parameters.size();
32 stream << parameters[i]->toString() << ", ";
33 stream << parameters[paramCount-1]->toString();
64 return equal(parameters, that.parameters);
71 size_t len = parameters.size(), thatLen = that.parameters.size();
74 TypeVector::const_iterator it = parameters.begin(),
75 e = parameters.end(), thatit = that.parameters
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dbackground_noise.cc47 // Do not update the background noise parameters if we know that the signal
58 ChannelParameters& parameters = channel_parameters_[channel_ix]; local
69 sample_energy < parameters.energy_update_threshold) ||
76 if (sample_energy < parameters.energy_update_threshold) {
78 parameters.energy_update_threshold = std::max(sample_energy, 1);
79 parameters.low_energy_update_threshold = 0;
110 // Spectrum is flat enough; save filter parameters.
195 ChannelParameters& parameters = channel_parameters_[channel];
197 (kThresholdIncrement * parameters.low_energy_update_threshold) >> 16;
199 (parameters
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/
H A DCameraConfigurationManager.java31 * A class which deals with reading, parsing, and setting the camera parameters which are used to
52 Camera.Parameters parameters = camera.getParameters();
67 cameraResolution = findBestPreviewSizeValue(parameters, screenResolution, false);
72 Camera.Parameters parameters = camera.getParameters();
74 if (parameters == null) {
75 Log.w(TAG, "Device error: no camera parameters are available. Proceeding without configuration.");
81 initializeTorch(parameters, prefs);
82 String focusMode = findSettableValue(parameters.getSupportedFocusModes(),
86 parameters.setFocusMode(focusMode);
89 parameters
114 initializeTorch(Camera.Parameters parameters, SharedPreferences prefs) argument
119 doSetTorch(Camera.Parameters parameters, boolean newSetting) argument
134 findBestPreviewSizeValue(Camera.Parameters parameters, Point screenResolution, boolean portrait) argument
[all...]
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsMainParameter1.java35 public List<HostPort> parameters = Lists.newArrayList(); field in class:ArgsMainParameter1
38 return parameters;
/external/testng/src/test/java/test/sample/
H A DScope.java12 @Test(groups = { "outer-group" }, parameters = { "parameter" })
18 @Test(groups = { "inner-group" }, parameters = { "parameter" })
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/stub/command/
H A DPortCommandHandler.java36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
74 * Parse a 32-bit IP address from the String[] of FTP command parameters.
76 * @param parameters - the String[] of command parameters. It is the concatenation
80 * representation). Thus, the six parameters for the port command would be:
85 * @return the InetAddres representing the host parsed from the parameters
87 * @throws AssertFailedException - if parameters is null or contains an insufficient number of elements
88 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
91 static InetAddress parseHost(String[] parameters) throws UnknownHostException { argument
92 verifySufficientParameters(parameters);
122 parsePortNumber(String[] parameters) argument
137 verifySufficientParameters(String[] parameters) argument
[all...]
/external/autotest/frontend/client/src/autotest/common/table/
H A DSimpleFilter.java8 * A simple filter that adds parameters from a string map.
11 private JSONObject parameters = new JSONObject(); field in class:SimpleFilter
14 parameters.put(key, value);
26 updateObject(parameters, params);
31 updateObject(params, parameters);
45 parameters = new JSONObject();
/external/bison/build-aux/snippet/
H A Dc++defs.h89 consisting of return type, parameters, and attributes.
101 consisting of return type, parameters, and attributes.
109 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
115 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
116 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
118 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
121 rettype (*const func) parameters = ::rpl_func; \
125 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
129 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
130 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
/external/bison/darwin-lib/
H A Dc++defs.h73 consisting of return type, parameters, and attributes.
85 consisting of return type, parameters, and attributes.
93 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
99 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
100 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
102 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
105 rettype (*const func) parameters = ::rpl_func; \
109 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
113 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
114 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
/external/bison/linux-lib/
H A Dc++defs.h73 consisting of return type, parameters, and attributes.
85 consisting of return type, parameters, and attributes.
93 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
99 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
100 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
102 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
105 rettype (*const func) parameters = ::rpl_func; \
109 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
113 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
114 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DParametersHeader.java43 * Parameters header. Suitable for extension by headers that have parameters.
54 protected NameValueList parameters; field in class:ParametersHeader
59 this.parameters = new NameValueList();
65 this.parameters = new NameValueList();
71 this.parameters = new NameValueList(sync);
84 return this.parameters.getParameter(name);
95 return this.parameters.getValue(name);
99 * Returns an Iterator over the names (Strings) of all parameters present
106 return parameters.getNames();
111 *@return true if the parameters lis
316 setParameters(NameValueList parameters) argument
[all...]
H A DContact.java84 NameValue nv = parameters.getNameValue(name);
91 this.parameters.set(nv);
117 if (!parameters.isEmpty()) {
119 parameters.encode(buffer);
148 /** get the parameters List
152 return parameters;
168 this.parameters.set(EXPIRES, deltaSeconds);
217 this.parameters.set(Q, Float.valueOf(qValue));
248 if (parameters != null)
249 parameters
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
73 * @param parameters - the String[] of command parameters. It is the concatenation
77 * representation). Thus, the six parameters for the port command would be:
81 * @return the HostAndPort object with the host InetAddres and int port parsed from the parameters
83 * - if parameters is null or contains an insufficient number of elements
84 * @throws NumberFormatException - if one of the parameters does not contain a parsable integer
86 public static HostAndPort parseHostAndPort(String[] parameters) { argument
87 verifySufficientParameters(parameters);
89 byte host1 = parseByte(parameters[
140 verifySufficientParameters(String[] parameters) argument
[all...]

Completed in 634 milliseconds

1234567891011>>