Searched defs:Interface (Results 1 - 15 of 15) sorted by last modified time

/external/v8/src/
H A Dast.h629 Interface* interface() const { return interface_; }
635 interface_(Interface::NewModule(zone)),
637 Module(Zone* zone, Interface* interface, int pos, Block* body = NULL)
643 Interface* interface_;
653 ModuleLiteral(Zone* zone, Block* body, Interface* interface, int pos)
1646 Interface* interface() const { return interface_; }
1665 Interface* interface, int position, IdGen* id_gen);
1671 Interface* interface_;
3126 ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface, int pos) {
3377 Interface* interfac
3375 NewVariableProxy(const AstRawString* name, bool is_this, Interface* interface = Interface::NewValue(), int position = RelocInfo::kNoPosition) argument
[all...]
H A Dinterface.h35 class Interface : public ZoneObject { class in namespace:v8::internal
40 static Interface* NewUnknown(Zone* zone) {
41 return new(zone) Interface(NONE);
44 static Interface* NewValue() {
45 static Interface value_interface(VALUE + FROZEN); // Cached.
49 static Interface* NewConst() {
50 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
54 static Interface* NewModule(Zone* zone) {
55 return new(zone) Interface(MODULE);
63 void Add(const AstRawString* name, Interface* interfac
194 explicit Interface(int flags) function in class:v8::internal::Interface
[all...]
H A Dscopes.h28 Interface* interface = Interface::NewValue());
135 Interface* interface = Interface::NewValue());
147 Interface* interface = Interface::NewValue(),
336 Interface* interface() const { return interface_; }
456 // Interface; module scopes only.
457 Interface* interface_;
145 NewUnresolved(AstNodeFactory<Visitor>* factory, const AstRawString* name, Interface* interface = Interface::NewValue(), int position = RelocInfo::kNoPosition) argument
/external/skia/src/core/
H A DSkFunction.h45 struct Interface { struct in class:SkFunction
46 virtual ~Interface() {}
48 virtual Interface* clone() const = 0;
52 class LambdaImpl final : public Interface {
57 Interface* clone() const { return SkNEW_ARGS(LambdaImpl<Fn>, (fFn)); }
62 class FnPtrImpl final : public Interface {
67 Interface* clone() const { return SkNEW_ARGS(FnPtrImpl, (fFn)); }
72 SkAutoTDelete<Interface> fFunction;
/external/selinux/sepolgen/src/sepolgen/
H A Drefpolicy.py72 of their childre (see Interface for example).
94 return itertools.ifilter(lambda x: isinstance(x, Interface), walktree(self))
117 """Iterate over all of the TypeAttribute children of this Interface."""
121 """Iterate over all of the RoleAttribute children of this Interface."""
724 class Interface(Node): class in inherits:Node
734 return "[Interface name: %s]" % self.name
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java316 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
338 Interface a = new Impl();
339 Interface b = new Impl();
340 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
345 interface Interface extends Comparable<Interface> { interface in class:ImmutableSortedSetTest
347 static class Impl implements Interface {
351 @Override public int compareTo(Interface other) {
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSetTest.java190 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
212 Interface a = new Impl();
213 Interface b = new Impl();
214 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
219 interface Interface extends Comparable<Interface> { interface in class:ImmutableSortedSetTest
221 static class Impl implements Interface {
225 @Override public int compareTo(Interface other) {
/external/google-breakpad/src/testing/test/
H A Dgmock_link_test.h104 // This test requires identical definitions of Interface and Mock to be
109 // definitions of Interface and Mock tests MUST be kept in the SAME
191 class Interface { class
193 virtual ~Interface() {}
205 class Mock: public Interface {
/external/deqp/scripts/khr_util/
H A Dregistry.py82 class Interface(Object): pass class in inherits:Object
219 class Interface(Object): class in inherits:Object
379 return Interface(
/external/clang/lib/AST/
H A DType.cpp943 ObjCInterfaceDecl *Interface local
946 *Def = Interface;
947 return !Interface->hasDefinition();
/external/clang/lib/CodeGen/
H A DCGExpr.cpp3297 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface, argument
3299 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
H A DCGObjCGNU.cpp552 const ObjCInterfaceDecl *Interface,
2816 const ObjCInterfaceDecl *Interface,
2819 Interface = FindIvarInterface(CGM.getContext(), Interface, Ivar);
2823 ObjCIvarOffsetVariable(Interface, Ivar), false, "ivar")),
2826 Interface->getNameAsString() +"." + Ivar->getNameAsString();
2837 uint64_t Offset = ComputeIvarBaseOffset(CGF.CGM, Interface, Ivar);
2815 EmitIvarOffset(CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
H A DCGObjCMac.cpp1 //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
1258 const ObjCInterfaceDecl *Interface,
1552 const ObjCInterfaceDecl *Interface,
1698 /* *** CGObjCMac Public Interface *** */
2898 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
2900 Interface->FindCategoryDeclaration(OCD->getIdentifier());
2903 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2917 Values[1] = GetClassName(Interface->getObjCRuntimeNameAsString());
2918 LazySymbols.insert(Interface->getIdentifier());
3011 ObjCInterfaceDecl *Interface local
4211 EmitIvarOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
5916 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
6426 EmitIvarOffset( CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
[all...]
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp1 //===--- CodeCompleteConsumer.cpp - Code Completion Interface ---*- C++ -*-===//
308 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); local
309 if (!Interface) {
316 OS << Interface->getName() << '(' << Cat->getName() << ')';
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp3423 ObjCInterfaceDecl *Interface; member in class:__anon1257::ObjCCategoriesVisitor
3452 << Interface->getDeclName() << Cat->getDeclName();
3464 Interface->setCategoryListRaw(Cat);
3471 ObjCInterfaceDecl *Interface,
3474 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
3479 for (auto *Cat : Interface->known_categories()) {
3469 ObjCCategoriesVisitor(ASTReader &Reader, serialization::GlobalDeclID InterfaceID, ObjCInterfaceDecl *Interface, llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized, unsigned PreviousGeneration) argument

Completed in 2178 milliseconds