HomeSort by relevance Sort by last modified time
    Searched defs:slot (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /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/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/native/libs/gui/tests/
BufferQueue_test.cpp 70 int slot; local
79 mBQ->dequeueBuffer(&slot, &fence, 1, 1, 0,
81 ASSERT_EQ(OK, mBQ->requestBuffer(slot, &buf));
82 ASSERT_EQ(OK, mBQ->queueBuffer(slot, qbi, &qbo));
87 mBQ->dequeueBuffer(&slot, &fence, 1, 1, 0,
89 ASSERT_EQ(OK, mBQ->requestBuffer(slot, &buf));
90 ASSERT_EQ(OK, mBQ->queueBuffer(slot, qbi, &qbo));
  /frameworks/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();
  /external/compiler-rt/lib/sanitizer_common/tests/
standalone_malloc_test.cc 40 size_t slot = i % allocated.size(); local
41 char *p = allocated[slot].first;
43 size_t size = allocated[slot].second;
45 swap(allocated[slot], allocated.back());
  /frameworks/rs/driver/
rsdVertexArray.cpp 66 void RsdVertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
70 ALOGV("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...]
  /dalvik/vm/
IndirectRefTable.cpp 79 IndirectRefSlot* slot; local
85 slot = &table_[topIndex - 1];
86 assert(slot->obj != NULL);
87 while ((--slot)->obj != NULL) {
88 assert(slot >= table_ + prevState.parts.topIndex);
123 slot = &table_[topIndex++];
127 slot->obj = obj;
128 slot->serial = nextSerial(slot->serial);
129 result = toIndirectRef(slot - table_, slot->serial, kind_)
    [all...]
  /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, &param,
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);
  /external/webkit/Source/JavaScriptCore/runtime/
Arguments.cpp 144 bool Arguments::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot)
148 slot.setValue(d->registers[d->firstParameterIndex + i].get());
150 slot.setValue(d->extraArguments[i - d->numParameters].get());
154 return JSObject::getOwnPropertySlot(exec, Identifier(exec, UString::number(i)), slot);
181 bool Arguments::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
187 slot.setValue(d->registers[d->firstParameterIndex + i].get());
189 slot.setValue(d->extraArguments[i - d->numParameters].get());
194 slot.setValue(jsNumber(d->numArguments));
200 slot.setValue(d->callee.get());
209 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
266 PutPropertySlot slot; local
    [all...]

Completed in 1002 milliseconds

1 2 3 4 5 6 7 8 91011