HomeSort by relevance Sort by last modified time
    Searched refs:Cast (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /external/javassist/src/main/javassist/expr/
Cast.java 24 * Explicit type cast.
26 public class Cast extends Expr {
30 protected Cast(int pos, CodeIterator i, CtClass declaring, MethodInfo m) {
35 * Returns the method or constructor containing the type cast
42 * type-cast expression.
51 * Returns the source file containing the type-cast expression.
61 * the type specified by the cast.
82 * Replaces the explicit cast operator with the bytecode derived from
150 + "for cast");
ExprEditor.java 239 expr = new Cast(pos, iterator, clazz, minfo);
240 edit((Cast)expr);
309 public void edit(Cast c) throws CannotCompileException {}
  /external/webkit/Source/WebCore/bindings/v8/
OptionsObject.cpp 116 v8::Local<v8::Array> v8Array = v8::Local<v8::Array>::Cast(v8Value);
135 return V8IDBKeyRange::toNative(v8::Handle<v8::Object>::Cast(v8Value));
ScriptState.cpp 68 global = v8::Local<v8::Object>::Cast(global->GetPrototype());
73 return static_cast<ScriptState*>(v8::External::Cast(*val)->Value());
V8EventListenerList.h 53 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty);
89 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
V8Utilities.cpp 61 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache);
70 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache);
86 V8AbstractEventListener* oldListener = V8AbstractEventListener::cast(oldValue);
V8WindowErrorHandler.cpp 54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
V8WorkerContextErrorHandler.cpp 54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
V8LazyEventListener.cpp 61 v8::Local<v8::Function> handlerFunction = v8::Local<v8::Function>::Cast(listenerObject);
126 v8::Local<v8::Function> wrappedFunction = v8::Local<v8::Function>::Cast(value);
ScriptFunctionCall.cpp 128 v8::Local<v8::Function> function(v8::Function::Cast(*value));
161 v8::Local<v8::Function> constructor(v8::Function::Cast(*value));
194 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value());
NPV8Object.cpp 190 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(functionObject);
235 v8::Handle<v8::Function> function(v8::Function::Cast(*functionObject));
490 v8::Handle<v8::Function> enumerator = v8::Handle<v8::Function>::Cast(enumeratorObj);
492 v8::Local<v8::Value> propsObj = enumerator->Call(v8::Handle<v8::Object>::Cast(enumeratorObj), ARRAYSIZE_UNSAFE(argv), argv);
497 v8::Handle<v8::Array> props = v8::Handle<v8::Array>::Cast(propsObj);
502 (*identifier)[i] = getStringIdentifier(v8::Local<v8::String>::Cast(name));
535 v8::Handle<v8::Function> ctor(v8::Function::Cast(*ctorObj));
V8DOMWrapper.cpp 195 v8::Local<v8::Array> hiddenReferenceArray = v8::Local<v8::Array>::Cast(hiddenReferenceObject);
267 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
306 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value);
323 return v8::Handle<v8::Object>::Cast(value)->InternalFieldCount();
331 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value);
465 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
481 resolver = V8XPathNSResolver::toNative(v8::Handle<v8::Object>::Cast(value));
ScriptController.cpp 180 Event* event = V8DOMWrapper::isValidDOMObject(jsEvent) ? V8Event::toNative(v8::Handle<v8::Object>::Cast(jsEvent)) : 0;
406 return npCreateV8ScriptObject(0, v8::Handle<v8::Object>::Cast(global), window);
445 return npCreateV8ScriptObject(0, v8::Handle<v8::Object>::Cast(v8plugin), window);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DirectoryEntrySyncCustom.cpp 71 return V8WebKitFlags::toNative(v8::Handle<v8::Object>::Cast(arg));
76 object = v8::Handle<v8::Object>::Cast(arg);
V8DOMFormDataCustom.cpp 72 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg);
V8HTMLSelectElementCustom.cpp 76 HTMLOptionElement* element = V8HTMLOptionElement::toNative(v8::Handle<v8::Object>::Cast(args[0]));
V8XMLHttpRequestCustom.cpp 182 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg);
187 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg);
192 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg);
198 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg);
V8DocumentCustom.cpp 76 contextNode = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1]));
85 inResult = V8XPathResult::toNative(v8::Handle<v8::Object>::Cast(args[4]));
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 116 v8::Handle<v8::Object> inspectorBackend = v8::Handle<v8::Object>::Cast(inspectorBackendValue);
121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchFunction);
  /frameworks/base/tools/aidl/
AST.h 132 Type* cast; member in struct:Assignment
135 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
203 struct Cast : public Expression
208 Cast();
209 Cast(Type* type, Expression* expression);
210 virtual ~Cast();
217 Type* cast; member in struct:VariableDeclaration
221 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
AST.cpp 247 cast(NULL)
254 cast(c)
267 if (this->cast != NULL) {
268 fprintf(to, "(%s)", this->cast->QualifiedName().c_str());
430 Cast::Cast()
436 Cast::Cast(Type* t, Expression* e)
442 Cast::~Cast()
    [all...]
  /hardware/ril/mock-ril/src/cpp/
node_object_wrap.h 53 return static_cast<T*>(v8::Handle<v8::External>::Cast(
  /external/v8/include/
v8.h 237 template <class S> static inline Handle<T> Cast(Handle<S> that) {
240 // that the handle isn't empty before doing the checked cast.
243 return Handle<T>(T::Cast(*that));
247 return Handle<S>::Cast(*this);
275 template <class S> static inline Local<T> Cast(Local<S> that) {
278 // that the handle isn't empty before doing the checked cast.
281 return Local<T>(T::Cast(*that));
285 return Local<S>::Cast(*this);
352 template <class S> static inline Persistent<T> Cast(Persistent<S> that) {
355 // that the handle isn't empty before doing the checked cast
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 40 struct Cast
53 struct Cast<T, T>
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 149 // Note that the reinterpret cast is because on Windows string16 is an alias
370 v8::Local<v8::Value> ret = v8::Function::Cast(*function)->Call(
536 static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
555 static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
577 static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
598 static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
619 static_cast<Context*>(v8::External::Cast(*args.Data())->Value());

Completed in 2473 milliseconds

12 3 4 5