Searched defs:Interface (Results 26 - 47 of 47) sorted by relevance

12

/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py190 class Interface(Definition): class in inherits:Definition
196 super(Interface, self).__init__(name, **kwargs)
201 return super(Interface, self).__eq__(other) and \
/external/chromium_org/ppapi/generators/
H A Didl_gen_pnacl.py16 from idl_gen_wrapper import Interface, WrapperGen namespace
H A Didl_gen_wrapper.py31 class Interface(object): class in inherits:object
218 ifaces = filenode.GetListOf('Interface')
228 InfoOut.Log('Interface %s ver %s does not need wrapping' %
231 Interface(iface, release, version,
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_injected_script_externs.py146 class Interface: class in inherits:
180 return Interface(interface_name, methods, attributes)
/external/srec/srec/Semproc/src/
H A DExpressionParser.c46 ExpressionParser* Interface; local
54 Interface = NEW(ExpressionParser, MTAG);
55 if (Interface == NULL)
62 CHKLOG(rc, HashMapCreate(&Interface->pfunctions));
65 Interface->next = &Interface->functions[0];
66 CHKLOG(rc, EP_RegisterFunction(Interface, L("concat"), NULL, EE_concat));
67 CHKLOG(rc, EP_RegisterFunction(Interface, L("conditional"), NULL, EE_conditional));
68 CHKLOG(rc, EP_RegisterFunction(Interface, L("add"), NULL, EE_add));
69 CHKLOG(rc, EP_RegisterFunction(Interface,
[all...]
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DInterfacesTest.java46 * @see org.chromium.mojo.bindings.Interface#close()
117 * @see org.chromium.mojo.bindings.Interface#close()
173 * @see org.chromium.mojo.bindings.Interface#close()
218 private <I extends Interface, P extends Interface.Proxy> P newProxyOverPipe( argument
219 Interface.Manager<I, P> manager, I impl) {
229 C extends Interface> P newProxyOverPipeWithClient(
/external/chromium_org/v8/src/
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
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...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py271 class Interface(ReferenceKind): class in inherits:ReferenceKind
324 self.interfaces.append(Interface(name, module=self))
379 return isinstance(kind, Interface)
/external/srec/srec/Grammar/src/
H A DSR_GrammarImpl.c48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot;
49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot;
50 impl->Interface.checkParse = &SR_Grammar_CheckParse;
51 impl->Interface.compile = &SR_Grammar_Compile;
52 impl->Interface.destroy = &SR_Grammar_Destroy;
53 impl->Interface.getParameter = &SR_Grammar_GetParameter;
54 impl->Interface.getSize_tParameter = &SR_Grammar_GetSize_tParameter;
55 impl->Interface.resetAllSlots = &SR_Grammar_ResetAllSlots;
56 impl->Interface.save = &SR_Grammar_Save;
57 impl->Interface
354 SR_Grammar* Interface = NULL; local
[all...]
/external/srec/srec/Vocabulary/src/
H A DVocabularyImpl.c162 impl->Interface.save = &SR_VocabularySaveImpl;
163 impl->Interface.getPronunciation = &SR_VocabularyGetPronunciationImpl;
164 impl->Interface.getLanguage = &SR_VocabularyGetLanguageImpl;
165 impl->Interface.destroy = &SR_VocabularyDestroyImpl;
237 SR_Vocabulary* Interface; local
241 CHK(rc, SR_VocabularyCreateImpl(&Interface));
242 impl = (SR_VocabularyImpl*) Interface;
254 *self = Interface;
257 Interface->destroy(Interface);
[all...]
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp1 //===--- CodeCompleteConsumer.cpp - Code Completion Interface ---*- C++ -*-===//
311 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); local
312 if (!Interface) {
319 OS << Interface->getName() << '(' << Cat->getName() << ')';
/external/srec/shared/src/
H A DSessionTypeImpl.c41 ESR_SessionType* Interface; local
50 Interface = NEW(ESR_SessionType, MTAG);
51 if (Interface == NULL)
64 Interface->addListener = &ESR_SessionTypeAddListenerImpl;
65 Interface->contains = &ESR_SessionTypeContainsImpl;
66 Interface->convertToBool = &ESR_SessionTypeConvertToBoolImpl;
67 Interface->convertToFloat = &ESR_SessionTypeConvertToFloatImpl;
68 Interface->convertToInt = &ESR_SessionTypeConvertToIntImpl;
69 Interface->convertToUint16_t = &ESR_SessionTypeConvertToUint16_tImpl;
70 Interface
[all...]
/external/srec/srec/Recognizer/include/
H A DSR_RecognizerImpl.h168 * Interface functions that must be implemented.
170 SR_Recognizer Interface; member in struct:SR_RecognizerImpl_t
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java215 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
237 Interface a = new Impl();
238 Interface b = new Impl();
239 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
244 interface Interface extends Comparable<Interface> { interface in class:ImmutableSortedSetTest
246 static class Impl implements Interface {
250 @Override public int compareTo(Interface other) {
/external/clang/lib/AST/
H A DType.cpp946 ObjCInterfaceDecl *Interface local
949 *Def = Interface;
950 return !Interface->hasDefinition();
/external/srec/srec/crec/
H A Dsrec_context.c334 wordmap* Interface; local
338 Interface = (wordmap*)CALLOC_CLR(1, sizeof(wordmap), "srec.graph.wordmap.base");
339 Interface->max_words = (wordID)(num_words + num_words_to_add);
340 Interface->num_words = (wordID)0;
342 Interface->words = (char**) CALLOC_CLR(Interface->max_words, sizeof(char*), "srec.graph.wordmap.words");
343 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
344 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars");
345 Interface
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp3156 llvm::Value *CodeGenFunction::EmitIvarOffset(const ObjCInterfaceDecl *Interface, argument
3158 return CGM.getObjCRuntime().EmitIvarOffset(*this, Interface, Ivar);
H A DCGObjCGNU.cpp549 const ObjCInterfaceDecl *Interface,
2809 const ObjCInterfaceDecl *Interface,
2812 Interface = FindIvarInterface(CGM.getContext(), Interface, Ivar);
2816 ObjCIvarOffsetVariable(Interface, Ivar), false, "ivar")),
2819 Interface->getNameAsString() +"." + Ivar->getNameAsString();
2830 uint64_t Offset = ComputeIvarBaseOffset(CGF.CGM, Interface, Ivar);
2808 EmitIvarOffset(CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
H A DCGObjCMac.cpp1 //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
1264 const ObjCInterfaceDecl *Interface,
1557 const ObjCInterfaceDecl *Interface,
1704 /* *** CGObjCMac Public Interface *** */
2921 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
2923 Interface->FindCategoryDeclaration(OCD->getIdentifier());
2926 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
2940 Values[1] = GetClassName(Interface->getIdentifier());
2941 LazySymbols.insert(Interface->getIdentifier());
3038 ObjCInterfaceDecl *Interface local
4245 EmitIvarOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
5957 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
6454 EmitIvarOffset( CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp3036 ObjCInterfaceDecl *Interface; member in class:__anon18126::ObjCCategoriesVisitor
3065 << Interface->getDeclName() << Cat->getDeclName();
3077 Interface->setCategoryListRaw(Cat);
3084 ObjCInterfaceDecl *Interface,
3087 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
3092 for (auto *Cat : Interface->known_categories()) {
3082 ObjCCategoriesVisitor(ASTReader &Reader, serialization::GlobalDeclID InterfaceID, ObjCInterfaceDecl *Interface, llvm::SmallPtrSet<ObjCCategoryDecl *, 16> &Deserialized, unsigned PreviousGeneration) argument

Completed in 9235 milliseconds

12