HomeSort by relevance Sort by last modified time
    Searched full:parameter (Results 151 - 175 of 12874) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/kernel-headers/original/linux/
stringify.h 4 /* Indirect stringification. Doing two levels allows the parameter to be a
  /external/linux-tools-perf/util/include/linux/added/
stringify.h 4 /* Indirect stringification. Doing two levels allows the parameter to be a
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_RWFromFile.3 
  /libcore/luni/src/main/java/java/security/spec/
ECGenParameterSpec.java 21 * The parameter specification used to generate elliptic curve domain parameters.
30 * predefined name of the to-be-generated domain parameter.
33 * the name of the elliptic curve domain parameter.
44 * curve domain parameter.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_esp.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ah.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_esp.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ah.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_esp.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ah.h 6 u_int32_t spis[2]; /* Security Parameter Index */
  /external/webrtc/src/modules/audio_processing/ns/
defines.h 37 #define LRT_TAVG (float)0.50 // tavg parameter for LRT (previously 0.90)
38 #define SPECT_FL_TAVG (float)0.30 // tavg parameter for spectral flatness measure
39 #define SPECT_DIFF_TAVG (float)0.30 // tavg parameter for spectral difference measure
40 #define PRIOR_UPDATE (float)0.10 // update parameter of prior model
41 #define NOISE_UPDATE (float)0.90 // update parameter for noise
42 #define SPEECH_UPDATE (float)0.99 // update parameter when likely speech
43 #define WIDTH_PR_MAP (float)4.0 // width parameter in sigmoid map for prior model
  /frameworks/av/libvideoeditor/vss/inc/
M4PTO3GPP_ErrorCodes.h 38 * The output video format parameter is undefined */
41 * The output video frame size parameter is undefined */
45 * The output video bit-rate parameter is undefined */
49 * The output video frame size parameter is incompatible with H263 encoding */
60 * The output video format parameter is undefined */
84 * The output file size parameter is undefined */
96 * The output audio padding parameter is undefined */
  /external/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 31 private static final Pattern PARAMETER = Pattern.compile(
57 Matcher parameter = PARAMETER.matcher(string); local
58 for (int s = typeSubtype.end(); s < string.length(); s = parameter.end()) {
59 parameter.region(s, string.length());
60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type.
62 String name = parameter.group(1);
65 charset = parameter.group(2) != null
66 ? parameter.group(2) // Value is a token.
67 : parameter.group(3); // Value is a quoted string
    [all...]
  /external/chromium_org/sync/engine/
build_commit_command.h 36 // The batch_commit_set parameter contains a set of references to the items
39 // The commit_message parameter is an output parameter which will contain the
66 // Input parameter; see constructor comment.
69 // Output parameter; see constructor comment.
  /external/clang/test/SemaCXX/
warn-dangling-field.cpp 15 : x(i), // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}}
16 y(&i) {} // expected-warning {{initializing pointer member 'y' with the stack address of parameter 'i'}}
17 S(int &i) : x(i), y(&i) {} // no-warning: reference parameter
18 S(int *i) : x(*i), y(i) {} // no-warning: pointer parameter
33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}}
  /libcore/luni/src/main/java/java/util/
IllegalFormatConversionException.java 22 * An {@code IllegalFormatConversionException} will be thrown when the parameter
39 * of the mismatched conversion and corresponding parameter.
44 * the corresponding parameter.
55 * Returns the class of the mismatched parameter.
57 * @return the class of the mismatched parameter.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
argument.hpp 18 // Boost.Runtime.Parameter
46 argument( parameter const& p, rtti::id_t value_type )
55 unit_test::readonly_property<parameter const&> p_formal_parameter;
67 explicit typed_argument( parameter const& p )
70 typed_argument( parameter const& p, T const& t )
  /prebuilts/sdk/api/
4.xml     [all...]
5.xml     [all...]
6.xml     [all...]
7.xml     [all...]
  /external/chromium_org/chrome/test/webdriver/commands/
command.h 64 // Returns whether the command has a parameter with the given |key|.
67 // Returns true if the command parameter with the given |key| exists and is
71 // Returns the command parameter with the given |key| as a UTF-16 string.
75 // Provides the command parameter with the given |key| as a UTF-8 string.
79 // Provides the command parameter with the given |key| as a ASCII string.
83 // Provides the command parameter with the given |key| as a boolean. Returns
84 // false if there is no such parameter, or if it is not a boolean.
87 // Provides the command parameter with the given |key| as a int. Returns
88 // false if there is no such parameter, or if it is not a int.
91 // Provides the command parameter with the given |key| as a double. Return
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 35 import com.android.ide.eclipse.adt.internal.wizards.templates.Parameter.Constraint;
36 import com.android.ide.eclipse.adt.internal.wizards.templates.Parameter.Type;
110 // TODO: Move decorators to the Parameter objects?
232 List<Parameter> parameters = template.getParameters();
233 for (Parameter parameter : parameters) {
234 Parameter.Type type = parameter.type;
236 if (type == Parameter.Type.SEPARATOR) {
242 String id = parameter.id
765 Parameter parameter = (Parameter) button.getData(); local
859 Parameter parameter = getParameter(control); local
928 Parameter parameter = getParameter(control); local
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 79 * clearing parameter bindings.
92 * @param pos parameter index, 1-based
93 * @param value value of parameter
100 * @param pos parameter index, 1-based
101 * @param value value of parameter
108 * @param pos parameter index, 1-based
109 * @param value value of parameter
116 * @param pos parameter index, 1-based
117 * @param value value of parameter, may be null
124 * @param pos parameter index, 1-base
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 312 * get the parameter (do a name lookup) and return null if none exists.
313 * @param parmname Name of the parameter to get.
314 * @return Parameter of the given name (null if none exists).
322 * Get the method parameter.
323 * @return Method parameter.
354 * Get the urse parameter.
355 * @return User parameter (user= phone or user=ip).
445 * cannot be distinguished by a BNF. Thus, a URL parameter,
449 * The user parameter value "phone" indicates that the user
451 * parameter, recipients of SIP URLs MAY interpret the pre-
    [all...]

Completed in 1027 milliseconds

1 2 3 4 5 67 8 91011>>