HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 101 - 125 of 140) sorted by null

1 2 3 45 6

  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.ml 1 (*===-- llvm_executionengine.ml - LLVM Ocaml Interface ----------*- C++ -*-===*
52 interface, which causes the emission of a stub for each function;
llvm_executionengine.mli 1 (*===-- llvm_executionengine.mli - LLVM Ocaml Interface ---------*- C++ -*-===*
12 This interface provides an ocaml API for LLVM execution engine (JIT/
  /external/llvm/bindings/ocaml/transforms/scalar/
llvm_scalar_opts.ml 1 (*===-- llvm_scalar_opts.ml - LLVM Ocaml Interface -------------*- OCaml -*-===*
llvm_scalar_opts.mli 1 (*===-- llvm_scalar_opts.mli - LLVM Ocaml Interface ------------*- OCaml -*-===*
12 This interface provides an ocaml API for LLVM scalar transforms, the
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 170 ServiceWithNoOuter.Interface impl =
171 control.createMock(ServiceWithNoOuter.Interface.class);
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedSetTest.java 215 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
219 * interface type.
226 * 1) An interface I extending Comparable<I> so that the created array is of
227 * an interface type. 2) An instance of a class implementing that interface
228 * so that we can pass non-null instances of the interface.
235 * they're fairly obscure, we've invented our own interface and class.
237 Interface a = new Impl();
238 Interface b = new Impl();
239 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b)
    [all...]
  /external/chromium/testing/gmock/test/
gmock_link_test.h 104 // 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 {
193 virtual ~Interface() {}
205 class Mock: public Interface {
  /external/bluetooth/bluez/test/
apitest 137 self.device = dbus.Interface(obj, 'org.bluez.Adapter')
166 self.manager = dbus.Interface(self.manager_obj, 'org.bluez.Manager')
422 print 'Failed to setup manager interface: %s' % e
429 print 'Failed to setup device interface: %s' % e
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 1 (*===-- llvm_target.mli - LLVM Ocaml Interface -----------------*- OCaml -*-===*
12 This interface provides an ocaml API for LLVM target information,
  /external/v8/src/
ast.h 44 #include "interface.h"
594 Interface* interface() const { return interface_; } function in class:v8::internal::Module
597 Module() : interface_(Interface::NewModule()) {}
598 explicit Module(Interface* interface) : interface_(interface) {}
601 Interface* interface_;
614 ModuleLiteral(Block* body, Interface* interface)
1479 Interface* interface() const { return interface_; } function in class:v8::internal::VariableProxy
    [all...]
parser.h 770 Interface* interface = Interface::NewValue());
scopes.cc 71 Interface* interface) {
82 interface);
112 ? Interface::NewModule() : NULL),
277 top->interface()->Print();
454 Interface* interface) {
465 this, name, mode, true, Variable::NORMAL, init_flag, interface);
1009 proxy->interface()->Unify(var->interface(), &ok)
    [all...]
parser.cc 1452 Interface* interface = Interface::NewUnknown(); local
1525 Interface* interface = top_scope_->interface(); local
3632 Interface* interface = Interface::NewUnknown(); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 1 //===----- CGObjCRuntime.h - Interface to ObjC Runtimes ---------*- C++ -*-===//
218 /// interface decl.
256 const ObjCInterfaceDecl *Interface,
CGObjCMac.cpp 1 //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
    [all...]
CGObjCGNU.cpp 510 const ObjCInterfaceDecl *Interface,
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
WKFullScreenWindowController.mm 50 @interface CATransaction(SnowLeopardConvenienceFunctions)
69 @interface WKFullScreenWindow : NSWindow
78 @interface WKFullScreenWindowController(Private)
88 @interface NSWindow(IsOnActiveSpaceAdditionForTigerAndLeopard)
171 #pragma mark Exposed Interface
373 #pragma mark Internal Interface
  /external/clang/tools/libclang/
CXCursor.cpp 803 // (same USR) as the one from the interface.
842 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
843 for (ObjCInterfaceDecl::protocol_iterator P = Interface->protocol_begin(),
844 PEnd = Interface->protocol_end();
848 for (ObjCCategoryDecl *Category = Interface->getCategoryList();
853 if (ObjCInterfaceDecl *Super = Interface->getSuperClass())
899 // interface as starting point.
911 // interface as starting point.
    [all...]
  /external/srec/srec/crec/
srec_context.c 333 wordmap* Interface;
337 Interface = (wordmap*)CALLOC_CLR(1, sizeof(wordmap), "srec.graph.wordmap.base");
338 Interface->max_words = (wordID)(num_words + num_words_to_add);
339 Interface->num_words = (wordID)0;
341 Interface->words = (char**) CALLOC_CLR(Interface->max_words, sizeof(char*), "srec.graph.wordmap.words");
342 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
343 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars");
344 Interface->next_chars = Interface->chars
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodechildnodesappendchild.js 84 by the "createElement()" method(Document Interface) to
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodechildnodesappendchild.js 84 by the "createElement()" method(Document Interface) to
  /external/expat/amiga/include/interfaces/
expat.h 30 struct Interface * APICALL (*Clone)(struct ExpatIFace *Self);
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 168 * Interface functions that must be implemented.
170 SR_Recognizer Interface;
  /external/webkit/Source/WebKit/mac/WebView/
WebFullScreenController.mm 63 @interface CATransaction(SnowLeopardConvenienceFunctions)
82 @interface WebFullscreenWindow : NSWindow
109 @interface WebFullScreenController(Private)
119 @interface NSWindow(IsOnActiveSpaceAdditionForTigerAndLeopard)
354 #pragma mark Exposed Interface
626 #pragma mark Internal Interface
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 784 // deserializing the interface declaration, so that it will consider this
    [all...]

Completed in 556 milliseconds

1 2 3 45 6