Searched defs:Object (Results 76 - 83 of 83) sorted by relevance

1234

/external/clang/lib/CodeGen/
H A DCGExpr.cpp343 llvm::Value *Object = createReferenceTemporary(*this, M, E); local
344 if (auto *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
345 Object = llvm::ConstantExpr::getBitCast(
352 LValue RefTempDst = MakeAddrLValue(Object, M->getType());
361 EmitAggExpr(E, AggValueSlot::forAddr(Object, Alignment,
370 pushTemporaryCleanup(*this, M, E, Object);
389 llvm::Value *Object = createReferenceTemporary(*this, M, E); local
390 if (auto *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
391 Object = llvm::ConstantExpr::getBitCast(
398 EmitAnyExprToMem(E, Object, Qualifier
1323 llvm::Value *Object = EmitARCLoadWeakRetained(LV.getAddress()); local
[all...]
/external/clang/lib/Sema/
H A DSemaOverload.cpp5973 /// and the object argument (@c Object). For example, in a call
5974 /// @c o.f(a1,a2), @c Object will contain @c o and @c Args will contain
6454 /// converts the given @c Object to a function pointer via the
6462 Expr *Object,
6483 = TryObjectArgumentInitialization(*this, Object->getType(),
6484 Object->Classify(Context),
11807 ExprResult Object = Obj;
11813 assert(Object.get()->getType()->isRecordType() &&
11815 const RecordType *Record = Object.get()->getType()->getAs<RecordType>();
11828 if (RequireCompleteType(LParenLoc, Object
6458 AddSurrogateCandidate(CXXConversionDecl *Conversion, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, const FunctionProtoType *Proto, Expr *Object, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet) argument
[all...]
H A DSemaChecking.cpp7292 typedef NamedDecl *Object; typedef in class:__anon1145::SequenceChecker
7321 typedef llvm::SmallDenseMap<Object, UsageInfo, 16> UsageInfoMap;
7332 SmallVectorImpl<std::pair<Object, Usage> > *ModAsSideEffect;
7359 SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect;
7360 SmallVectorImpl<std::pair<Object, Usage> > *OldModAsSideEffect;
7394 Object getObject(Expr *E, bool Mod) const {
7415 void addUsage(UsageInfo &UI, Object O, Expr *Ref, UsageKind UK) {
7425 void checkUsage(Object O, UsageInfo &UI, Expr *Ref, UsageKind OtherKind,
7446 void notePreUse(Object O, Expr *Use) {
7451 void notePostUse(Object
[all...]
H A DTreeTransform.h1573 Expr *Object, Stmt *Body) {
1574 return getSema().ActOnObjCAtSynchronizedStmt(AtLoc, Object, Body);
6294 ExprResult Object = getDerived().TransformExpr(S->getSynchExpr()); local
6295 if (Object.isInvalid())
6297 Object =
6299 Object.get());
6300 if (Object.isInvalid())
6310 Object.get() == S->getSynchExpr() &&
6316 Object.get(), Body.get());
8095 assert(E->getNumArgs() >= 1 && "Object cal
1572 RebuildObjCAtSynchronizedStmt(SourceLocation AtLoc, Expr *Object, Stmt *Body) argument
8098 ExprResult Object = getDerived().TransformExpr(E->getArg(0)); local
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp711 /// Object used to treat all foldable expressions as constant expressions.
3034 static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object, argument
3036 if (Object->getType()->isPointerType())
3037 return EvaluatePointer(Object, This, Info);
3039 if (Object->isGLValue())
3040 return EvaluateLValue(Object, This, Info);
3042 if (Object->getType()->isLiteralType(Info.Ctx))
3043 return EvaluateTemporary(Object, This, Info);
3045 Info.Diag(Object, diag::note_constexpr_nonliteral) << Object
[all...]
/external/v8/include/
H A Dv8.h83 class Object;
132 class Object;
193 * dereferencing the handle (for instance, to extract the Object* from
194 * a Handle<Object>); the value will still be governed by a handle
246 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
247 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
255 internal::Object** a = reinterpret_cast<internal::Object**>(thi
2271 class V8_EXPORT Object : public Value { class in namespace:v8
[all...]
/external/v8/src/
H A Dobjects.h38 // - Object
144 // Formats of Object*:
257 // object using __proto__ or Object.setPrototypeOf.
334 // Object::IsString.
377 /* Object::IsExternalArray(). */ \
840 INLINE(static type* cast(Object* object)); \
841 INLINE(static const type* cast(const Object* object));
863 template <class C> inline bool Is(Object* obj);
987 // Object is the abstract superclass for all classes in the
989 // Object doe
993 class Object { class in namespace:v8::internal
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 1075 milliseconds

1234