HomeSort by relevance Sort by last modified time
    Searched refs:Parameter (Results 51 - 75 of 85) sorted by null

1 23 4

  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 76 import com.sun.javadoc.Parameter;
484 for (Parameter parameter : member.parameters()) {
485 SigParameter p = new SigParameter(convertTypeReference(parameter
487 p.setAnnotations(convertAnnotations(parameter.annotations()));
  /external/doclava/src/com/google/doclava/
Converter.java 173 private static ParameterInfo convertParameter(Parameter p, SourcePosition pos, boolean isVarArg) {
181 private static ParameterInfo[] convertParameters(Parameter[] p, ExecutableMemberDoc m) {
  /external/jdiff/src/jdiff/
RootDocToXML.java 482 Parameter[] params = ct[i].parameters();
554 // Generate the parameter elements, if any
555 Parameter[] params = md[i].parameters();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 83 private Parameter mThemeParameter;
353 Parameter parameter = NewTemplatePage.getParameter(mThemeCombo); local
354 assert parameter == mThemeParameter;
355 if (parameter != null) {
362 parameter.value = optionId;
363 parameter.edited = optionId != null && !optionId.toString().isEmpty();
364 mValues.parameters.put(parameter.id, optionId);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp_unittest.py 137 parameter = cpp_style.Parameter('ExceptionCode', 13, 1)
138 self.assertEquals(parameter.type, 'ExceptionCode')
139 self.assertEquals(parameter.name, '')
140 self.assertEquals(parameter.row, 1)
143 parameter = cpp_style.Parameter('PassRefPtr<MyClass> parent', 19, 1)
144 self.assertEquals(parameter.type, 'PassRefPtr<MyClass>')
145 self.assertEquals(parameter.name, 'parent')
146 self.assertEquals(parameter.row, 1
    [all...]
cpp.py 380 class Parameter(object):
381 """Information about one function parameter."""
382 def __init__(self, parameter, parameter_name_index, row):
383 self.type = parameter[:parameter_name_index].strip()
384 # Remove any initializers from the parameter name (e.g. int i = 5).
385 self.name = sub(r'=.*', '', parameter[parameter_name_index:]).strip()
390 """Returns the parameter name in the lower with underscores format."""
440 """Converts a parameter list to a skeleton version.
442 The skeleton only has one word for the parameter name, one word for the type,
443 and commas after each parameter and only there. Everything in the skeleto
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 
  /external/ceres-solver/docs/
build.tex 121 Parameter blocks 22122 22122
modeling.tex 5 Given parameter blocks $\left[x_{i_1}, \hdots , x_{i_k}\right]$, a
27 The signature of the function (number and sizes of input parameter blocks and number of outputs)
28 is stored in \texttt{parameter\_block\_sizes\_} and \texttt{num\_residuals\_} respectively. User
35 \texttt{parameters} is an array of pointers to arrays containing the various parameter blocks. parameters has the same number of elements as parameter\_block\_sizes\_. Parameter blocks are in the same order as parameter\_block\_sizes\_.
41 \texttt{jacobians} is an array of size \texttt{parameter\_block\_sizes\_} containing pointers to storage for Jacobian matrices corresponding to each parameter block. The Jacobian matrices are in the same order as \texttt{parameter\_block\_sizes\_}. \texttt{jacobians[i]} is an array that contains \texttt{num\_residuals\_} $\time (…)
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 13 ATTRIBUTE Ascend-FCP-Parameter 119 string
  /external/v8/src/arm/
lithium-arm.h 143 V(Parameter) \
434 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 138 V(Parameter) \
416 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
    [all...]
  /external/v8/src/mips/
lithium-mips.h 143 V(Parameter) \
433 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
    [all...]
  /external/v8/src/x64/
lithium-x64.h 143 V(Parameter) \
435 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 245 * Looks for the first occurence of |directive|:parameter in |sourceText|.
246 * Parameter can be an empty string.
249 * |remainingText| - |sourceText| with |directive|:parameter removed,
251 * |parameter| - the parameter itself.
265 'parameter': matchInfo[1]};
270 * the parameter, to negate it. Before is more natural, after
274 * '-' will be removed from |parameter|, if present.
283 var negationInfo = /^(-?)(\S*?)$/.exec(matchInfo.parameter);
284 matchInfo.parameter = negationInfo[2]
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 212 class Parameter(Node):
250 # TODO(nnorwitz): merge with Parameter in some way?
446 # some sort of variable declaration, parameter, or return value.
610 p = Parameter(first_token.start, end, name,
    [all...]
  /external/v8/src/
hydrogen-instructions.h 148 V(Parameter) \
    [all...]
messages.js 224 "strict_param_name", ["Parameter name eval or arguments is not allowed in strict mode"],
225 "strict_param_dupe", ["Strict mode function may not have duplicate parameter names"],
500 // Check parameter.
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 35 // $e401 ; Fixed Disk Parameter Table
44 // $efc7 ; Diskette Controller Parameter Table
48 // $f0a4 ; MDA/CGA Video Parameter Table (INT 1Dh)
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 51 /// the default argument of a parameter to determine whether it
241 // 4) to the parameter type. The default argument expression has
243 // a declaration of a variable of the parameter type, using the
258 // Okay: add the default argument to the parameter
261 // We have already instantiated this parameter; provide each of the
269 // We're done tracking this parameter's instantiations.
277 /// provided for a function parameter is well-formed. If so, attach it
278 /// to the parameter declaration.
296 // Check for unexpanded parameter packs.
313 /// argument for a function parameter, but we can't parse it ye
    [all...]
SemaInit.cpp     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex     [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 2540 milliseconds

1 23 4