HomeSort by relevance Sort by last modified time
    Searched full:parameters (Results 126 - 150 of 6361) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/srec/srec/cfront/
frontobj.c 58 static void setup_wave_object(front_wave *waveobj, front_parameters *parameters);
63 static void setup_freq_object(front_freq *freqobj, front_parameters *parameters, int mel_dim);
69 static void setup_cep_object(front_cep *cepobj, front_parameters *parameters,
99 void setup_config_object(front_config *config, front_parameters *parameters)
103 ASSERT(parameters);
110 setup_wave_object(config->waveobj, parameters);
111 setup_freq_object(config->freqobj, parameters, parameters->mel_dim);
112 setup_cep_object(config->cepobj, parameters, config->freqobj->nf,
113 parameters->mel_dim)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AlgorithmIdentifier.java 46 * parameters ANY DEFINED BY algorithm OPTIONAL
55 /** the value of parameters field */
56 private byte[] parameters; field in class:AlgorithmIdentifier
64 public AlgorithmIdentifier(String algorithm, byte[] parameters) {
65 this(algorithm, parameters, null);
68 private AlgorithmIdentifier(String algorithm, byte[] parameters, byte[] encoding) {
70 this.parameters = parameters;
97 * Returns the value of parameters field of the structure.
100 return parameters;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java 40 import javax.sip.header.Parameters;
43 * Parameters header. Suitable for extension by headers that have parameters.
53 implements javax.sip.header.Parameters, Serializable {
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)
    [all...]
  /dalvik/dx/src/com/android/dx/gen/
MethodId.java 32 final TypeList parameters; field in class:MethodId
38 MethodId(Type<D> declaringType, Type<R> returnType, String name, TypeList parameters) {
39 if (declaringType == null || returnType == null || name == null || parameters == null) {
45 this.parameters = parameters;
63 return parameters.asList();
75 for (Type t : parameters.types) {
91 && ((MethodId<?, ?>) o).parameters.equals(parameters)
99 result = 31 * result + parameters.hashCode()
    [all...]
  /libcore/luni/src/main/java/java/security/
AlgorithmParametersSpi.java 48 * {@code byte[]} using the default decoding format for parameters. The
52 * the encoded parameters.
64 * the encoded parameters.
80 * parameters should be converted.
85 * initialized, or if this parameters could not be converted to
92 * Returns the parameters in their default encoding format. The default
95 * @return the encoded parameters.
98 * initialized, or if this parameters could not be encoded.
103 * Returns the parameters in the specified encoding format.
107 * @return the encoded parameters
    [all...]
  /external/proguard/src/proguard/ant/
MemberSpecificationElement.java 43 private String parameters; field in class:MemberSpecificationElement
71 String parameters = memberSpecificationElement.parameters; local
88 if (parameters != null)
95 else if ((type != null) ^ (parameters != null))
97 throw new BuildException("Type and parameters attributes must always be present in combination in method specification");
102 if (parameters != null)
104 throw new BuildException("Parameters attribute not allowed in field specification ["+parameters+"]");
108 List parameterList = ListUtil.commaSeparatedList(parameters);
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
ClientParamsStack.java 44 * and the first match returned. Setting parameters via the stack is
49 * <li>Application parameters:
53 * <li>Client parameters:
58 * <li>Request parameters:
62 * <li>Override parameters:
65 * These can be used to set parameters that cannot be overridden
71 * when looking up parameters.
100 * @param aparams application parameters, or <code>null</code>
101 * @param cparams client parameters, or <code>null</code>
102 * @param rparams request parameters, or <code>null</code
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/interfaces/
ECKey.java 11 * return a parameter specification representing the EC domain parameters
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/
ECKeySpec.java 20 * return the domain parameters for the curve
  /external/mesa3d/src/glsl/builtins/ir/
modf 3 (parameters
13 (parameters
23 (parameters
33 (parameters
pow 3 (parameters
9 (parameters
21 (parameters
34 (parameters
sin 3 (parameters
11 (parameters
22 (parameters
34 (parameters
tanh 3 (parameters
13 (parameters
23 (parameters
33 (parameters
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
SessionExpiresHeader.java 13 public interface SessionExpiresHeader extends Parameters, Header, ExtensionHeader{
  /external/nist-sip/java/javax/sip/header/
AcceptLanguageHeader.java 6 public interface AcceptLanguageHeader extends Header, Parameters {
AuthenticationInfoHeader.java 5 public interface AuthenticationInfoHeader extends Header, Parameters {
ContactHeader.java 5 public interface ContactHeader extends HeaderAddress, Header, Parameters {
ContentDispositionHeader.java 5 public interface ContentDispositionHeader extends Header, Parameters {
ErrorInfoHeader.java 6 public interface ErrorInfoHeader extends Header, Parameters {
ReasonHeader.java 6 public interface ReasonHeader extends Header, Parameters {
RetryAfterHeader.java 6 public interface RetryAfterHeader extends Header, Parameters {
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 34 * This MemberVisitor counts the parameters and marks the used parameters
35 * of the methods that it visits. It also marks the 'this' parameters of
64 * Creates a new ParameterUsageMarker that optionally marks all parameters.
65 * @param markThisParameter specifies whether all 'this' parameters should
67 * @param markAllParameters specifies whether all other parameters should
98 // Must we mark all other parameters?
101 // Mark all parameters, without the 'this' parameter.
110 // Mark all parameters.
135 // Mark the parameters that are used by the code
    [all...]
  /frameworks/compile/slang/tests/F_root_graphics_13/
stderr.txt.expect 3 root_graphics_13.rs:5:5: error: Compute root() targeting SDK levels 11-13 may not skip parameters
  /libcore/luni/src/main/java/java/lang/reflect/
GenericDeclaration.java 20 * Common interface for language constructs that declare type parameters.
27 * Returns the declared type parameters in declaration order. If there are
28 * no type parameters, this method returns a zero length array.
30 * @return the declared type parameters in declaration order
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterGeneratorTest.java 43 AlgorithmParameters parameters = generator.generateParameters(); local
45 assertNotNull("generated parameters are null", parameters);
47 helper.test(parameters);

Completed in 452 milliseconds

1 2 3 4 56 7 8 91011>>