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

1 2 3 4 5

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 5 Parameter = Struct.new( :name, :default )
6 class Parameter
35 when Parameter then name
36 else Parameter.new( name.to_s )
  /external/jcommander/src/main/java/com/beust/jcommander/
Parameter.java 35 public @interface Parameter {
60 * How many parameter values this parameter will consume. For example,
66 * If true, this parameter is a password and it will be prompted on the console
86 * If true, this parameter won't appear in the usage().
91 * Validate the parameter found on the command line.
96 * Validate the value for this parameter.
101 * @return true if this parameter has a variable arity. See @{IVariableArity}
118 * If true, this parameter is for help. If such a parameter is specified
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
Parameter.java 21 public interface Parameter {
32 public void copyFrom(Parameter src);
  /external/v8/test/unittests/compiler/
graph-unittest.h 36 Node* Parameter(int32_t index = 0);
71 Node* Parameter(int32_t index = 0) { return GraphTest::Parameter(index); }
72 Node* Parameter(Type* type, int32_t index = 0);
graph-unittest.cc 25 Node* GraphTest::Parameter(int32_t index) {
26 return graph()->NewNode(common()->Parameter(index), graph()->start());
110 Node* TypedGraphTest::Parameter(Type* type, int32_t index) {
111 Node* node = GraphTest::Parameter(index);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Parameter.java 32 * Represents an injectable parameter, marked with one of @Param, @VmParam. Has nothing to do with
33 * particular choices of <i>values</i> for this parameter (except that it knows how to find the
36 public final class Parameter {
37 public static Parameter create(Field field) throws InvalidBenchmarkException {
38 return new Parameter(field);
45 public Parameter(Field field) throws InvalidBenchmarkException {
47 throw new InvalidBenchmarkException("Parameter field '%s' must not be static",
51 throw new InvalidBenchmarkException("Class '%s' uses reserved parameter name '%s'",
62 throw new InvalidBenchmarkException("Type '%s' of parameter field '%s' has no recognized "
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/
stack.py 25 self.parameters = ResultSet([('member', Parameter)])
178 class Parameter(object):
196 return "Parameter:\"%s\"=\"%s\"" % (self.key, self.value)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
parametergroup.py 36 if name == 'Parameter':
39 self._current_param = Parameter(self)
65 param = Parameter()
71 class Parameter(object):
73 Represents a RDS Parameter
95 return 'Parameter:%s' % self.name
193 value = property(get_value, set_value, 'The value of the parameter')
  /external/guava/guava/src/com/google/common/reflect/
Parameter.java 31 * Represents a method or constructor parameter.
37 public final class Parameter implements AnnotatedElement {
44 Parameter(
55 /** Returns the type of the parameter. */
60 /** Returns the {@link Invokable} that declares this parameter. */
126 if (obj instanceof Parameter) {
127 Parameter that = (Parameter) obj;
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
Parameter.java 32 * Models a method or constructor parameter.
37 class Parameter {
46 public Parameter(Type type, Annotation[] annotations) {
83 * Returns the Guice {@link Key} for this parameter.
159 "Parameter has multiple binding annotations: %s and %s", bindingAnnotation, annotation);
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
RequestTemplate.java 43 private static class Parameter<T> {
47 private Parameter(CaptureRequest.Key<T> key, Supplier<T> value) {
59 private final List<Parameter<?>> mParameters;
79 mParameters.add(new Parameter<T>(key, value));
102 for (Parameter param : mParameters) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 286 Parameter = Struct.new( :name, :default )
287 class Parameter
312 when Parameter then name
313 else Parameter.new( name.to_s )
  /external/mesa3d/src/mesa/main/
APIspec.py 190 param = Parameter(param_node, self._gltype, size)
204 expanded_params.append(Parameter(child, self._gltype))
215 """Parse and initialize parameter descriptions."""
237 """Return the named parameter."""
297 class Parameter(object):
298 """A parameter of a function."""
310 raise SpecError("parameter %s has unresolved type" % self.name)
321 Descriptions of the same parameter are concatenated.
370 """Return a flat list of all descriptions of the named parameter."""
380 """Return true if the parameter is checked in all possible pathes.""
    [all...]
  /external/v8/src/compiler/
code-stub-assembler.cc 81 Node* CodeStubAssembler::Parameter(int value) {
82 return raw_assembler_->Parameter(value);
raw-machine-assembler.cc 29 // Add an extra input for the JSFunction parameter to the start node.
33 AddNode(common()->Parameter(static_cast<int>(i)), graph->start());
50 Node* RawMachineAssembler::Parameter(size_t index) {
  /frameworks/native/services/sensorservice/
Fusion.h 75 struct Parameter {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 31 * parameter instances to centralize each parameter's behavior.
35 private static final Map<String, Parameter> PARAMETERS
36 = new TreeMap<String, Parameter>(String.CASE_INSENSITIVE_ORDER);
88 * the validate parameter to true. Has no effect when validate is false.
125 PARAMETERS.put("error-handler", new Parameter() {
138 * Bulk alias to set the following parameter values:
208 PARAMETERS.put("schema-location", new Parameter() {
224 PARAMETERS.put("schema-type", new Parameter() {
299 interface Parameter {
331 Parameter parameter = PARAMETERS.get(name); local
336 Parameter parameter = PARAMETERS.get(name); local
352 Parameter parameter = PARAMETERS.get(name); local
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 40 /// template names or an already-substituted template template parameter pack.
113 /// parameter pack.
115 /// This kind of template names occurs when the parameter pack has been
121 TemplateTemplateParmDecl *Parameter;
125 SubstTemplateTemplateParmPackStorage(TemplateTemplateParmDecl *Parameter,
129 Parameter(Parameter), Arguments(Arguments) { }
131 /// \brief Retrieve the template template parameter pack being substituted.
133 return Parameter;
137 /// parameter was substituted
    [all...]
  /external/v8/test/cctest/compiler/
codegen-tester.h 90 // to the constructed IR graph. Instead it passes a pointer to the parameter
94 Node* Parameter(size_t index) {
102 // Store node is provided as a parameter. By storing the return value in
106 RawMachineAssembler::Parameter(return_parameter_index_), input,
177 : Load(p0, RawMachineAssembler::Parameter(0));
180 : Load(p1, RawMachineAssembler::Parameter(1));
183 : Load(p2, RawMachineAssembler::Parameter(2));
186 : Load(p3, RawMachineAssembler::Parameter(3));
236 : Load(p0, RawMachineAssembler::Parameter(0));
239 : Load(p1, RawMachineAssembler::Parameter(1))
    [all...]
test-instruction.cc 66 Node* Parameter(int32_t which) {
67 Node* node = graph.NewNode(common.Parameter(which));
test-machine-operator-reducer.cc 173 Node* p = Parameter();
198 Node* p = Parameter();
208 Node* Parameter(int32_t index = 0) {
209 return graph.NewNode(common.Parameter(index), graph.start());
237 Node* x = R.Parameter();
263 Node* x = R.Parameter();
289 Node* x = R.Parameter();
312 Node* x = R.Parameter();
333 Node* x = R.Parameter();
354 Node* x = R.Parameter();
    [all...]
test-representation-change.cc 80 Node* Parameter(int index = 0) {
81 Node* n = graph()->NewNode(common()->Parameter(index), graph()->start());
90 Node* n = Parameter(0);
98 Node* n = Parameter(0);
414 Node* n = r.Parameter();
429 Node* n = r.Parameter();
graph-builder-tester.h 70 Node* Parameter(size_t index) {
295 parameters_[i] = this->NewNode(common()->Parameter(i), graph()->start());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 54 * A template parameter editable and edited by the user.
61 class Parameter {
85 * Constraints that can be applied to a parameter which helps the UI add a
93 * means that the parameter should designate a name that does not
101 * means that the parameter should designate a name that already exists as
155 /** The template defining the parameter */
158 /** The type of parameter */
162 /** The unique id of the parameter (not displayed to the user) */
166 /** The display name for this parameter */
171 * The initial value for this parameter (see also {@link #suggest} for mor
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 107 for (Map.Entry parameter : parameters) {
113 into.write(percentEncode(toString(parameter.getKey()))
116 into.write(percentEncode(toString(parameter.getValue()))
123 public static List<Parameter> decodeForm(String form) {
124 List<Parameter> list = new ArrayList<Parameter>();
137 list.add(new Parameter(name, value));
198 public static List<Parameter> newList(String... parameters) {
199 List<Parameter> list = new ArrayList<Parameter>(parameters.length / 2)
    [all...]

Completed in 3040 milliseconds

1 2 3 4 5