OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisRef
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/API/
JSCallbackObject.cpp
45
JSObjectRef
thisRef
= toRef(asObject(handle.get()));
49
finalize(
thisRef
);
JSCallbackObjectFunctions.h
117
JSObjectRef
thisRef
= toRef(this);
126
if (hasProperty(ctx,
thisRef
, propertyNameRef.get())) {
137
value = getProperty(ctx,
thisRef
, propertyNameRef.get(), &exception);
191
JSObjectRef
thisRef
= toRef(this);
203
result = setProperty(ctx,
thisRef
, propertyNameRef.get(), valueRef, &exception);
222
result = setProperty(ctx,
thisRef
, propertyNameRef.get(), valueRef, &exception);
250
JSObjectRef
thisRef
= toRef(this);
261
result = deleteProperty(ctx,
thisRef
, propertyNameRef.get(), &exception);
340
JSObjectRef
thisRef
= toRef(this);
349
result = hasInstance(execRef,
thisRef
, valueRef, &exception)
[
all
...]
/dalvik/tests/003-omnibus-opcodes/src/
Classes.java
16
void checkCast(Object
thisRef
, Object moreRef, Object nullRef) {
22
classes = (Classes)
thisRef
;
23
assert(
thisRef
instanceof Classes);
29
assert(!(
thisRef
instanceof MoreClasses));
32
more = (MoreClasses)
thisRef
;
39
assert(!(
thisRef
instanceof MoreClasses));
43
java.math.RoundingMode mode = (java.math.RoundingMode)
thisRef
;
50
assert(!(
thisRef
instanceof java.math.BigDecimal));
/dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java
364
Local<G>
thisRef
= code.getThis(generated);
366
code.invokeDirect(Type.OBJECT.getConstructor(), null,
thisRef
);
367
code.iput(fieldId,
thisRef
, parameter);
[
all
...]
Completed in 48 milliseconds