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

12 3 4 5 6 7 8 91011>>

  /external/v8/src/heap/
gc-idle-time-handler.h 28 result.parameter = 0;
35 result.parameter = 0;
42 result.parameter = step_size;
49 result.parameter = 0;
56 result.parameter = 0;
63 result.parameter = 0;
70 intptr_t parameter; member in class:v8::internal::GCIdleTimeAction
  /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/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionServiceTest.java 92 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter);
146 private static final String parameter = "parameter"; field in class:ActionServiceTest
203 public static String KEY_PARAMETER = "parameter";
205 protected TestChatAction(final String key, final String parameter) {
207 this.actionParameters.putString(KEY_PARAMETER, parameter);
ActionServiceSystemTest.java 57 assertEquals("Expect correct action parameter", parameter, test.parameter);
69 assertEquals("Expect correct action parameter", parameter, test.parameter);
81 assertEquals("Expect correct action parameter", parameter, test.parameter);
95 final TestChatAction initial = new TestChatAction(monitor.getActionKey(), parameter);
283 private static final String parameter = "parameter"; field in class:ActionServiceSystemTest
332 public final String parameter; field in class:ActionServiceSystemTest.TestChatAction
391 public final String parameter; field in class:ActionServiceSystemTest.TestChatActionOther
    [all...]
ActionTest.java 34 private static final String parameter = "parameter"; field in class:ActionTest
54 mAction = new TestChatAction(mActionKey, parameter);
266 protected TestChatAction(final String key, final String parameter) {
268 this.parameter = parameter;
271 public final String parameter; field in class:ActionTest.TestChatAction
278 assertEquals("Check parameter", parameter, ActionTest.parameter);
    [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
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeUtility.java 174 * Returns the named parameter of a header field. If name is null the first
175 * parameter is returned, or if there are no additional parameters in the
176 * field the entire field is returned. Otherwise the named parameter is
177 * searched for in a case insensitive fashion and returned. If the parameter
189 * @return the entire header (if name=null), the found parameter, or null
206 String parameter = parameterParts[1].trim(); local
207 if (parameter.startsWith("\"") && parameter.endsWith("\"")) {
208 return parameter.substring(1, parameter.length() - 1)
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 83 parameter(); method
87 final public void parameter() throws ParseException { method in class:ContentTypeParser
  /art/compiler/optimizing/
bounds_check_elimination_test.cc 300 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
301 entry->AddInstruction(parameter);
312 HNullCheck* null_check = new (&allocator) HNullCheck(parameter, 0);
323 null_check = new (&allocator) HNullCheck(parameter, 0);
334 null_check = new (&allocator) HNullCheck(parameter, 0);
373 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); local
374 entry->AddInstruction(parameter);
398 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0);
415 null_check = new (allocator) HNullCheck(parameter, 0);
508 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot) local
751 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); local
871 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
    [all...]
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 200 * Set kernel parameter
246 Convert seekBar progress parameter (0-100 in range) to parameter for each intrinsic filter.
356 int[] parameter = {50, 100, 25}; local
359 float f = getFilterParameter(parameter[mode]);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 200 * Set kernel parameter
246 Convert seekBar progress parameter (0-100 in range) to parameter for each intrinsic filter.
356 int[] parameter = {50, 100, 25}; local
359 float f = getFilterParameter(parameter[mode]);
  /development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
MainActivity.java 200 * Set kernel parameter
246 Convert seekBar progress parameter (0-100 in range) to parameter for each intrinsic filter.
356 int[] parameter = {50, 100, 25}; local
359 float f = getFilterParameter(parameter[mode]);
  /external/flac/libFLAC/
bitreader.c 683 FLAC__bool FLAC__bitreader_read_rice_signed(FLAC__BitReader *br, int *val, unsigned parameter)
690 FLAC__ASSERT(parameter <= 31);
697 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, parameter))
701 uval = (msbs << parameter) | lsbs;
711 FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter)
725 FLAC__ASSERT(parameter < 32);
731 if(parameter == 0) {
743 FLAC__ASSERT(parameter > 0);
778 x = b >> (FLAC__BITS_PER_WORD - parameter);
779 if(parameter <= ucbits)
781 b <<= parameter; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 129 for (MethodParameter parameter: method.getParameters()) {
130 annotationSetPool.intern(parameter.getAnnotations());
138 // this also handles parameter names, which aren't directly tied to the MethodImplementation, even though the debug items are
  /external/v8/src/
global-handles.cc 90 parameter_or_next_free_.parameter = NULL;
187 // Callback parameter accessors.
188 void set_parameter(void* parameter) {
190 parameter_or_next_free_.parameter = parameter;
192 void* parameter() const { function in class:v8::internal::GlobalHandles::Node
194 return parameter_or_next_free_.parameter;
207 void MakeWeak(void* parameter, WeakCallback weak_callback) {
212 set_parameter(parameter);
218 void* p = parameter();
293 void* parameter; member in union:v8::internal::GlobalHandles::Node::__anon19143
    [all...]
scopes.h 125 // Declare a parameter in this scope. When there are duplicated
314 // Parameters. The left-most parameter has index 0.
316 Variable* parameter(int index) const { function in class:v8::internal::Scope
400 // During formal parameter list parsing the scope only contains
402 // "this" is an invalid parameter name and "arguments" is invalid parameter
442 // Parameter list in source order.
514 // variable is bound. These are returned in the output parameter *binding_kind
560 // parameter should be set to the calling context of 'eval'.
596 // parameter is the context in which eval was called. In all othe
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 75 ModelClass parameter = method.getParameterTypes()[0]; local
76 if (parameter.isInt() || parameter.isLong()) {
78 parameters.add(parameter);
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.h 114 // optional string parameter = 2;
118 inline const ::std::string& parameter() const;
124 inline void set_allocated_parameter(::std::string* parameter);
431 // optional string parameter = 2;
447 inline const ::std::string& CodeGeneratorRequest::parameter() const { function in class:google::protobuf::compiler::CodeGeneratorRequest
448 // @@protoc_insertion_point(field_get:google.protobuf.compiler.CodeGeneratorRequest.parameter)
457 // @@protoc_insertion_point(field_set:google.protobuf.compiler.CodeGeneratorRequest.parameter)
465 // @@protoc_insertion_point(field_set_char:google.protobuf.compiler.CodeGeneratorRequest.parameter)
473 // @@protoc_insertion_point(field_set_pointer:google.protobuf.compiler.CodeGeneratorRequest.parameter)
480 // @@protoc_insertion_point(field_mutable:google.protobuf.compiler.CodeGeneratorRequest.parameter)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 143 for (MethodParameter parameter: methodParameters) {
144 writer.write(parameter.getType());
173 for (MethodParameter parameter: methodParameters) {
174 String type = parameter.getType();
261 for (MethodParameter parameter: parameters) {
262 String parameterType = parameter.getType();
263 String parameterName = parameter.getName();
264 Collection<? extends Annotation> annotations = parameter.getAnnotations();
  /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...]
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 280 fail("Should throw on non-Key parameter");
299 public Object parameter; field in class:ProviderTest.MockSpi
301 public MockSpi(MockKey parameter) {
302 this.parameter = parameter;
538 public boolean supportsParameter(Object parameter) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ActivityPage.java 135 Parameter parameter = metadata.getParameter(IS_LAUNCHER); local
136 if (parameter == null) {
TemplateMetadata.java 74 private final List<Parameter> mParameters;
75 private final Map<String, Parameter> mParameterMap;
89 mParameters = new ArrayList<Parameter>(parameters.getLength());
90 mParameterMap = new HashMap<String, Parameter>(parameters.getLength());
93 Parameter parameter = new Parameter(this, element); local
94 mParameters.add(parameter);
95 if (parameter.id != null) {
96 mParameterMap.put(parameter.id, parameter)
380 Parameter parameter = mParameterMap.get(attribute.getName()); local
    [all...]
  /external/boringssl/src/ssl/
s3_clnt.c 1067 CBS server_key_exchange, server_key_exchange_orig, parameter; local
    [all...]

Completed in 2162 milliseconds

12 3 4 5 6 7 8 91011>>