Searched defs:slot (Results 1 - 25 of 144) sorted by relevance

123456

/external/freetype/include/freetype/
H A Dftsynth.h67 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
71 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h123 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
178 /* Make sure that a glyph slot owns `slot->bitmap'. */
181 /* slot :: The glyph slot. */
191 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/webkit/JavaScriptCore/runtime/
H A DPropertySlot.cpp29 JSValue PropertySlot::functionGetter(ExecState* exec, const Identifier&, const PropertySlot& slot) argument
36 CallType callType = slot.m_data.getterFunc->getCallData(callData);
38 return callData.native.function(exec, slot.m_data.getterFunc, slot.slotBase(), exec->emptyList());
41 return asFunction(slot.m_data.getterFunc)->call(exec, slot.slotBase(), exec->emptyList());
H A DJSStaticScopeObject.cpp72 inline bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot) argument
74 return symbolTableGet(propertyName, slot);
H A DRegExpMatchesArray.h33 virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
54 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot) argument
58 JSArray::put(exec, propertyName, v, slot);
H A DLookup.cpp67 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot) argument
79 slot.setValueSlot(thisObj, location, thisObj->offsetForLocation(location));
H A DStringObject.cpp50 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
52 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
54 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
57 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
59 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
61 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
71 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
75 JSObject::put(exec, propertyName, value, slot);
/external/webkit/WebCore/bindings/js/
H A DJSDataGridColumnListCustom.cpp46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
48 JSDataGridColumnList* thisObj = static_cast<JSDataGridColumnList*>(asObject(slot.slotBase()));
H A DJSHTMLFrameSetElementCustom.cpp50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
52 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slot.slotBase()));
H A DJSMimeTypeArrayCustom.cpp36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
38 JSMimeTypeArray* thisObj = static_cast<JSMimeTypeArray*>(asObject(slot.slotBase()));
H A DJSNamedNodeMapCustom.cpp43 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
45 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slot.slotBase()));
H A DJSPluginArrayCustom.cpp36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
38 JSPluginArray* thisObj = static_cast<JSPluginArray*>(asObject(slot.slotBase()));
H A DJSPluginCustom.cpp35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
37 JSPlugin* thisObj = static_cast<JSPlugin*>(asObject(slot.slotBase()));
H A DJSHTMLAppletElementCustom.cpp36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
46 bool JSHTMLAppletElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot);
61 JSValue JSHTMLAppletElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
63 return runtimeObjectGetter(exec, propertyName, slot);
H A DJSHTMLEmbedElementCustom.cpp36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
46 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot);
61 JSValue JSHTMLEmbedElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
63 return runtimeObjectGetter(exec, propertyName, slot);
H A DJSHTMLFormElementCustom.cpp47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
49 JSHTMLElement* jsForm = static_cast<JSHTMLFormElement*>(asObject(slot.slotBase()));
H A DJSHTMLObjectElementCustom.cpp36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
46 bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot);
61 JSValue JSHTMLObjectElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
63 return runtimeObjectGetter(exec, propertyName, slot);
H A DJSNodeListCustom.cpp59 JSValue JSNodeList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
61 JSNodeList* thisObj = static_cast<JSNodeList*>(asObject(slot.slotBase()));
H A DJSStorageCustom.cpp44 JSValue JSStorage::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slot.slotBase()));
55 PropertySlot slot; local
56 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
81 PropertySlot slot; local
82 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
H A DJSStyleSheetListCustom.cpp55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) argument
57 JSStyleSheetList* thisObj = static_cast<JSStyleSheetList*>(asObject(slot.slotBase()));
H A DScriptObject.cpp66 PutPropertySlot slot; local
67 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsString(m_scriptState, value), slot);
78 PutPropertySlot slot; local
79 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), value.jsObject(), slot);
86 PutPropertySlot slot; local
87 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsString(m_scriptState, value), slot);
94 PutPropertySlot slot; local
95 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsNumber(m_scriptState, value), slot);
102 PutPropertySlot slot; local
103 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsNumber(m_scriptState, value), slot);
110 PutPropertySlot slot; local
118 PutPropertySlot slot; local
126 PutPropertySlot slot; local
134 PutPropertySlot slot; local
142 PutPropertySlot slot; local
[all...]
/external/webkit/WebCore/platform/
H A DKURLHash.h55 static void constructDeletedValue(WebCore::KURL& slot) { new (&slot) WebCore::KURL(WebCore::ParsedURLString, WebCore::String(HashTableDeletedValue)); } argument
56 static bool isDeletedValue(const WebCore::KURL& slot) { return slot.string().isHashTableDeletedValue(); } argument
/external/webkit/WebCore/platform/text/
H A DAtomicStringHash.h58 static void constructDeletedValue(WebCore::AtomicString& slot) { new (&slot) WebCore::AtomicString(HashTableDeletedValue); } argument
59 static bool isDeletedValue(const WebCore::AtomicString& slot) { return slot.isHashTableDeletedValue(); } argument
/external/freetype/src/raster/
H A Dftrend1.c60 FT_GlyphSlot slot,
67 if ( slot->format != render->glyph_format )
74 FT_Outline_Transform( &slot->outline, matrix );
77 FT_Outline_Translate( &slot->outline, delta->x, delta->y );
87 FT_GlyphSlot slot,
92 if ( slot->format == render->glyph_format )
93 FT_Outline_Get_CBox( &slot->outline, cbox );
97 /* convert a slot's glyph image into a bitmap */
100 FT_GlyphSlot slot,
115 if ( slot
59 ft_raster1_transform( FT_Renderer render, FT_GlyphSlot slot, const FT_Matrix* matrix, const FT_Vector* delta ) argument
86 ft_raster1_get_cbox( FT_Renderer render, FT_GlyphSlot slot, FT_BBox* cbox ) argument
99 ft_raster1_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DHashTraits.h47 static void constructDeletedValue(T& slot) { slot = static_cast<T>(-1); } argument
61 static void constructDeletedValue(T& slot) { slot = -std::numeric_limits<T>::infinity(); } argument
73 static void constructDeletedValue(T& slot) { slot = std::numeric_limits<T>::max() - 1; } argument
80 static void constructDeletedValue(P*& slot) { slot = reinterpret_cast<P*>(-1); } argument
86 static void constructDeletedValue(RefPtr<P>& slot) { new (&slot) RefPt argument
103 constructDeletedValue(TraitType& slot) argument
[all...]

Completed in 167 milliseconds

123456