/external/freetype/include/freetype/ |
ftsynth.h | 67 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable 71 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
|
ftbitmap.h | 123 /* 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/Source/JavaScriptCore/API/ |
JSCallbackObject.cpp | 50 HandleSlot slot = handle.slot(); local 51 HandleHeap::heapFor(slot)->deallocate(slot);
|
/dalvik/vm/native/ |
java_lang_reflect_Constructor.cpp | 26 * Class[] parameterTypes, int slot, boolean noAccessCheck) 41 int slot = args[4]; local 65 meth = dvmSlotToMethod(declaringClass, slot);
|
java_lang_reflect_Method.cpp | 25 * static int getMethodModifiers(Class decl_class, int slot) 34 int slot = args[1]; local 37 meth = dvmSlotToMethod(declaringClass, slot); 43 * Class[] parameterTypes, Class returnType, int slot, boolean noAccessCheck) 56 int slot = args[6]; local 65 meth = dvmSlotToMethod(declaringClass, slot); 116 * static Annotation[] getDeclaredAnnotations(Class declaringClass, int slot) 124 int slot = args[1]; local 127 meth = dvmSlotToMethod(declaringClass, slot); 137 * Class declaringClass, int slot, Class annotationType) 143 int slot = args[1]; local 158 int slot = args[1]; local 174 int slot = args[1]; local 196 int slot = args[2]; local 220 int slot = args[1]; local [all...] |
/external/webkit/Source/JavaScriptCore/heap/ |
LocalScope.h | 70 HandleSlot slot = m_handleStack->push(); local 73 return Local<T>(slot, ptr);
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListButtonsDiagonalAcrossItems.java | 20 import static android.util.ListItemFactory.Slot; 52 final Slot slot = position == 0 ? Slot.Left : local 53 (position == 1 ? Slot.Middle : Slot.Right); 55 parent.getContext(), desiredHeight, slot);
|
/external/chromium/base/threading/ |
thread_local_storage_unittest.cc | 25 static ThreadLocalStorage::Slot tls_slot(LINKER_INITIALIZED); 63 ThreadLocalStorage::Slot slot; local 64 slot.Set(reinterpret_cast<void*>(123)); 65 int value = reinterpret_cast<intptr_t>(slot.Get());
|
/external/mesa3d/src/glsl/ |
builtin_variables.h | 24 #include "main/core.h" /* for slot numbers */ 28 int slot; member in struct:builtin_variable
|
/external/v8/src/ |
variables.cc | 60 Slot* Variable::AsSlot() const { 66 Slot* slot = AsSlot(); local 67 return slot != NULL && slot->IsStackAllocated(); 72 Slot* s = AsSlot(); 73 return s != NULL && s->type() == Slot::PARAMETER; 78 Slot* s = AsSlot(); 79 return s != NULL && s->type() == Slot::LOCAL; 84 Slot* s = AsSlot() [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMStringMapCustom.cpp | 63 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))
|
JSHistoryCustom.cpp | 55 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 72 slot.setCustom(this, nonCachingStaticBackFunctionGetter); 75 slot.setCustom(this, nonCachingStaticForwardFunctionGetter); 78 slot.setCustom(this, nonCachingStaticGoFunctionGetter); 85 slot.setCustom(this, objectToStringFunctionGetter); 91 slot.setUndefined(); 109 PropertySlot slot; local 113 slot.setCustom(this, nonCachingStaticBackFunctionGetter); 114 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes()); 117 slot.setCustom(this, nonCachingStaticForwardFunctionGetter) 129 PropertySlot slot; local [all...] |
JSStorageCustom.cpp | 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))
|
/external/webkit/Source/WebCore/bridge/ |
runtime_method.cpp | 67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot) 70 slot.setCacheableCustom(this, lengthGetter); 74 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot); 80 PropertySlot slot; local 81 slot.setCustom(this, lengthGetter); 82 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
|
runtime_array.cpp | 78 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 81 slot.setCacheableCustom(this, lengthGetter); 89 slot.setCustomIndex(this, index, indexGetter); 94 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 100 PropertySlot slot; local 101 slot.setCustom(this, lengthGetter); 102 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum); 110 PropertySlot slot; local 111 slot.setCustomIndex(this, index, indexGetter); 112 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | DontEnum) [all...] |
/external/webkit/Source/WebKit/chromium/tests/ |
ArenaTestHelpers.h | 55 size_t slot = m_allocatedRegions.find(ptr); local 56 ASSERT_NE(slot, notFound); 57 m_allocatedRegions.remove(slot);
|
/frameworks/base/libs/rs/ |
rsSampler.cpp | 60 void Sampler::bindToContext(SamplerState *ss, uint32_t slot) { 61 ss->mSamplers[slot].set(this); 62 mBoundSlot = slot; 66 int32_t slot = mBoundSlot; local 68 ss->mSamplers[slot].clear();
|
/frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/ |
ContextManager.cpp | 42 // Initialize context slot occupation table to false 53 // Try to allocate context on the managed context slot. 80 // No slot available, allocate at arbitary address. 97 // slot address. And the image offset is aligned to the pagesize. 111 ssize_t slot = getSlotIndexFromAddress(addr); local 112 if (slot < 0) { 113 LOGE("Suggested address is not a bcc context slot address\n"); 118 if (mContextSlotOccupied[slot]) { 119 LOGW("Suggested bcc context slot has been occupied.\n"); 140 mContextSlotOccupied[slot] = true 162 ssize_t slot = getSlotIndexFromAddress(addr); local 171 ssize_t slot = getSlotIndexFromAddress(addr); local 186 size_t slot = offset \/ ContextSize; local [all...] |
/frameworks/base/libs/rs/driver/ |
rsdVertexArray.cpp | 66 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const { 70 LOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%x", 71 idx, slot, 100 int32_t slot = sc->vtxAttribSlot(mAttribs[ct].name); local 102 logAttrib(ct, slot); 104 if (slot < 0 || slot >= (int32_t)maxAttrs) { 107 glEnableVertexAttribArray(slot); 108 state->mAttrsEnabled[slot] = true; 110 glVertexAttribPointer(slot, [all...] |
/libcore/luni/src/main/java/java/io/ |
EmulatedFields.java | 32 // A slot is a field plus its value 86 * Build emulated slots that correspond to emulated fields. A slot is a 118 ObjectSlot slot = findSlot(name, null); local 119 if (slot == null) { 122 return slot.defaulted; 132 * null}, no such compatibility checking is performed and the slot is 140 * corresponding slot is returned. 141 * @return the object slot, or {@code null} if there is no field with that 147 ObjectSlot slot = slotsToSerialize[i]; local 148 if (slot.field.getName().equals(fieldName)) 174 ObjectSlot slot = new ObjectSlot(); local 186 ObjectSlot slot = findSlot(name, type); local 209 ObjectSlot slot = findMandatorySlot(name, byte.class); local 229 ObjectSlot slot = findMandatorySlot(name, char.class); local 249 ObjectSlot slot = findMandatorySlot(name, double.class); local 269 ObjectSlot slot = findMandatorySlot(name, float.class); local 289 ObjectSlot slot = findMandatorySlot(name, int.class); local 309 ObjectSlot slot = findMandatorySlot(name, long.class); local 329 ObjectSlot slot = findMandatorySlot(name, null); local 349 ObjectSlot slot = findMandatorySlot(name, short.class); local 369 ObjectSlot slot = findMandatorySlot(name, boolean.class); local 386 ObjectSlot slot = findMandatorySlot(name, byte.class); local 404 ObjectSlot slot = findMandatorySlot(name, char.class); local 422 ObjectSlot slot = findMandatorySlot(name, double.class); local 440 ObjectSlot slot = findMandatorySlot(name, float.class); local 458 ObjectSlot slot = findMandatorySlot(name, int.class); local 476 ObjectSlot slot = findMandatorySlot(name, long.class); local 498 ObjectSlot slot = findMandatorySlot(name, valueClass); local 516 ObjectSlot slot = findMandatorySlot(name, short.class); local 534 ObjectSlot slot = findMandatorySlot(name, boolean.class); local [all...] |
/bionic/libc/bionic/ |
malloc_debug_common.h | 54 size_t slot; member in struct:HashEntry
|
/external/chromium/chrome/browser/importer/ |
nss_decryptor.cc | 75 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);
|
/external/chromium/chrome/browser/ui/views/ |
first_run_search_engine_view.h | 57 void set_slot(int slot) { slot_ = slot; } 58 int slot() const { return slot_; } function in class:SearchEngineChoice 71 // Used for UX testing. Gives slot in which search engine was shown.
|
/external/chromium/crypto/ |
rsa_private_key_nss.cc | 111 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local 112 if (!slot) { 119 PK11_FreeSlot(slot); 126 PK11_FreeSlot(slot); 132 result->key_ = PK11_FindKeyByKeyID(slot, ck_id, NULL); 135 PK11_FreeSlot(slot); 194 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local 195 if (!slot) 201 result->key_ = PK11_GenerateKeyPair(slot, CKM_RSA_PKCS_KEY_PAIR_GEN, ¶m, 203 PK11_FreeSlot(slot); 220 PK11SlotInfo *slot = GetPrivateNSSKeySlot(); local [all...] |
/external/chromium/net/http/ |
des.cc | 107 PK11SlotInfo* slot = NULL; local 117 slot = PK11_GetBestSlot(cipher_mech, NULL); 118 if (!slot) 123 symkey = PK11_ImportSymKey(slot, cipher_mech, 156 if (slot) 157 PK11_FreeSlot(slot);
|