HomeSort by relevance Sort by last modified time
    Searched defs:Parameters (Results 1 - 25 of 28) sorted by null

1 2

  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MyTrustManagerFactorySpi.java 47 if (spec instanceof Parameters) {
49 engineInit(((Parameters) spec).getKeyStore());
64 public static class Parameters implements ManagerFactoryParameters {
67 public Parameters(KeyStore ks) {
MyKeyManagerFactorySpi.java 55 if (spec instanceof Parameters) {
57 engineInit(((Parameters) spec).getKeyStore(),
58 ((Parameters) spec).getPassword());
72 public static class Parameters implements ManagerFactoryParameters {
76 public Parameters(KeyStore ks, char[] pass) {
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.h 32 typedef std::map<std::string,std::string> Parameters;
54 // Signs a request specified as URL string, complete with parameters.
57 // it is the request parameters, including the oauth_signature field.
68 // parameters included in a separate map data structure. NOTE: The base URL
73 // it is the request parameters, including the oauth_signature field.
75 const Parameters& parameters,
87 const Parameters& parameters,
oauth2_mint_token_flow.cc 98 OAuth2MintTokenFlow::Parameters::Parameters() : mode(MODE_ISSUE_ADVICE) {}
100 OAuth2MintTokenFlow::Parameters::Parameters(
113 OAuth2MintTokenFlow::Parameters::~Parameters() {}
117 const Parameters& parameters)
120 parameters.access_token,
123 parameters_(parameters),
    [all...]
oauth2_mint_token_flow.h 75 // Parameters needed to mint a token.
76 struct Parameters {
78 Parameters();
79 Parameters(const std::string& at,
84 ~Parameters();
106 const Parameters& parameters);
143 Parameters parameters_;
  /external/nist-sip/java/javax/sip/header/
Parameters.java 6 public interface Parameters {
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MyTrustManagerFactorySpi.java 47 if (spec instanceof Parameters) {
49 engineInit(((Parameters) spec).getKeyStore());
64 public static class Parameters implements ManagerFactoryParameters {
67 public Parameters(KeyStore ks) {
MyKeyManagerFactorySpi.java 55 if (spec instanceof Parameters) {
57 engineInit(((Parameters) spec).getKeyStore(),
58 ((Parameters) spec).getPassword());
72 public static class Parameters implements ManagerFactoryParameters {
76 public Parameters(KeyStore ks, char[] pass) {
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.h 228 struct Parameters {
235 Parameters()
244 static PassRefPtrWillBeRawPtr<DateTimeYearFieldElement> create(Document&, FieldOwner&, const Parameters&);
247 DateTimeYearFieldElement(Document&, FieldOwner&, const Parameters&);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Macro.h 26 typedef std::vector<std::string> Parameters;
42 Parameters parameters; member in struct:pp::Macro
  /external/chromium_org/cc/scheduler/
delay_based_time_source.h 70 struct Parameters {
71 Parameters(base::TimeDelta interval, base::TimeTicks tick_target)
82 // Maintaining a pending set of parameters allows NextTickTime() to always
84 Parameters current_parameters_;
85 Parameters next_parameters_;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspecutil.py 215 def Parameters(funcname):
216 """Return list of tuples of function parameters."""
mtypes.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter.h 56 * Actual data for constant values of parameters.
97 GLuint Size; /**< allocated size of Parameters, ParameterValues */
98 GLuint NumParameters; /**< number of parameters in arrays */
99 struct gl_program_parameter *Parameters; /**< Array [Size] */
  /external/junit/src/org/junit/runners/
Parameterized.java 32 * &#064;Parameters
58 * <code>&#064;Parameters</code> method.
63 * Annotation for a method which provides parameters to be injected into the
68 public static @interface Parameters {
156 .getAnnotatedMethods(Parameters.class);
163 throw new Exception("No public static parameters method on class "
  /external/mesa3d/src/mesa/main/
APIspecutil.py 215 def Parameters(funcname):
216 """Return list of tuples of function parameters."""
mtypes.h     [all...]
  /external/mesa3d/src/mesa/program/
prog_parameter.h 56 * Actual data for constant values of parameters.
97 GLuint Size; /**< allocated size of Parameters, ParameterValues */
98 GLuint NumParameters; /**< number of parameters in arrays */
99 struct gl_program_parameter *Parameters; /**< Array [Size] */
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimatorNone.h 65 struct PLATFORM_EXPORT Parameters {
66 Parameters();
67 Parameters(bool isEnabled, double animationTime, double repeatMinimumSustainTime, Curve attackCurve, double attackTime, Curve releaseCurve, double releaseTime, Curve coastTimeCurve, double maximumCoastTime);
90 Parameters parametersForScrollGranularity(ScrollGranularity) const;
97 bool updateDataFromParameters(float step, float delta, float scrollableSize, double currentTime, Parameters*);
ScrollAnimatorNone.cpp 55 ScrollAnimatorNone::Parameters::Parameters()
60 ScrollAnimatorNone::Parameters::Parameters(bool isEnabled, double animationTime, double repeatMinimumSustainTime, Curve attackCurve, double attackTime, Curve releaseCurve, double releaseTime, Curve coastTimeCurve, double maximumCoastTime)
224 bool ScrollAnimatorNone::PerAxisData::updateDataFromParameters(float step, float delta, float scrollableSize, double currentTime, Parameters* parameters)
242 m_attackTime = parameters->m_attackTime;
243 m_attackCurve = parameters->m_attackCurve;
245 m_animationTime = parameters->m_animationTime;
246 m_releaseTime = parameters->m_releaseTime
406 Parameters parameters; local
    [all...]
  /external/ceres-solver/examples/
libmv_homography.cc 148 // A parameterization of the 2D homography matrix that uses 8 parameters so
150 // The homography matrix H is built from a list of 8 parameters (a, b,...g, h)
160 typedef Eigen::Matrix<T, 8, 1> Parameters; // a, b, ... g, h
163 // Convert from the 8 parameters to a H matrix.
164 static void To(const Parameters &p, Parameterized *h) {
170 // Convert from a H matrix to the 8 parameters.
171 static void From(const Parameterized &h, Parameters *p) {
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 333 PragmaOpenCLExtensionCallbacks::CallbackParameters Parameters =
336 ASSERT_EQ("cl_khr_fp64", Parameters.Name);
338 ASSERT_EQ(ExpectedState, Parameters.State);
345 PragmaOpenCLExtensionCallbacks::CallbackParameters Parameters =
348 ASSERT_EQ("cl_khr_fp16", Parameters.Name);
350 ASSERT_EQ(ExpectedState, Parameters.State);
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
HybridNonLinearSolver.h 51 struct Parameters {
52 Parameters()
89 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. *
    [all...]
LevenbergMarquardt.h 54 struct Parameters {
55 Parameters()
98 void resetParameters(void) { parameters = Parameters(); }
100 Parameters parameters; member in class:Eigen::LevenbergMarquardt
136 /* check the input parameters for errors. */
141 parameters.ftol = tol;
142 parameters.xtol = tol;
143 parameters.maxfev = 100*(n+1)
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 73 MCAsmMacroParameters Parameters;
77 Name(N), Body(B), Parameters(P) {}
254 ArrayRef<MCAsmMacroParameter> Parameters);
256 ArrayRef<MCAsmMacroParameter> Parameters,
    [all...]

Completed in 1606 milliseconds

1 2