Searched defs:parameters (Results 101 - 125 of 345) sorted by relevance

1234567891011>>

/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_params.h14 // the input parameters. In order to better make sense of this header is
19 // Models the set of interesting parameters of an intercepted system call
31 // You could say that the following parameters are of interest to policy:
41 // and the actual code will use this for defining the parameters:
177 ParameterSet parameters[1]; member in struct:sandbox::CountedParameterSetBase
180 // This template defines the actual list of policy parameters for a given
189 return parameters[n];
197 ParameterSet parameters[T::PolParamLast]; member in struct:sandbox::CountedParameterSet
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DJSArticle.js17 this.parameters = [];
119 var parameters = apiObjectMethod ? apiObjectMethod["Parameters"] : []; variable
120 if (!Array.isArray(parameters) && typeof parameters !== "undefined")
121 parameters = [parameters];
123 for (var i = 0; i < parameters.length; ++i) {
124 if (!parameters[i].values)
126 var name = parameters[i].values["Name"];
127 var dataType = parameters[
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
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/chromium_org/third_party/WebKit/Source/web/
H A DExternalDateTimeChooser.cpp79 PassRefPtr<ExternalDateTimeChooser> ExternalDateTimeChooser::create(ChromeClientImpl* chromeClient, WebViewClient* webViewClient, DateTimeChooserClient* client, const DateTimeChooserParameters& parameters) argument
83 if (!chooser->openDateTimeChooser(chromeClient, webViewClient, parameters))
106 bool ExternalDateTimeChooser::openDateTimeChooser(ChromeClientImpl* chromeClient, WebViewClient* webViewClient, const DateTimeChooserParameters& parameters) argument
112 webParams.type = toWebDateTimeInputType(parameters.type);
113 webParams.anchorRectInScreen = chromeClient->rootViewToScreen(parameters.anchorRectInRootView);
114 webParams.currentValue = parameters.currentValue;
115 webParams.doubleValue = parameters.doubleValue;
116 webParams.suggestions = parameters.suggestions;
117 webParams.minimum = parameters.minimum;
118 webParams.maximum = parameters
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dlocalization.cc34 void PushBackUrl(const std::string& url, std::vector<std::string>* parameters) { argument
35 assert(parameters != NULL);
37 parameters->push_back("<a href=\"" + url + "\">");
38 parameters->push_back("</a>");
101 std::vector<std::string> parameters; local
105 parameters.push_back(values.front());
107 parameters.push_back(address.GetFieldValue(field));
110 get_string_(IDS_LIBADDRESSINPUT_UNKNOWN_VALUE), parameters);
134 std::vector<std::string> parameters; local
140 parameters
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayMath.cpp132 SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type,
137 SkScriptValue* array = parameters.begin();
138 SkScriptValue* end = parameters.end();
139 SkScalar input = parameters[0].fOperand.fScalar;
155 scalarResult = SkScalarATan2(input, parameters[1].fOperand.fScalar);
189 scalarResult = SkScalarMul(parameters[1].fOperand.fScalar, scalarResult);
202 SkASSERT(parameters.count() == 1);
131 executeFunction(SkDisplayable* target, int index, SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type, SkScriptValue* scriptValue) argument
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java35 final TypeList parameters; field in class:MethodId
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) { argument
42 if (declaringType == null || returnType == null || name == null || parameters == null) {
48 this.parameters = parameters;
76 return parameters.asList();
88 for (TypeId t : parameters.types) {
104 && ((MethodId<?, ?>) o).parameters.equals(parameters)
112 result = 31 * result + 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));
/external/javassist/src/main/javassist/
H A DCtConstructor.java49 * @param parameters a list of the parameter types
55 public CtConstructor(CtClass[] parameters, CtClass declaring) { argument
58 String desc = Descriptor.ofConstructor(parameters);
H A DCtNewMethod.java90 * @param parameters a list of the parameter types.
100 String mname, CtClass[] parameters,
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
116 * @param parameters a list of the parameter types.
127 String mname, CtClass[] parameters,
134 = new CtMethod(returnType, mname, parameters, declaring);
194 * @param parameters a list of the parameter types
202 CtClass[] parameters,
207 CtMethod cm = new CtMethod(returnType, mname, parameters, declaring);
298 * by <code>delegate</code> with all the parameters passe
99 make(CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
126 make(int modifiers, CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
200 abstractMethod(CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, CtClass declaring) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCredentials.java57 * parameters list.
59 protected NameValueList parameters; field in class:Credentials
65 parameters = new NameValueList();
66 parameters.setSeparator(COMMA);
70 * get the parameters list.
74 return parameters;
94 * Set the parameters member
98 parameters = c;
103 if (!parameters.isEmpty()) {
104 retval += SP + parameters
[all...]
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java48 * can get a body or parameters but not both. Calling a getParameter method will
52 * parameters, that is whether you should call getParameter or not.
59 * signature (with different parameters). For example, Google's Service Provider
131 * @param parameters
132 * additional parameters for this request, or null to indicate
133 * that there are no additional parameters.
138 Collection<? extends Map.Entry> parameters) throws IOException,
148 List<Map.Entry> p = (parameters == null) ? new ArrayList<Map.Entry>(
150 : new ArrayList<Map.Entry>(parameters);
153 parameters
137 getRequestToken(OAuthAccessor accessor, String httpMethod, Collection<? extends Map.Entry> parameters) argument
183 getAccessToken(OAuthAccessor accessor, String httpMethod, Collection<? extends Map.Entry> parameters) argument
214 invoke(OAuthAccessor accessor, String httpMethod, String url, Collection<? extends Map.Entry> parameters) argument
249 invoke(OAuthAccessor accessor, String url, Collection<? extends Map.Entry> parameters) argument
[all...]
/external/skia/src/animator/
H A DSkDisplayMath.cpp132 SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type,
137 SkScriptValue* array = parameters.begin();
138 SkScriptValue* end = parameters.end();
139 SkScalar input = parameters[0].fOperand.fScalar;
155 scalarResult = SkScalarATan2(input, parameters[1].fOperand.fScalar);
189 scalarResult = SkScalarMul(parameters[1].fOperand.fScalar, scalarResult);
202 SkASSERT(parameters.count() == 1);
131 executeFunction(SkDisplayable* target, int index, SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type, SkScriptValue* scriptValue) argument
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
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
H A DBuilderMethodPool.java70 @Nonnull List<? extends CharSequence> parameters,
72 return internMethod(new MethodKey(definingClass, name, parameters, returnType));
69 internMethod(@onnull String definingClass, @Nonnull String name, @Nonnull List<? extends CharSequence> parameters, @Nonnull String returnType) argument
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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPublicKey.java84 private boolean isNotNull(ASN1Encodable parameters) argument
86 return parameters != null && !DERNull.INSTANCE.equals(parameters.toASN1Primitive());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyAgreementSpi.java78 private ECDomainParameters parameters; field in class:KeyAgreementSpi
87 return converter.integerToBytes(r, converter.getByteLength(parameters.getG().getAffineXCoord()));
107 if (parameters == null)
135 // // TODO Validate that all the keys are using the same parameters?
148 // TODO Validate that all the keys are using the same parameters?
228 throw new InvalidAlgorithmParameterException("No algorithm parameters supported");
268 // this.parameters = staticPrivKey.getParameters();
270 // // TODO Validate that all the keys are using the same parameters?
284 this.parameters = privKey.getParameters();
/external/ceres-solver/examples/
H A Ddenoising.cc74 virtual bool Evaluate(double const* const* parameters, argument
77 const double x = parameters[0][0];
140 // These parameters may be experimented with. For example, ceres::DOGLEG tends
/external/ceres-solver/include/ceres/
H A Ddynamic_numeric_diff_cost_function.h35 // functions with variable numbers of parameters with variable
45 // bool operator()(double const* const* parameters, double* residuals) const {
46 // // Use parameters[i] to access the i'th parameter block.
50 // Since the sizing of the parameters is done at runtime, you must
100 virtual bool Evaluate(double const* const* parameters, argument
112 const bool status = EvaluateCostFunctor(parameters, residuals);
117 // Create local space for a copy of the parameters which will get mutated.
127 // Copy the parameters into the local temp space.
130 parameters[block],
131 block_sizes[block] * sizeof(*parameters[bloc
149 EvaluateJacobianForParameterBlock(const int parameter_block_size, const int parameter_block, const double relative_step_size, double const* residuals_at_eval_point, double** parameters, double** jacobians) const argument
234 EvaluateCostFunctor(double const* const* parameters, double* residuals) const argument
244 EvaluateCostFunctorImpl(const CostFunctor* functor, double const* const* parameters, double* residuals, const void* ) const argument
251 EvaluateCostFunctorImpl(const CostFunctor* functor, double const* const* parameters, double* residuals, const CostFunction* ) const argument
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dautodiff.h86 // Functors with multiple parameters
89 // vector-valued parameters, for example, x[3] and z[6]. Unfortunately, the jet
94 // To support multiple parameters, all the parameter vectors are concatenated
100 // For example, consider a functor F taking two vector parameters, p[2] and
138 // the Jacobian parameters, meaning that those Jacobians will not be computed.
201 // This is in a struct because default template parameters on a
210 T const *const *parameters,
266 parameters[i], \
209 Differentiate(const Functor& functor, T const *const *parameters, int num_outputs, T *function_value, T **jacobians) argument
/external/ceres-solver/internal/ceres/
H A Dcoordinate_descent_minimizer.cc123 double* parameters,
128 parameter_block->SetState(parameters + parameter_block->state_offset());
178 // some ways is fine, since it won't change the parameters and
183 parameters + parameter_block->state_offset(),
188 parameter_block->SetState(parameters + parameter_block->state_offset());
121 Minimize( const Minimizer::Options& options, double* parameters, Solver::Summary* summary) argument
H A Ddynamic_numeric_diff_cost_function_test.cc44 // parameters[0] is size 10.
45 // parameters[1] is size 5.
47 // A: i - parameters[0][i], for i in [0,10) -- this is 10 residuals
48 // B: parameters[0][i] - i, for i in [0,10) -- this is another 10.
49 // C: sum(parameters[0][i]^2 - 8*parameters[0][i]) + sum(parameters[1][i])
52 bool operator()(double const* const* parameters, double* residuals) const { argument
53 const double* params0 = parameters[0];
65 const double* params1 = parameters[
289 operator ()(T const* const* parameters, T* residuals) const argument
[all...]
H A Dlocal_parameterization_test.cc74 "Number of parameters");
79 "Number of parameters");
181 const double* parameters[2] = {x, zero_delta}; local
186 QuaternionPlus(), parameters, 4, x_plus_delta, jacobian_array); local

Completed in 3096 milliseconds

1234567891011>>