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

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/
To.java 71 setParameters(from.parameters);
103 if (!parameters.isEmpty()) {
105 parameters.encode(buffer);
140 if (parameters == null)
152 if (parameters == null)
162 if (parameters != null)
163 parameters.delete(ParameterNames.TAG);
AcceptEncoding.java 101 if (parameters != null && !parameters.isEmpty()) {
102 buffer.append(SEMICOLON).append(parameters.encode());
From.java 68 parameters = to.parameters;
88 if (!parameters.isEmpty()) {
90 parameters.encode(buffer);
118 if (parameters == null)
133 parameters.delete(ParameterNames.TAG);
ReferTo.java 77 if (!parameters.isEmpty()) {
78 retval += SEMICOLON + parameters.encode();
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 28 import android.hardware.Camera.Parameters;
421 Parameters parameters = mCamera.getParameters(); local
422 for (Size size: parameters.getSupportedPreviewSizes()) {
425 parameters.setPreviewSize(size.width, size.height);
426 mCamera.setParameters(parameters);
556 // we can get parameters just by getxxx method due to the private constructor
557 Parameters pSet = mCamera.getParameters();
562 // Also test Camera.Parameters
563 private void assertParameters(Parameters parameters)
825 Camera.Parameters parameters = mCamera.getParameters(); local
931 Camera.Parameters parameters = mCamera.getParameters(); local
999 Parameters parameters = mCamera.getParameters(); local
1045 Parameters parameters = mCamera.getParameters(); local
1131 Parameters parameters = mCamera.getParameters(); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/
ContentTypeField.java 72 private Map<String, String> parameters = null; field in class:ContentTypeField
75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, String> parameters, ParseException parseException) {
78 this.parameters = parameters;
134 return parameters != null
135 ? parameters.get(name.toLowerCase())
140 * Gets all parameters.
142 * @return the parameters.
145 if (parameters != null) {
146 return Collections.unmodifiableMap(parameters);
214 Map<String, String> parameters = null; local
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigExecutableMember.java 35 private List<IParameter> parameters = Uninitialized.unset(); field in class:SigExecutableMember
51 return parameters;
54 public void setParameters(List<IParameter> parameters) {
55 this.parameters = parameters;
  /external/bison/darwin-lib/sys/
wait.h 111 consisting of return type, parameters, and attributes.
123 consisting of return type, parameters, and attributes.
131 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
137 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
138 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
140 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
143 rettype (*const func) parameters = ::rpl_func; \
147 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
151 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
152 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
    [all...]
  /external/bison/linux-lib/sys/
wait.h 111 consisting of return type, parameters, and attributes.
123 consisting of return type, parameters, and attributes.
131 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
137 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
138 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
140 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
143 rettype (*const func) parameters = ::rpl_func; \
147 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
151 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
152 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
    [all...]
  /external/ceres-solver/internal/ceres/
residual_block_utils_test.cc 74 virtual bool Evaluate(double const* const* parameters,
89 virtual bool Evaluate(double const* const* parameters,
103 virtual bool Evaluate(double const* const* parameters,
117 virtual bool Evaluate(double const* const* parameters,
130 virtual bool Evaluate(double const* const* parameters,
runtime_numeric_diff_cost_function_test.cc 64 virtual bool Evaluate(double const* const* parameters,
71 residuals[0] += parameters[0][i] * parameters[1][i];
72 residuals[2] += parameters[1][i] * parameters[1][i];
95 double *parameters[] = { &x1[0], &x2[0] }; local
103 ASSERT_TRUE(cost_function->Evaluate(&parameters[0],
137 virtual bool Evaluate(double const* const* parameters,
144 x1x2 += parameters[0][i] * parameters[1][i]
191 double *parameters[] = { x1, x2 }; local
    [all...]
coordinate_descent_minimizer.h 63 double* parameters,
69 double* parameters,
residual_block_test.cc 55 virtual bool Evaluate(double const* const* parameters,
88 vector<ParameterBlock*> parameters; local
89 parameters.push_back(&x);
90 parameters.push_back(&y);
91 parameters.push_back(&z);
96 ResidualBlock residual_block(&cost_function, NULL, parameters);
101 EXPECT_EQ(parameters[0], residual_block.parameter_blocks()[0]);
102 EXPECT_EQ(parameters[1], residual_block.parameter_blocks()[1]);
103 EXPECT_EQ(parameters[2], residual_block.parameter_blocks()[2]);
170 virtual bool Evaluate(double const* const* parameters,
215 vector<ParameterBlock*> parameters; local
    [all...]
trust_region_minimizer_test.cc 52 // Templated Evaluator for Powell's function. The template parameters
194 double parameters[4] = { 3, -1, 0, 1.0 }; local
198 parameters[0] = (col1 ? parameters[0] : 0.0);
199 parameters[1] = (col2 ? parameters[1] : 0.0);
200 parameters[2] = (col3 ? parameters[2] : 0.0);
201 parameters[3] = (col4 ? parameters[3] : 0.0)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CameraParametersTest.java 23 private Camera.Parameters parameters; field in class:CameraParametersTest
28 parameters = Robolectric.newInstanceOf(Camera.Parameters.class);
29 shadowParameters = Robolectric.shadowOf(parameters);
36 parameters.setPictureSize(800, 600);
37 Camera.Size pictureSize = parameters.getPictureSize();
47 parameters.getPreviewFpsRange(fpsRange);
50 parameters.setPreviewFpsRange(15, 25);
51 parameters.getPreviewFpsRange(fpsRange)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebContextMac.mm 74 void WebContext::platformInitializeWebProcess(WebProcessCreationParameters& parameters)
78 parameters.mimeTypesWithCustomRepresentation.appendRange(mimeType.begin(), mimeType.end());
86 parameters.parentProcessName = [[NSProcessInfo processInfo] processName];
87 parameters.nsURLCachePath = [(NSString *)cachePath.get() stringByStandardizingPath];
88 parameters.nsURLCacheMemoryCapacity = [urlCache memoryCapacity];
89 parameters.nsURLCacheDiskCapacity = [urlCache diskCapacity];
91 ASSERT(!parameters.nsURLCachePath.isEmpty());
96 parameters.acceleratedCompositingPort = CoreIPC::MachPort(renderServerPort, MACH_MSG_TYPE_COPY_SEND);
100 parameters.uiProcessBundleResourcePath = [[NSBundle mainBundle] resourcePath];
103 parameters.uiProcessBundleIdentifier = String([[NSBundle mainBundle] bundleIdentifier])
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 134 // The parameters.
135 private transient Object[] parameters; field in class:LogRecord
176 this.parameters = null;
266 * Gets the parameters.
268 * @return the array of parameters or {@code null} if there are no
269 * parameters.
272 return parameters;
276 * Sets the parameters.
278 * @param parameters
279 * the array of parameters to set, may be {@code null}
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 51 CtClass[] parameters,
59 code.setMaxLocals(false, parameters, 0);
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
68 Descriptor.ofConstructor(parameters));
71 stacksize = compileParameterList(code, parameters, 1);
92 false, parameters, CtClass.voidType,
CtNewConstructor.java 37 * Specifies that no parameters are passed to a super-class'
43 * Specifies that parameters are converted into an array of
47 public static final int PASS_ARRAY = 1; // an array of parameters
50 * Specifies that parameters are passed <i>as is</i>
85 * @param parameters a list of the parameter types.
94 public static CtConstructor make(CtClass[] parameters,
100 CtConstructor cc = new CtConstructor(parameters, declaring);
160 * in the super class. The created constructor receives parameters
161 * specified by <code>parameters</code> but calls the super's
162 * constructor without those parameters (that is, it calls the defaul
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 64 if (!parameters.isEmpty()) {
65 retVal += SEMICOLON + parameters.encode();
112 if (parameters == null)
137 parameters.delete(ParameterNames.TO_TAG);
144 if (parameters == null)
169 parameters.delete(ParameterNames.FROM_TAG);
Replaces.java 64 if (!parameters.isEmpty()) {
65 retVal += SEMICOLON + parameters.encode();
112 if (parameters == null)
137 parameters.delete(ParameterNames.TO_TAG);
144 if (parameters == null)
169 parameters.delete(ParameterNames.FROM_TAG);
  /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...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/
FilterFunctionEnvironment.java 58 * the given key-value list of parameters. Note, that this function uses the default shared
62 * @param parameters An argument list of alternating key-value filter parameters.
65 public FilterFunction createFunction(Class filterClass, Object... parameters) {
68 filter.initWithAssignmentList(parameters);
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 20 * HttpAuthHeader: a class to store HTTP authentication-header parameters.
113 * The header string is assumed to contain parameters of at
257 * Parses the header scheme name and then scheme parameters if
266 String parameters = parseScheme(header); local
267 if (parameters != null) {
270 parseParameters(parameters);
279 * @return The authentication scheme parameters string to be
308 * parameters.
310 private void parseParameters(String parameters) {
313 " parameters: " + parameters)
    [all...]
  /external/openssl/crypto/store/
str_mem.c 113 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
115 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
118 OPENSSL_ITEM parameters[]);
122 OPENSSL_ITEM parameters[]);
124 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
126 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
131 OPENSSL_ITEM parameters[]);
133 OPENSSL_ITEM parameters[]);
173 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
179 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
    [all...]

Completed in 2166 milliseconds

1 23 4 5 6 7 8 91011>>