OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:thisObject
(Results
1 - 16
of
16
) sorted by null
/system/media/wilhelm/src/itf/
IDynamicSource.c
38
IObject *
thisObject
= InterfaceToIObject(thiz);
39
object_lock_exclusive(
thisObject
);
42
object_unlock_exclusive(
thisObject
);
I3DCommit.c
27
IObject *
thisObject
= InterfaceToIObject(thiz);
28
object_lock_exclusive(
thisObject
);
33
object_cond_wait(
thisObject
);
36
object_unlock_exclusive(
thisObject
);
48
IObject *
thisObject
= InterfaceToIObject(thiz);
49
object_lock_exclusive(
thisObject
);
51
object_unlock_exclusive(
thisObject
);
I3DGrouping.c
38
IObject *
thisObject
= InterfaceToIObject(thiz);
39
unsigned id =
thisObject
->mInstanceID;
IMuteSolo.c
27
IObject *
thisObject
= thiz->mThis;
28
if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(
thisObject
)) {
31
CAudioPlayer *ap = (CAudioPlayer *)
thisObject
;
66
IObject *
thisObject
= thiz->mThis;
67
if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(
thisObject
)) {
70
CAudioPlayer *ap = (CAudioPlayer *)
thisObject
;
99
IObject *
thisObject
= thiz->mThis;
100
if (SL_OBJECTID_AUDIOPLAYER != IObjectToObjectID(
thisObject
)) {
103
CAudioPlayer *ap = (CAudioPlayer *)
thisObject
;
138
IObject *
thisObject
= thiz->mThis
[
all
...]
IDynamicInterfaceManagement.c
31
IObject *
thisObject
= InterfaceToIObject(thiz);
32
assert(NULL !=
thisObject
);
34
const ClassTable *clazz =
thisObject
->mClass;
38
SLuint8 *interfaceStateP = &
thisObject
->mInterfaceStates[index];
42
object_lock_exclusive(
thisObject
);
50
object_unlock_exclusive(
thisObject
);
55
void *thisItf = (char *)
thisObject
+ offset;
65
object_lock_exclusive(
thisObject
);
94
object_unlock_exclusive(
thisObject
);
115
IObject *
thisObject
= InterfaceToIObject(thiz)
[
all
...]
IOutputMixExt.c
177
IObject *
thisObject
= thiz->mThis;
179
object_lock_exclusive(
thisObject
);
183
IEngine *thisEngine = &
thisObject
->mEngine->mEngine;
185
assert(&thisEngine->mOutputMix->mObject ==
thisObject
);
191
object_cond_broadcast(
thisObject
);
325
object_unlock_exclusive(
thisObject
);
/external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp
73
JSObject* DebuggerCallFrame::
thisObject
() const
98
JSValue result = globalData.interpreter->execute(eval, m_callFrame,
thisObject
(), m_callFrame->scopeChain());
/external/webkit/Source/WebCore/bindings/js/
JavaScriptCallFrame.cpp
94
JSObject* JavaScriptCallFrame::
thisObject
() const
99
return m_debuggerCallFrame.
thisObject
();
JSJavaScriptCallFrameCustom.cpp
50
JSValue JSJavaScriptCallFrame::
thisObject
(ExecState*) const
52
return impl()->
thisObject
() ? JSValue(impl()->
thisObject
()) : jsNull();
ScriptFunctionCall.cpp
117
ScriptFunctionCall::ScriptFunctionCall(const ScriptObject&
thisObject
, const String& name)
118
: ScriptCallArgumentHandler(
thisObject
.scriptState())
119
, m_thisObject(
thisObject
)
126
JSObject*
thisObject
= m_thisObject.jsObject();
130
JSValue function =
thisObject
->get(m_exec, Identifier(m_exec, stringToUString(m_name)));
144
JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData,
thisObject
, m_arguments);
164
JSObject*
thisObject
= m_thisObject.jsObject();
168
JSObject* constructor = asObject(
thisObject
->get(m_exec, Identifier(m_exec, stringToUString(m_name))));
/external/webkit/Source/JavaScriptCore/runtime/
RegExpPrototype.cpp
124
RegExpObject*
thisObject
= asRegExpObject(thisValue);
126
StringRecursionChecker checker(exec,
thisObject
);
132
if (
thisObject
->get(exec, exec->propertyNames().global).toBoolean(exec))
134
if (
thisObject
->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
136
if (
thisObject
->get(exec, exec->propertyNames().multiline).toBoolean(exec))
138
UString source =
thisObject
->get(exec, exec->propertyNames().source).toString(exec);
/external/webkit/Source/WebCore/bindings/v8/
ScriptFunctionCall.cpp
108
ScriptFunctionCall::ScriptFunctionCall(const ScriptObject&
thisObject
, const String& name)
109
: ScriptCallArgumentHandler(
thisObject
.scriptState())
110
, m_thisObject(
thisObject
)
119
v8::Local<v8::Object>
thisObject
= m_thisObject.v8Object();
120
v8::Local<v8::Value> value =
thisObject
->Get(v8String(m_name));
133
v8::Local<v8::Value> result = function->Call(
thisObject
, m_arguments.size(), args.get());
152
v8::Local<v8::Object>
thisObject
= m_thisObject.v8Object();
153
v8::Local<v8::Value> value =
thisObject
->Get(v8String(m_name));
JavaScriptCallFrame.cpp
116
v8::Handle<v8::Value> JavaScriptCallFrame::
thisObject
() const
118
return m_callFrame.get()->Get(v8String("
thisObject
"));
/external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java
360
Object
thisObject
= (Object) this;
361
if (
thisObject
instanceof Activity) {
362
return (Activity)
thisObject
;
363
} else if (
thisObject
instanceof Fragment) {
364
return ((Fragment)
thisObject
).getActivity();
[
all
...]
/prebuilt/common/groovy/
groovy-all-1.7.0.jar
Completed in 180 milliseconds