Searched refs:parameters (Results 51 - 75 of 897) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dlower_returns_1.opt_test10 (signature void (parameters)
H A Dlower_returns_2.opt_test10 (signature float (parameters)
H A Dlower_returns_4.opt_test10 (signature float (parameters)
H A Dremove_continue_at_end_of_loop.opt_test10 (signature void (parameters)
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_breaks_1.opt_test10 (signature void (parameters)
H A Dlower_returns_1.opt_test10 (signature void (parameters)
H A Dlower_returns_2.opt_test10 (signature float (parameters)
H A Dlower_returns_4.opt_test10 (signature float (parameters)
H A Dremove_continue_at_end_of_loop.opt_test10 (signature void (parameters)
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableMethodReference.java46 @Nonnull protected final ImmutableList<String> parameters; field in class:ImmutableMethodReference
51 @Nullable Iterable<? extends CharSequence> parameters,
55 this.parameters = CharSequenceConverter.immutableStringList(parameters);
61 @Nullable ImmutableList<String> parameters,
65 this.parameters = ImmutableUtils.nullToEmptyList(parameters);
83 @Nonnull @Override public ImmutableList<String> getParameterTypes() { return parameters; }
49 ImmutableMethodReference(@onnull String definingClass, @Nonnull String name, @Nullable Iterable<? extends CharSequence> parameters, @Nonnull String returnType) argument
59 ImmutableMethodReference(@onnull String definingClass, @Nonnull String name, @Nullable ImmutableList<String> parameters, @Nonnull String returnType) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DReason.java80 this.parameters.set("cause", Integer.valueOf(cause));
109 this.parameters.set("text", text);
118 return this.parameters.getParameter("text");
145 if (parameters != null && !parameters.isEmpty())
146 s.append(SEMICOLON).append(parameters.encode());
H A DTo.java71 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);
H A DAcceptEncoding.java101 if (parameters != null && !parameters.isEmpty()) {
102 buffer.append(SEMICOLON).append(parameters.encode());
/external/proguard/src/proguard/ant/
H A DMemberSpecificationElement.java43 private String parameters; field in class:MemberSpecificationElement
71 String parameters = memberSpecificationElement.parameters;
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);
111 parameters !
153 setParameters(String parameters) argument
162 setParam(String parameters) argument
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/main/
H A Ddispatch.h49 #define CALL_by_offset(disp, cast, offset, parameters) \
50 (*(cast (GET_by_offset(disp, offset)))) parameters
2176 #define CALL_NewList(disp, parameters) \
2177 (* GET_NewList(disp)) parameters
2187 #define CALL_EndList(disp, parameters) \
2188 (* GET_EndList(disp)) parameters
2198 #define CALL_CallList(disp, parameters) \
2199 (* GET_CallList(disp)) parameters
2209 #define CALL_CallLists(disp, parameters) \
2210 (* GET_CallLists(disp)) parameters
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dmedia_opt_util.cc74 VCMNackFecMethod::ProtectionFactor(const VCMProtectionParameters* parameters) argument
89 VCMFecMethod::ProtectionFactor(parameters);
90 if (_lowRttNackMs == -1 || parameters->rtt < _lowRttNackMs)
98 else if (_highRttNackMs == -1 || parameters->rtt < _highRttNackMs)
101 // uint16_t rttIndex = (uint16_t) parameters->rtt;
117 const VCMProtectionParameters* parameters) {
118 if (parameters->numLayers > 2) {
128 float base_layer_framerate = parameters->frameRate /
129 static_cast<float>(1 << (parameters->numLayers - 1));
131 2.0f * base_layer_framerate * parameters
116 ComputeMaxFramesFec( const VCMProtectionParameters* parameters) argument
145 BitRateTooLowForFec( const VCMProtectionParameters* parameters) argument
171 EffectivePacketLoss(const VCMProtectionParameters* parameters) argument
180 UpdateParameters(const VCMProtectionParameters* parameters) argument
235 UpdateParameters(const VCMProtectionParameters* parameters) argument
566 BitsPerFrame(const VCMProtectionParameters* parameters) argument
583 EffectivePacketLoss(const VCMProtectionParameters* parameters) argument
605 UpdateParameters(const VCMProtectionParameters* parameters) argument
[all...]
/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/chromium_org/remoting/tools/
H A Dzip2msi.py12 +- parameters.json
18 'parameters.json' specifies the parameters to be passed to candle/light and
151 def GenerateCommandLine(tool, source, dest, parameters):
153 # Merge/apply tool-specific parameters
154 params = copy.copy(parameters)
155 if tool in parameters:
193 def GenerateMsi(target, source, parameters):
195 parameters['basename'] = os.path.splitext(os.path.basename(source))[0]
206 rc = UnpackZip(parameters['intermediate_di
[all...]
/external/bison/darwin-lib/sys/
H A Dwait.h111 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/
H A Dwait.h111 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/
H A Dresidual_block_utils_test.cc76 virtual bool Evaluate(double const* const* parameters, argument
91 virtual bool Evaluate(double const* const* parameters, argument
105 virtual bool Evaluate(double const* const* parameters, argument
119 virtual bool Evaluate(double const* const* parameters, argument
132 virtual bool Evaluate(double const* const* parameters, argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCameraParametersTest.java23 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);
58 assertThat(parameters.getPreviewFrameRate(), not(equalTo(15)));
59 parameters
[all...]
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc89 const OAuthRequestSigner::Parameters& parameters) {
94 for (cursor = parameters.begin(), limit = parameters.end();
133 OAuthRequestSigner::Parameters parameters; local
146 parameters[keyword] = value;
173 parameters[keyword] = value;
189 parameters[keyword] = value;
194 *parameters_result = parameters;
238 // Adds parameters that are required by OAuth added as needed to |parameters|
88 BuildBaseStringParameters( const OAuthRequestSigner::Parameters& parameters) argument
239 PrepareParameters(OAuthRequestSigner::Parameters* parameters, OAuthRequestSigner::SignatureMethod signature_method, OAuthRequestSigner::HttpMethod http_method, const std::string& consumer_key, const std::string& token_key) argument
259 SignParameters(const GURL& request_base_url, OAuthRequestSigner::SignatureMethod signature_method, OAuthRequestSigner::HttpMethod http_method, const std::string& consumer_key, const std::string& consumer_secret, const std::string& token_key, const std::string& token_secret, OAuthRequestSigner::Parameters* parameters) argument
373 Parameters parameters; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9FieldID.java22 private ASN1Primitive parameters; field in class:X9FieldID
32 this.parameters = new ASN1Integer(primeP);
71 this.parameters = new DERSequence(fieldIdParams);
78 this.parameters = seq.getObjectAt(1).toASN1Primitive();
103 return parameters;
111 * parameters FIELD-ID.&amp;Type({IOSet}{&#64;fieldType})
120 v.add(this.parameters);
/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java51 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,
48 makeBody(CtClass declaring, ClassFile classfile, int howToCallSuper, CtMethod wrappedBody, CtClass[] parameters, ConstParameter cparam) argument

Completed in 677 milliseconds

1234567891011>>