HomeSort by relevance Sort by last modified time
    Searched full:avalue (Results 26 - 50 of 61) sorted by null

12 3

  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 53 public SimpleClass(int aValue, String bValue) {
54 a = aValue;
Support_GetPutFieldsDeprecated.java 55 public SimpleClass(int aValue, String bValue) {
56 a = aValue;
Support_GetPutFieldsDefaulted.java 64 public SimpleClass(int aValue, String bValue) {
65 a = aValue;
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.mm 124 void ObjcField::setValueToInstance(ExecState* exec, const Instance* instance, JSValue aValue) const
127 id value = convertValueToObjcObject(exec, aValue);
148 void ObjcArray::setValueAt(ExecState* exec, unsigned int index, JSValue aValue) const
162 ObjcValue oValue = convertValueToObjcValue (exec, aValue, ObjcObjectType);
objc_runtime.h 81 virtual void setValueAt(ExecState *exec, unsigned int index, JSValue aValue) const;
objc_utility.mm 206 JSValue aValue = jsString(exec, u);
208 return aValue;
objc_instance.mm 383 bool ObjcInstance::setValueOfUndefinedField(ExecState* exec, const Identifier& property, JSValue aValue)
397 ObjcValue objcValue = convertValueToObjcValue(exec, aValue, ObjcObjectType);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaFieldJSC.cpp 181 void JavaField::setValueToInstance(ExecState* exec, const Instance* i, JSValue aValue) const
184 jvalue javaValue = convertValueToJValue(exec, i->rootObject(), aValue, m_type, typeClassName());
186 LOG(LiveConnect, "JavaField::setValueToInstance setting value %s to %s", UString(name().impl()).utf8().data(), aValue.toString(exec).ascii().data());
JavaArrayJSC.cpp 73 void JavaArray::setValueAt(ExecState* exec, unsigned index, JSValue aValue) const
86 jvalue aJValue = convertValueToJValue(exec, m_rootObject.get(), aValue, arrayType, javaClassName);
  /dalvik/vm/reflect/
Annotation.cpp 496 AnnotationValue avalue; local
498 if (!processAnnotationValue(clazz, &ptr, &avalue,
503 Object* obj = (Object*)avalue.value.l;
656 AnnotationValue avalue; local
662 if (!processAnnotationValue(clazz, pPtr, &avalue, kAllObjects)) {
666 valueObj = (Object*)avalue.value.l;
1165 AnnotationValue avalue; local
1441 AnnotationValue avalue; local
1498 AnnotationValue avalue; local
    [all...]
  /external/libffi/src/
java_raw_api.c 301 void **avalue = (void**) alloca (cif->nargs * sizeof (void*)); local
302 ffi_java_raw_to_ptrarray (cif, raw, avalue);
303 ffi_call (cif, fn, rvalue, avalue);
311 void **avalue, void *user_data)
316 ffi_java_ptrarray_to_raw (cif, avalue, raw);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntArray.h 60 - (void)replaceInteger:(NSInteger)aValue AtIndex:(NSUInteger)anIndex;
  /external/clang/test/SemaObjC/
atomoic-property-synnthesis-rules.m 350 - (void) setX: (int) aValue
352 x = aValue;
356 - (void) setY: (int) aValue
358 y = aValue;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST.stg 153 - (STAttrMap *) setObject:(id)aValue forKey:(NS*)String attrName
239 - (STAttrMap *) setObject:(id)aValue forKey:(NSString *)aAttrName
241 [super setObject:aValue forKey:aAttrName];
245 - (STAttrMap *) setObjectWithInt:(NSInteger)aValue forKey:(NSString *)aAttrName
247 [super setObject:[NSNumber numberWithInteger:aValue] forKey:aAttrName];
  /external/libffi/darwin-x86/
ffi.h 229 ffi_raw *avalue);
242 ffi_java_raw *avalue);
356 void **avalue);
  /external/libffi/include/
ffi.h.in 229 ffi_raw *avalue);
242 ffi_java_raw *avalue);
356 void **avalue);
ffi_real.h 230 ffi_raw *avalue);
243 ffi_java_raw *avalue);
357 void **avalue);
ffi_common.h 77 void **avalue; member in struct:__anon10090
  /external/libffi/src/s390/
ffi.c 193 void **p_argv = ecif->avalue;
504 void **avalue)
510 ecif.avalue = avalue;
554 void **avalue; local
566 p_arg = avalue = alloca (closure->cif->nargs * sizeof (void *));
682 (closure->fun) (closure->cif, rvalue, avalue, closure->user_data);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 112 constructor Create(const AValue: String);
394 function IfThen(const AValue: Boolean; const ATrue: IANTLRInterface; const AFalse: IANTLRInterface = nil): IANTLRInterface; overload;
418 function IfThen(const AValue: Boolean; const ATrue: IANTLRInterface; const AFalse: IANTLRInterface = nil): IANTLRInterface; overload;
420 if AValue then
440 constructor TANTLRString.Create(const AValue: String);
443 FValue := AValue;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake_hybi08.py 269 request_def.headers['AKey'] = 'AValue'
275 'AValue', request.headers_in['AKey'])
test_handshake_draft75.py 129 'AKey': 'AValue',
454 self.assertEqual('AValue',
test_handshake_hybi.py 280 request_def.headers['AKey'] = 'AValue'
286 'AValue', request.headers_in['AKey'])
test_handshake_hybi00.py 163 'AKey': 'AValue',
413 self.assertEqual('AValue',
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.cpp 365 void QtField::setValueToInstance(ExecState* exec, const Instance* inst, JSValue aValue) const
378 QVariant val = convertValueToQVariant(exec, aValue, argtype, 0);

Completed in 4813 milliseconds

12 3