HomeSort by relevance Sort by last modified time
    Searched full:slot (Results 101 - 125 of 856) sorted by null

1 2 3 45 6 7 8 91011>>

  /bionic/libc/kernel/common/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /external/freetype/src/autofit/
afmodule.c 58 FT_GlyphSlot slot,
65 return af_loader_load_glyph( module->loader, slot->face,
  /external/v8/src/
scopeinfo.cc 40 Slot* s = (*v)->slot();
41 Slot* t = (*w)->slot();
43 // and which may have a NULL slot... - find a better solution...
72 // sorted according to usage, the allocated slot indices may
75 // sort them by context slot index before adding them to the
86 Slot* slot = var->slot(); local
    [all...]
  /external/webkit/WebCore/bindings/js/
JSMimeTypeArrayCustom.cpp 36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
38 JSMimeTypeArray* thisObj = static_cast<JSMimeTypeArray*>(asObject(slot.slotBase()));
JSPluginArrayCustom.cpp 36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
38 JSPluginArray* thisObj = static_cast<JSPluginArray*>(asObject(slot.slotBase()));
JSPluginCustom.cpp 35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
37 JSPlugin* thisObj = static_cast<JSPlugin*>(asObject(slot.slotBase()));
  /frameworks/base/libs/rs/
rs.spec 244 param uint32_t slot
277 param uint32_t slot
284 param uint32_t slot
289 param uint32_t slot
376 param uint32_t slot
383 param uint32_t slot
389 param uint32_t slot
480 param uint32_t slot
rsSampler.cpp 85 void Sampler::bindToContext(SamplerState *ss, uint32_t slot)
87 ss->mSamplers[slot].set(this);
88 mBoundSlot = slot;
93 int32_t slot = mBoundSlot; local
95 ss->mSamplers[slot].clear();
rsProgram.h 42 void bindAllocation(Allocation *, uint32_t slot);
47 void bindTexture(uint32_t slot, Allocation *);
48 void bindSampler(uint32_t slot, Sampler *);
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /external/webkit/JavaScriptCore/runtime/
Arguments.cpp 144 bool Arguments::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot)
148 slot.setRegisterSlot(&d->registers[d->firstParameterIndex + i]);
150 slot.setValue(d->extraArguments[i - d->numParameters].jsValue());
154 return JSObject::getOwnPropertySlot(exec, Identifier(exec, UString::from(i)), slot);
157 bool Arguments::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
163 slot.setRegisterSlot(&d->registers[d->firstParameterIndex + i]);
165 slot.setValue(d->extraArguments[i - d->numParameters].jsValue());
170 slot.setValue(jsNumber(exec, d->numArguments));
175 slot.setValue(d->callee);
179 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
    [all...]
JSString.cpp 194 bool JSString::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
198 if (getStringPropertySlot(exec, propertyName, slot))
201 slot.setValue(exec->lexicalGlobalObject()->stringPrototype());
204 slot.setBase(this);
208 if (object->getOwnPropertySlot(exec, propertyName, slot))
211 slot.setUndefined();
242 bool JSString::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
246 if (getStringPropertySlot(exec, propertyName, slot))
248 return JSString::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
Method.java 52 private int slot; field in class:Method
91 orig.returnType, orig.name, orig.slot);
99 private Method(Class<?> declaring, Class<?>[] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot)
103 this.slot = slot;
116 Object[] annotation = getSignatureAnnotation(declaringClass, slot);
130 int slot);
248 return getDeclaredAnnotations(declaringClass, slot);
251 int slot);
278 = getParameterAnnotations(declaringClass, slot);
    [all...]
Constructor.java 79 int slot; field in class:Constructor
98 * @param slot
99 * the slot of the constructor inside the VM class structure
101 private Constructor (Class<T> declaringClass, Class<?>[] ptypes, Class<?>[] extypes, int slot){
105 this.slot = slot;
109 Object[] annotation = getSignatureAnnotation(declaringClass, slot);
123 int slot);
219 return getDeclaredAnnotations(declaringClass, slot);
222 int slot);
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 110 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
123 slot.setCustom(this, callbackGetter);
137 slot.setValue(jsUndefined());
141 slot.setValue(toJS(exec, value));
148 slot.setCustom(this, staticValueGetter);
155 slot.setCustom(this, staticFunctionGetter);
161 return Base::getOwnPropertySlot(exec, propertyName, slot);
165 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
167 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
173 PropertySlot slot; local
    [all...]
  /external/freetype/src/base/
ftobjs.c 222 /**** FACE, SIZE & GLYPH SLOT OBJECTS ****/
231 ft_glyphslot_init( FT_GlyphSlot slot )
233 FT_Driver driver = slot->face->driver;
240 slot->library = driver->root.library;
245 slot->internal = internal;
251 error = clazz->init_slot( slot );
259 ft_glyphslot_free_bitmap( FT_GlyphSlot slot )
261 if ( slot->internal && ( slot->internal->flags & FT_GLYPH_OWN_BITMAP ) )
263 FT_Memory memory = FT_FACE_MEMORY( slot->face )
379 FT_GlyphSlot slot; local
561 FT_GlyphSlot slot; local
    [all...]
  /external/bluetooth/bluez/compat/
fakehid.txt 16 <3-slot packets> <5-slot packets> <encryption> <slot offset>
56 <encryption> <slot offset> <timing accuracy> <role switch>
98 <3-slot packets> <5-slot packets> <encryption> <slot offset>
  /external/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 26 connect(buttonOk, SIGNAL(clicked()), this, SLOT(sendReply()));
27 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
28 connect(queryEdit, SIGNAL(returnPressed()), this, SLOT(sendReply()));
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 27 connect(closeButton, SIGNAL(clicked()), this, SLOT(close()));
28 connect(scanButton, SIGNAL(clicked()), this, SLOT(scanRequest()));
31 SLOT(bssSelected(QTreeWidgetItem *)));
userdatarequest.cpp 26 connect(buttonOk, SIGNAL(clicked()), this, SLOT(sendReply()));
27 connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
28 connect(queryEdit, SIGNAL(returnPressed()), this, SLOT(sendReply()));

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>