HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 26 - 50 of 182) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/v8/src/
interface.h 39 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
40 // exports ::= {name : interface, ...}
57 class Interface : public ZoneObject {
62 static Interface* NewUnknown(Zone* zone) {
63 return new(zone) Interface(NONE);
66 static Interface* NewValue() {
67 static Interface value_interface(VALUE + FROZEN); // Cached.
71 static Interface* NewConst() {
72 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
76 static Interface* NewModule(Zone* zone)
176 Interface* interface() const { function in class:v8::internal::Interface::Iterator
    [all...]
interface.cc 30 #include "interface.h"
44 Interface* Interface::Lookup(Handle<String> name, Zone* zone) {
54 return static_cast<Interface*>(p->value);
73 void Interface::DoAdd(
74 void* name, uint32_t hash, Interface* interface, Zone* zone, bool* ok) {
85 interface->Print(Nesting::current());
101 p->value = interface;
106 static_cast<Interface*>(p->value)->Unify(interface, zone, ok)
234 Interface* interface = static_cast<Interface*>(p->value); local
    [all...]
  /external/chromium/base/win/
scoped_comptr.h 17 // A fairly minimalistic smart class for COM interface pointers.
20 template <class Interface, const IID* interface_id = &__uuidof(Interface)>
21 class ScopedComPtr : public scoped_refptr<Interface> {
25 class BlockIUnknownMethods : public Interface {
32 typedef scoped_refptr<Interface> ParentClass;
37 explicit ScopedComPtr(Interface* p) : ParentClass(p) {
40 ScopedComPtr(const ScopedComPtr<Interface, interface_id>& p)
47 COMPILE_ASSERT(sizeof(ScopedComPtr<Interface, interface_id>) ==
48 sizeof(Interface*), ScopedComPtrSize)
    [all...]
  /external/chromium_org/base/win/
scoped_comptr.h 16 // A fairly minimalistic smart class for COM interface pointers.
19 template <class Interface, const IID* interface_id = &__uuidof(Interface)>
20 class ScopedComPtr : public scoped_refptr<Interface> {
24 class BlockIUnknownMethods : public Interface {
31 typedef scoped_refptr<Interface> ParentClass;
36 explicit ScopedComPtr(Interface* p) : ParentClass(p) {
39 ScopedComPtr(const ScopedComPtr<Interface, interface_id>& p)
46 COMPILE_ASSERT(sizeof(ScopedComPtr<Interface, interface_id>) ==
47 sizeof(Interface*), ScopedComPtrSize)
    [all...]
  /external/srec/portable/src/
PANSIFileImpl.c 47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian);
48 impl->Interface.Interface.close = &PANSIFileCloseImpl;
49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl;
50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl;
51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl
    [all...]
ArrayListImpl.c 41 impl->Interface.add = &ArrayList_Add;
42 impl->Interface.insertAt = &ArrayList_InsertAt;
43 impl->Interface.contains = &ArrayList_Contains;
44 impl->Interface.destroy = &ArrayList_Destroy;
45 impl->Interface.get = &ArrayList_Get;
46 impl->Interface.getSize = &ArrayList_GetSize;
47 impl->Interface.remove = &ArrayList_Remove;
48 impl->Interface.removeAtIndex = &ArrayList_RemoveAtIndex;
49 impl->Interface.removeAll = &ArrayList_RemoveAll;
50 impl->Interface.set = &ArrayList_Set
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 3 implements com.android.stubs.Parent.Interface
Types.java 4 public static interface Interface
  /external/srec/srec/AcousticState/src/
AcousticStateImpl.c 44 impl->Interface.load = &SR_AcousticStateLoadImpl;
45 impl->Interface.save = &SR_AcousticStateSaveImpl;
46 impl->Interface.destroy = &SR_AcousticStateDestroyImpl;
47 impl->Interface.reset = &SR_AcousticStateResetImpl;
48 impl->Interface.set = &SR_AcousticStateSetImpl;
49 impl->Interface.get = &SR_AcousticStateGetImpl;
51 recogImpl->acousticState = &impl->Interface;
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/a/
A.java 21 public abstract class A extends Parent implements Parent.Interface, SomeInterface {
  /external/v8/src/
interface.cc 30 #include "interface.h"
44 Interface* Interface::Lookup(Handle<String> name) {
52 return static_cast<Interface*>(p->value);
71 void Interface::DoAdd(
72 void* name, uint32_t hash, Interface* interface, bool* ok) {
83 interface->Print(Nesting::current());
95 p->value = interface;
100 reinterpret_cast<Interface*>(p->value)->Unify(interface, ok)
216 Interface* interface = static_cast<Interface*>(p->value); local
    [all...]
  /external/srec/shared/src/
IntArrayListImpl.c 38 impl->Interface.add = &IntArrayList_Add;
39 impl->Interface.contains = &IntArrayList_Contains;
40 impl->Interface.destroy = &IntArrayList_Destroy;
41 impl->Interface.get = &IntArrayList_Get;
42 impl->Interface.getSize = &IntArrayList_GetSize;
43 impl->Interface.remove = &IntArrayList_Remove;
44 impl->Interface.removeAll = &IntArrayList_RemoveAll;
45 impl->Interface.set = &IntArrayList_Set;
46 impl->Interface.toStaticArray = &IntArrayList_ToStaticArray;
LStringImpl.c 35 impl->Interface.append = &LString_Append;
36 impl->Interface.toLCHAR = &LString_ToLCHAR;
37 impl->Interface.reset = &LString_Reset;
38 impl->Interface.destroy = &LString_Destroy;
Int8ArrayListImpl.c 38 impl->Interface.add = &Int8ArrayList_Add;
39 impl->Interface.contains = &Int8ArrayList_Contains;
40 impl->Interface.destroy = &Int8ArrayList_Destroy;
41 impl->Interface.get = &Int8ArrayList_Get;
42 impl->Interface.getSize = &Int8ArrayList_GetSize;
43 impl->Interface.remove = &Int8ArrayList_Remove;
44 impl->Interface.removeAll = &Int8ArrayList_RemoveAll;
45 impl->Interface.set = &Int8ArrayList_Set;
46 impl->Interface.toStaticArray = &Int8ArrayList_ToStaticArray;
47 impl->Interface.clone = &Int8ArrayList_Clone
    [all...]
CircularBuffer.c 36 CircularBuffer* Interface;
40 Interface = (CircularBuffer *) MALLOC(sizeof(CircularBuffer) + capacity, mtag);
41 if (Interface == NULL)
43 Interface->capacity = capacity;
44 CircularBufferReset(Interface);
45 *buffer = Interface;
HashMapImpl.c 47 impl->Interface.put = &HashMap_Put;
48 impl->Interface.remove = &HashMap_Remove;
49 impl->Interface.removeAndFree = &HashMap_RemoveAndFree;
50 impl->Interface.removeAll = &HashMap_RemoveAll;
51 impl->Interface.removeAndFreeAll = &HashMap_RemoveAndFreeAll;
52 impl->Interface.removeAtIndex = &HashMap_RemoveAtIndex;
53 impl->Interface.containsKey = &HashMap_ContainsKey;
54 impl->Interface.getKeyAtIndex = &HashMap_GetKeyAtIndex;
55 impl->Interface.get = &HashMap_Get;
56 impl->Interface.getValueAtIndex = &HashMap_GetValueAtIndex
    [all...]
  /external/srec/srec/Semproc/src/
SemanticResultImpl.c 46 impl->Interface.destroy = &SR_SemanticResult_Destroy;
47 impl->Interface.getKeyCount = &SR_SemanticResult_GetKeyCount;
48 impl->Interface.getKeyList = &SR_SemanticResult_GetKeyList;
49 impl->Interface.getValue = &SR_SemanticResult_GetValue;
58 impl->Interface.destroy(&impl->Interface);
LexicalAnalyzer.c 31 LexicalAnalyzer* Interface;
39 Interface = NEW(LexicalAnalyzer, MTAG);
40 if (Interface == NULL)
45 *self = Interface;
SemanticProcessorImpl.c 138 impl->Interface.destroy = &SR_SemanticProcessor_Destroy;
139 impl->Interface.checkParse = &SR_SemanticProcessor_CheckParse;
140 impl->Interface.checkParseByWordID = &SR_SemanticProcessor_CheckParseByWordID;
141 impl->Interface.setParam = &SR_SemanticProcessor_SetParam;
142 impl->Interface.flush = &SR_SemanticProcessor_Flush;
148 impl->Interface.destroy(&impl->Interface);
    [all...]
ExpressionParser.c 46 ExpressionParser* Interface;
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, L("subtract"), NULL, EE_subtract))
    [all...]
  /external/srec/shared/include/
LStringImpl.h 35 * Interface functions that must be implemented.
37 LString Interface;
  /external/srec/srec/Semproc/include/
SR_SemanticResultImpl.h 35 * Interface functions that must be implemented.
37 SR_SemanticResult Interface;
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
A.java 4 implements com.android.stubs.Parent.Interface, com.android.stubs.a.SomeInterface
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Parent.java 35 public interface Interface {
Types.java 61 public interface Interface {

Completed in 362 milliseconds

12 3 4 5 6 7 8