HomeSort by relevance Sort by last modified time
    Searched defs:parameter (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /external/chromium_org/chrome/browser/metrics/variations/
variations_service.cc 117 // Gets the restrict parameter from |local_state| or from Chrome OS settings in
120 std::string parameter; local
123 chromeos::kVariationsRestrictParameter, &parameter);
126 parameter = local_state->GetString(prefs::kVariationsRestrictParameter);
128 return parameter;
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
uperf.cpp 264 char* parameter = strchr( name, '@' ); local
265 if (parameter) {
266 *parameter = 0;
267 parameter += 1;
270 res = runTest( name, parameter );
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.h 105 // Some generators accept extra parameters. You can specify this parameter
110 // "parameter".
122 // This will pass "enable_bar,enable_baz" as the parameter to the generator.
139 // plugin [--out=OUTDIR] [--parameter=PARAMETER] PROTO_FILES < DESCRIPTORS
141 // parameter); if omitted, the current directory should be used. --parameter
142 // gives the generator parameter, if any was provided. The PROTO_FILES list
239 const string& parameter,
318 string parameter; member in struct:google::protobuf::compiler::CommandLineInterface::OutputDirective
    [all...]
plugin.pb.h 115 // optional string parameter = 2;
119 inline const ::std::string& parameter() const;
125 inline void set_allocated_parameter(::std::string* parameter);
430 // optional string parameter = 2;
446 inline const ::std::string& CodeGeneratorRequest::parameter() const { function in class:google::protobuf::compiler::CodeGeneratorRequest
487 inline void CodeGeneratorRequest::set_allocated_parameter(::std::string* parameter) {
491 if (parameter) {
493 parameter_ = parameter;
  /external/chromium_org/v8/src/
global-handles.cc 113 parameter_or_next_free_.parameter = NULL;
212 // Callback parameter accessors.
213 void set_parameter(void* parameter) {
215 parameter_or_next_free_.parameter = parameter;
217 void* parameter() const { function in class:v8::internal::GlobalHandles::Node
219 return parameter_or_next_free_.parameter;
232 void MakeWeak(void* parameter,
236 set_parameter(parameter);
252 void* par = parameter();
311 void* parameter; member in union:v8::internal::GlobalHandles::Node::__anon17025
    [all...]
scopes.h 147 // Declare a parameter in this scope. When there are duplicated
339 // Parameters. The left-most parameter has index 0.
341 Variable* parameter(int index) const { function in class:v8::internal::Scope
425 // During formal parameter list parsing the scope only contains
427 // "this" is an invalid parameter name and "arguments" is invalid parameter
467 // Parameter list in source order.
535 // variable is bound. These are returned in the output parameter *binding_kind
581 // parameter should be set to the calling context of 'eval'.
617 // parameter is the context in which eval was called. In all othe
    [all...]
  /external/icu4c/tools/ctestfw/
uperf.cpp 274 char* parameter = strchr( name, '@' ); local
275 if (parameter) {
276 *parameter = 0;
277 parameter += 1;
280 res = runTest( name, parameter );
  /external/ppp/pppd/plugins/
winbind.c 391 char *message, *parameter; local
398 if (!(parameter = strstr(buffer, ": "))) {
402 parameter[0] = '\0';
403 parameter++;
404 parameter[0] = '\0';
405 parameter++;
411 if (strcasecmp(parameter, "Yes") == 0) {
420 if (strhex_to_str(nt_key, 32, parameter) == 16) {
429 *error_string = strdup(parameter);
433 *error_string = strdup(parameter);
    [all...]
  /external/v8/src/
global-handles.cc 93 parameter_or_next_free_.parameter = NULL;
164 // Callback parameter accessors.
165 void set_parameter(void* parameter) {
167 parameter_or_next_free_.parameter = parameter;
169 void* parameter() const { function in class:v8::internal::GlobalHandles::Node
171 return parameter_or_next_free_.parameter;
185 void* parameter,
195 set_parameter(parameter);
219 void* par = parameter();
271 void* parameter; member in union:v8::internal::GlobalHandles::Node::__anon28767
    [all...]
scopes.h 140 // Declare a parameter in this scope. When there are duplicated
322 // Parameters. The left-most parameter has index 0.
324 Variable* parameter(int index) const { function in class:v8::internal::Scope
401 // During formal parameter list parsing the scope only contains
403 // "this" is an invalid parameter name and "arguments" is invalid parameter
441 // Parameter list in source order.
502 // variable is bound. These are returned in the output parameter *binding_kind
548 // parameter should be set to the calling context of 'eval'.
583 // parameter is the context in which eval was called. In all othe
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericReflectionCornerCases.java 49 Type parameter = parameterTypes[0]; local
50 assertInstanceOf(ParameterizedType.class, parameter);
51 ParameterizedType paramType = (ParameterizedType) parameter;
92 Type parameter = parameterTypes[0]; local
93 assertInstanceOf(ParameterizedType.class, parameter);
94 ParameterizedType paramType = (ParameterizedType) parameter;
149 Type parameter = parameterTypes[0]; local
150 assertInstanceOf(ParameterizedType.class, parameter);
151 ParameterizedType paramType = (ParameterizedType) parameter;
201 Type parameter = parameterTypes[0] local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 175 * Returns the named parameter of a header field. If name is null the first
176 * parameter is returned, or if there are no additional parameters in the
177 * field the entire field is returned. Otherwise the named parameter is
178 * searched for in a case insensitive fashion and returned. If the parameter
190 * @return the entire header (if name=null), the found parameter, or null
207 String parameter = parameterParts[1].trim(); local
208 if (parameter.startsWith("\"") && parameter.endsWith("\"")) {
209 return parameter.substring(1, parameter.length() - 1)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 83 parameter(); method
87 final public void parameter() throws ParseException { method in class:ContentTypeParser
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineTraceEventProcessor.cpp 202 const TimelineTraceEventProcessor::TraceValueUnion& TimelineTraceEventProcessor::TraceEvent::parameter(const char* name, TraceValueTypes expectedType) const function in class:WebCore::TimelineTraceEventProcessor::TraceEvent
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linuxthreads.cc 241 void *parameter; member in struct:ListerParams
488 args->result = args->callback(args->parameter, num_threads,
514 * passes them to the 'callback' along with the 'parameter' pointer; at the
532 int ListAllProcessThreads(void *parameter,
566 args.parameter = parameter;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linuxthreads.cc 241 void *parameter; member in struct:ListerParams
488 args->result = args->callback(args->parameter, num_threads,
514 * passes them to the 'callback' along with the 'parameter' pointer; at the
532 int ListAllProcessThreads(void *parameter,
566 args.parameter = parameter;
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.h 114 // optional string parameter = 2;
118 inline const ::std::string& parameter() const;
441 // optional string parameter = 2;
451 inline const ::std::string& CodeGeneratorRequest::parameter() const { function in class:google::protobuf::compiler::CodeGeneratorRequest
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 72 private final List<Parameter> mParameters;
73 private final Map<String, Parameter> mParameterMap;
85 mParameters = new ArrayList<Parameter>(parameters.getLength());
86 mParameterMap = new HashMap<String, Parameter>(parameters.getLength());
89 Parameter parameter = new Parameter(this, element); local
90 mParameters.add(parameter);
91 if (parameter.id != null) {
92 mParameterMap.put(parameter.id, parameter)
345 Parameter parameter = mParameterMap.get(attribute.getName()); local
    [all...]
  /external/chromium/base/
string_util.cc 50 ReplacementOffset(uintptr_t parameter, size_t offset)
51 : parameter(parameter),
54 // Index of the parameter.
55 uintptr_t parameter; member in struct:__anon4177::ReplacementOffset
63 return elem1.parameter < elem2.parameter;
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 95 * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&'
255 // parsed parameter-list
309 // We have already added parameter(s) with this name, so add to the list
343 // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.")
558 // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present.
578 // parameter is required, and we can't just fallback to PLAINTEXT
579 throw new OAuthException('No signature method parameter. This parameter is required');
667 'Missing timestamp parameter. The parameter is required
826 $parameter = OAuthUtil::urldecode_rfc3986($split[0]); variable
    [all...]
  /external/chromium_org/base/strings/
string_util.cc 48 ReplacementOffset(uintptr_t parameter, size_t offset)
49 : parameter(parameter),
52 // Index of the parameter.
53 uintptr_t parameter; member in struct:__anon6311::ReplacementOffset
61 return elem1.parameter < elem2.parameter;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 95 * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&'
255 // parsed parameter-list
309 // We have already added parameter(s) with this name, so add to the list
343 // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.")
558 // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present.
578 // parameter is required, and we can't just fallback to PLAINTEXT
579 throw new OAuthException('No signature method parameter. This parameter is required');
667 'Missing timestamp parameter. The parameter is required
826 $parameter = OAuthUtil::urldecode_rfc3986($split[0]); variable
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
OutputHLSL.cpp 2656 const TType &parameter = ctorParameters[0]; local
2704 const TType &parameter = ctorParameters[parameterIndex]; local
    [all...]
  /external/qemu/hw/
bt-hid.c 205 uint8_t type, parameter; local
211 parameter = data[0] & 0xf;
216 switch (parameter) {
224 if (len != 1 || (parameter != BT_HC_VIRTUAL_CABLE_UNPLUG &&
229 switch (parameter) {
258 if (((parameter & 8) && len != 3) ||
259 (!(parameter & 8) && len != 1) ||
264 if (parameter & 8)
268 switch (parameter & 3) {
290 (parameter & 3) == BT_DATA_OTHER |
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 237 private LinkedHashMap<String, ArrayList<Parameter>> mParamsMap =
238 new LinkedHashMap<String, ArrayList<Parameter>>();
284 * Adds a {@link Parameter} to this property.
285 * @param param The parameter that should be added.
287 public void addParameter(Parameter param) {
288 ArrayList<Parameter> params = mParamsMap.get(param.name);
290 params = new ArrayList<Parameter>();
297 * Returns the set of parameter names for this property.
298 * @return The set of parameter names for this property.
310 public List<Parameter> getParameters(String name)
510 Parameter parameter = null; local
545 Parameter parameter = null; local
    [all...]

Completed in 1677 milliseconds

12 3 4 5 6