Searched refs:parameters (Results 126 - 150 of 897) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/android/java/
H A Dgin_java_method_invocation_helper.cc151 std::vector<jvalue> parameters(method->num_parameters());
155 parameters[i] = CoerceJavaScriptValueToJavaValue(env,
166 NULL, cls.obj(), method->return_type(), method->id(), &parameters[0]);
169 obj.obj(), NULL, method->return_type(), method->id(), &parameters[0]);
178 ReleaseJavaValueIfRequired(env, &parameters[i], method->parameter_type(i));
229 jvalue* parameters) {
236 object ? env->CallBooleanMethodA(object, id, parameters)
237 : env->CallStaticBooleanMethodA(clazz, id, parameters));
241 object ? env->CallByteMethodA(object, id, parameters)
242 : env->CallStaticByteMethodA(clazz, id, parameters));
225 InvokeMethod(jobject object, jclass clazz, const JavaType& return_type, jmethodID id, jvalue* parameters) argument
[all...]
/external/proguard/src/proguard/optimize/info/
H A DMethodOptimizationInfo.java47 private Value[] parameters; field in class:MethodOptimizationInfo
57 // passed parameters.
68 parameters = new Value[parameterCount];
231 parameters[parameterIndex] = parameters[parameterIndex] != null ?
232 parameters[parameterIndex].generalize(parameter) :
239 return parameters != null ?
240 parameters[parameterIndex] :
/external/ceres-solver/internal/ceres/
H A Dgradient_checker_test.cc72 bool Evaluate(double const* const* parameters, argument
79 ax += a_[j][u] * parameters[j][u];
125 bool Evaluate(double const* const* parameters, argument
132 ax += a_[j][u] * parameters[j][u];
168 FixedArray<double*> parameters(arity);
170 parameters[j] = new double[dim[j]];
172 parameters[j][u] = 2.0 * RandDouble() - 1.0;
180 parameters.get(), 1e-6, &good_term, NULL));
185 parameters.get(), 1e-6, &bad_term, NULL));
188 delete[] parameters[
[all...]
H A Dconditioned_cost_function_test.cc54 virtual bool Evaluate(double const* const* parameters, argument
57 *residuals = **parameters * a_ + b_;
103 double *parameters[1]; local
104 parameters[0] = v1;
108 conditioned_cost_function.Evaluate(parameters, result, jacs);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
H A Dchrome_ex_oauthsimple.js62 parameters: 'foo=bar&gorp=banana',
108 /** set the parameters either from a hash or a string
110 * @param {string,object} List of parameters for the call, this can either be a URI string (e.g. "foo=bar&gorp=banana" or an object/hash)
112 this.setParameters = function (parameters) {
113 if (parameters === undefined) {
114 parameters = {};
116 if (typeof(parameters) == 'string') {
117 parameters=this._parseParameterString(parameters);
119 this._parameters = parameters;
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dchrome_ex_oauthsimple.js62 parameters: 'foo=bar&gorp=banana',
108 /** set the parameters either from a hash or a string
110 * @param {string,object} List of parameters for the call, this can either be a URI string (e.g. "foo=bar&gorp=banana" or an object/hash)
112 this.setParameters = function (parameters) {
113 if (parameters === undefined) {
114 parameters = {};
116 if (typeof(parameters) == 'string') {
117 parameters=this._parseParameterString(parameters);
119 this._parameters = parameters;
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflate.cpp78 bool CompressionMessageExtensionProcessor::processResponse(const HashMap<String, String>& parameters) argument
89 HashMap<String, String>::const_iterator clientNoContextTakeover = parameters.find("client_no_context_takeover");
90 HashMap<String, String>::const_iterator clientMaxWindowBits = parameters.find("client_max_window_bits");
91 HashMap<String, String>::const_iterator serverNoContextTakeover = parameters.find("server_no_context_takeover");
92 HashMap<String, String>::const_iterator serverMaxWindowBits = parameters.find("server_max_window_bits");
94 if (clientNoContextTakeover != parameters.end()) {
102 if (clientMaxWindowBits != parameters.end()) {
115 if (serverNoContextTakeover != parameters.end()) {
122 if (serverMaxWindowBits != parameters.end()) {
136 if (numProcessedParameters != parameters
[all...]
H A DWebSocketExtensionDispatcherTest.cpp68 void appendResult(const String& extensionToken, const HashMap<String, String>& parameters) argument
71 m_parsedParameters.append(parameters);
80 bool MockWebSocketExtensionProcessor::processResponse(const HashMap<String, String>& parameters) argument
82 m_test->appendResult(extensionToken(), parameters); local
115 HashMap<String, String> parameters; member in struct:blink::__anon11228::__anon11229
118 expected[0].parameters.add("max-channels", "4");
119 expected[0].parameters.add("flow-control", String());
129 const HashMap<String, String>& expectedParameters = expected[i].parameters;
131 EXPECT_EQ(expected[i].parameters.size(), m_parsedParameters[i].size());
/external/openssl/crypto/store/
H A Dstore.h155 /* Some store functions take a parameter list. Those parameters come with
237 OPENSSL_ITEM parameters[]);
239 OPENSSL_ITEM parameters[]);
242 OPENSSL_ITEM delete_attributes[], OPENSSL_ITEM parameters[]);
244 OPENSSL_ITEM parameters[]);
246 OPENSSL_ITEM parameters[]);
248 OPENSSL_ITEM parameters[]);
253 OPENSSL_ITEM parameters[]);
255 OPENSSL_ITEM parameters[]);
257 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderProtoPool.java57 @Nonnull public BuilderProtoReference internProto(@Nonnull List<? extends CharSequence> parameters, argument
59 ProtoKey key = new Key(parameters, returnType);
66 context.stringPool.internString(MethodUtil.getShorty(parameters, returnType)),
67 context.typeListPool.internTypeList(parameters),
115 @Nonnull private final List<? extends CharSequence> parameters; field in class:BuilderProtoPool.Key
118 public Key(@Nonnull List<? extends CharSequence> parameters, @Nonnull String returnType) { argument
119 this.parameters = parameters;
124 return parameters;
133 return hashCode*31 + parameters
[all...]
H A DBuilderMethod.java45 @Nonnull final List<? extends BuilderMethodParameter> parameters; field in class:BuilderMethod
54 @Nonnull List<? extends BuilderMethodParameter> parameters,
59 this.parameters = parameters;
69 @Override @Nonnull public List<? extends BuilderMethodParameter> getParameters() { return parameters; }
53 BuilderMethod(@onnull BuilderMethodReference methodReference, @Nonnull List<? extends BuilderMethodParameter> parameters, int accessFlags, @Nonnull BuilderAnnotationSet annotations, @Nullable MethodImplementation methodImplementation) argument
/external/bison/darwin-lib/
H A Dfcntl.h150 consisting of return type, parameters, and attributes.
162 consisting of return type, parameters, and attributes.
170 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
176 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
177 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
179 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
182 rettype (*const func) parameters = ::rpl_func; \
186 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
190 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
191 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
H A Dtime.h117 consisting of return type, parameters, and attributes.
129 consisting of return type, parameters, and attributes.
137 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
143 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
144 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
146 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
149 rettype (*const func) parameters = ::rpl_func; \
153 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
157 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
158 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
/external/bison/linux-lib/
H A Dfcntl.h150 consisting of return type, parameters, and attributes.
162 consisting of return type, parameters, and attributes.
170 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
176 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
177 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
179 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
182 rettype (*const func) parameters = ::rpl_func; \
186 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
190 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
191 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
H A Dtime.h117 consisting of return type, parameters, and attributes.
129 consisting of return type, parameters, and attributes.
137 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
143 #define _GL_CXXALIAS_RPL(func,rettype,parameters) \
144 _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
146 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
149 rettype (*const func) parameters = ::rpl_func; \
153 # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
157 /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
158 is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_handler_basic.cc22 // Returns whether the realm is invalid or the parameters are invalid.
41 HttpUtil::NameValuePairsIterator parameters = tokenizer.param_pairs(); local
42 while (parameters.GetNext()) {
43 if (!LowerCaseEqualsASCII(parameters.name(), "realm"))
46 if (!net::ConvertToUtf8AndNormalize(parameters.value(), kCharsetLatin1,
51 return parameters.valid();
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopenjpeg.c338 void OPJ_CALLCONV opj_set_default_decoder_parameters(opj_dparameters_t *parameters) { argument
339 if(parameters) {
340 memset(parameters, 0, sizeof(opj_dparameters_t));
341 /* default decoding parameters */
342 parameters->cp_layer = 0;
343 parameters->cp_reduce = 0;
345 parameters->decod_format = -1;
346 parameters->cod_format = -1;
347 parameters->flags = 0;
350 parameters
638 opj_set_default_encoder_parameters(opj_cparameters_t *parameters) argument
696 opj_setup_encoder(opj_codec_t *p_codec, opj_cparameters_t *parameters, opj_image_t *p_image) argument
787 opj_set_MCT(opj_cparameters_t *parameters, OPJ_FLOAT32 * pEncodingMatrix, OPJ_INT32 * p_dc_shift,OPJ_UINT32 pNbComp) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
H A Dwebrtc_logging_private_apitest.cc50 base::ListValue parameters; local
51 parameters.AppendInteger(extensions::ExtensionTabUtil::GetTabId(contents));
52 parameters.AppendString(contents->GetURL().GetOrigin().spec());
54 base::JSONWriter::Write(&parameters, &parameter_string);
143 base::ListValue parameters; local
144 parameters.AppendInteger(extensions::ExtensionTabUtil::GetTabId(contents));
145 parameters.AppendString(contents->GetURL().GetOrigin().spec());
155 parameters.Append(meta_data);
158 base::JSONWriter::Write(&parameters, &parameter_string);
173 parameters
296 base::ListValue parameters; local
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dnumeric_diff.h56 double const* const* parameters,
63 parameters,
71 double const* const* parameters,
74 return functor->Evaluate(parameters, residuals, NULL);
79 // class for differing numbers of parameters, which is also unfortunate.
88 // Mutates parameters but must restore them before return.
94 double **parameters,
119 Map<ParameterVector> x_plus_delta(parameters[kParameterBlock],
126 // parameters are zero, there's no good answer. Take
144 functor, parameters, residual
55 EvaluateImpl(const CostFunctor* functor, double const* const* parameters, double* residuals, const void* ) argument
70 EvaluateImpl(const CostFunctor* functor, double const* const* parameters, double* residuals, const CostFunction* ) argument
89 EvaluateJacobianForParameterBlock( const CostFunctor* functor, double const* residuals_at_eval_point, const double relative_step_size, int num_residuals, double **parameters, double *jacobian) argument
190 EvaluateJacobianForParameterBlock( const CostFunctor* functor, double const* residuals_at_eval_point, const double relative_step_size, const int num_residuals, double **parameters, double *jacobian) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethod.java53 @Nonnull protected final ImmutableList<? extends ImmutableMethodParameter> parameters; field in class:ImmutableMethod
61 @Nullable Iterable<? extends MethodParameter> parameters,
68 this.parameters = ImmutableMethodParameter.immutableListOf(parameters);
77 @Nullable ImmutableList<? extends ImmutableMethodParameter> parameters,
84 this.parameters = ImmutableUtils.nullToEmptyList(parameters);
107 @Override @Nonnull public ImmutableList<? extends CharSequence> getParameterTypes() { return parameters; }
108 @Override @Nonnull public ImmutableList<? extends ImmutableMethodParameter> getParameters() { return parameters; }
59 ImmutableMethod(@onnull String definingClass, @Nonnull String name, @Nullable Iterable<? extends MethodParameter> parameters, @Nonnull String returnType, int accessFlags, @Nullable Set<? extends Annotation> annotations, @Nullable MethodImplementation methodImplementation) argument
75 ImmutableMethod(@onnull String definingClass, @Nonnull String name, @Nullable ImmutableList<? extends ImmutableMethodParameter> parameters, @Nonnull String returnType, int accessFlags, @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations, @Nullable ImmutableMethodImplementation methodImplementation) argument
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java41 /** The MIME type for a sequence of OAuth parameters. */
92 public static String formEncode(Iterable<? extends Map.Entry> parameters) argument
95 formEncode(parameters, b);
103 public static void formEncode(Iterable<? extends Map.Entry> parameters, argument
105 if (parameters != null) {
107 for (Map.Entry parameter : parameters) {
180 * Construct a Map containing a copy of the given parameters. If several
181 * parameters have the same name, the Map will contain the first value,
198 public static List<Parameter> newList(String... parameters) { argument
199 List<Parameter> list = new ArrayList<Parameter>(parameters
281 addParameters(String url, String... parameters) argument
286 addParameters(String url, Iterable<? extends Map.Entry<String, String>> parameters) argument
[all...]
H A DOAuthMessage.java39 * The parameters in this class are not percent-encoded. Methods like
41 * responsible for percent-encoding parameters before transmission and decoding
50 Collection<? extends Map.Entry> parameters) {
53 if (parameters == null) {
54 this.parameters = new ArrayList<Map.Entry<String, String>>();
56 this.parameters = new ArrayList<Map.Entry<String, String>>(parameters.size());
57 for (Map.Entry p : parameters) {
58 this.parameters.add(new OAuth.Parameter(
67 private final List<Map.Entry<String, String>> parameters; field in class:OAuthMessage
49 OAuthMessage(String method, String URL, Collection<? extends Map.Entry> parameters) argument
105 addParameters( Collection<? extends Map.Entry<String, String>> parameters) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py259 """The parameters and information for an HTTP request, suitable for
271 def __init__(self, method=HTTP_METHOD, url=None, parameters=None):
274 if parameters is not None:
275 self.update(parameters)
305 """Get any non-OAuth parameters."""
368 """Return a string that contains the parameters that must be signed."""
380 # Include any query string parameters from the provided URL
388 # Encode signature parameters per Oauth Core 1.0 protocol
417 def from_request(cls, http_method, http_url, headers=None, parameters=None,
420 if parameters i
[all...]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A DHybridNonLinearSolver.h89 void resetParameters(void) { parameters = Parameters(); }
90 Parameters parameters; member in class:Eigen::HybridNonLinearSolver
129 /* check the input parameters for errors. */
134 parameters.maxfev = 100*(n+1);
135 parameters.xtol = tol;
159 /* check the input parameters for errors. */
160 if (n <= 0 || parameters.xtol < 0. || parameters.maxfev <= 0 || parameters.factor <= 0. )
214 delta = parameters
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractListPropertyEditor.java150 * Extract string array from parameters.
152 protected static String[] getParameterAsArray(Map<String, Object> parameters, String name) { argument
153 return getParameterAsArray(parameters, name, false);
157 protected static String[] getParameterAsArray(Map<String, Object> parameters, argument
161 if (parameters.containsKey(name)) {
162 List<String> list = (List<String>) parameters.get(name);
168 Assert.fail(String.format("No parameter %s in %s.", name, parameters));

Completed in 4923 milliseconds

1234567891011>>