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

123456789

/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/chromium/base/threading/
H A Dthread_local_posix.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 int error = pthread_key_create(&slot, NULL);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 int error = pthread_key_delete(slot);
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
29 return pthread_getspecific(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
34 int error = pthread_setspecific(slot, value);
H A Dthread_local_win.cc16 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { argument
17 slot = TlsAlloc();
18 CHECK_NE(slot, TLS_OUT_OF_INDEXES);
22 void ThreadLocalPlatform::FreeSlot(SlotType& slot) { argument
23 if (!TlsFree(slot)) {
24 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { argument
30 return TlsGetValue(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { argument
35 if (!TlsSetValue(slot, valu
[all...]
H A Dthread_local_storage_unittest.cc63 ThreadLocalStorage::Slot slot; local
64 slot.Set(reinterpret_cast<void*>(123));
65 int value = reinterpret_cast<intptr_t>(slot.Get());
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObject.cpp50 HandleSlot slot = handle.slot(); local
51 HandleHeap::heapFor(slot)->deallocate(slot);
/external/mesa3d/src/glsl/
H A Dbuiltin_variables.h24 #include "main/core.h" /* for slot numbers */
28 int slot; member in struct:builtin_variable
/external/webkit/Source/JavaScriptCore/heap/
H A DLocalScope.h70 HandleSlot slot = m_handleStack->push(); local
73 return Local<T>(slot, ptr);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSStaticScopeObject.cpp70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot) argument
72 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.cpp71 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot) argument
92 slot.setValue(thisObj, location->get(), thisObj->offsetForLocation(location));
H A DStringObject.cpp53 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
55 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
57 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
60 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
62 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
64 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
74 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
78 JSObject::put(exec, propertyName, value, slot);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicStringHash.h54 static void constructDeletedValue(WTF::AtomicString& slot) { new (&slot) WTF::AtomicString(HashTableDeletedValue); } argument
55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); } argument
/external/webkit/Source/WebCore/bindings/js/
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, this, 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, this, slot);
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, this, slot);
H A DJSDOMStringMapCustom.cpp63 PropertySlot slot; local
64 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
83 PropertySlot slot; local
84 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
H A DJSStorageCustom.cpp55 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))
/external/webkit/Source/WebKit/chromium/tests/
H A DArenaTestHelpers.h55 size_t slot = m_allocatedRegions.find(ptr); local
56 ASSERT_NE(slot, notFound);
57 m_allocatedRegions.remove(slot);
/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/Source/JavaScriptCore/wtf/
H A DHashTraits.h49 static void constructDeletedValue(T& slot) { slot = static_cast<T>(-1); } argument
63 static void constructDeletedValue(T& slot) { slot = -std::numeric_limits<T>::infinity(); } argument
75 static void constructDeletedValue(T& slot) { slot = std::numeric_limits<T>::max() - 1; } argument
82 static void constructDeletedValue(P*& slot) { slot = reinterpret_cast<P*>(-1); } argument
88 static void constructDeletedValue(T& slot) { new (&slot) argument
108 constructDeletedValue(TraitType& slot) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DIntPointHash.h39 static void constructDeletedValue(WebCore::IntPoint& slot) { slot = WebCore::IntPoint(std::numeric_limits<int>::min(), 0); } argument
40 static bool isDeletedValue(const WebCore::IntPoint& slot) { return slot == WebCore::IntPoint(std::numeric_limits<int>::min(), 0); } argument
H A DIntRectHash.h53 static void constructDeletedValue(WebCore::IntRect& slot) { new (&slot) WebCore::IntRect(-1, -1, -1, -1); } argument
H A DIntSizeHash.h39 static void constructDeletedValue(WebCore::IntSize& slot) { new (&slot) WebCore::IntSize(-1, -1); } argument
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor.cc75 PK11SlotInfo* slot = GetKeySlotForDB(); local
76 SECStatus result = PK11_Authenticate(slot, PR_TRUE, NULL);
78 FreeSlot(slot);
90 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
98 FreeSlot(slot);

Completed in 1159 milliseconds

123456789