HomeSort by relevance Sort by last modified time
    Searched defs:Cast (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tools/aidl/
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...]
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);
  /external/v8/include/
v8.h 255 template <class S> static inline Handle<T> Cast(Handle<S> that) {
258 // that the handle isn't empty before doing the checked cast.
261 return Handle<T>(T::Cast(*that));
289 template <class S> static inline Local<T> Cast(Local<S> that) {
292 // that the handle isn't empty before doing the checked cast.
295 return Local<T>(T::Cast(*that));
362 template <class S> static inline Persistent<T> Cast(Persistent<S> that) {
365 // that the handle isn't empty before doing the checked cast.
368 return Persistent<T>(T::Cast(*that));
935 static inline String* Cast(v8::Value* obj)
    [all...]

Completed in 60 milliseconds