HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 676 - 700 of 1449) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 412 inline size_t normalizePrototypeChain(CallFrame* callFrame, JSValue base, JSValue slotBase, const Identifier& propertyName, size_t& slotOffset)
414 JSCell* cell = base.asCell();
420 // If we didn't find slotBase in base's prototype chain, then base
443 inline size_t normalizePrototypeChain(CallFrame* callFrame, JSCell* base)
447 JSValue v = base->structure()->prototypeForLookup(callFrame);
451 base = v.asCell();
455 if (base->structure()->isDictionary())
456 asObject(base)->flattenDictionaryObject(callFrame->globalData());
471 JSObject* base; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
scanner.c 65 InputSrc base; member in struct:StringInputSrc
140 in->base.line++;
154 cpp->currentInput = in->base.prev;
169 in->base.line--;
180 in->base.line = 1;
181 in->base.scan = byte_scan;
182 in->base.getch = (int (*)(InputSrc *, yystypepp *))str_getch;
183 in->base.ungetch = (void (*)(InputSrc *, int, yystypepp *))str_ungetch;
184 in->base.prev = cpp->currentInput;
185 cpp->currentInput = &in->base;
    [all...]
tokens.c 336 InputSrc base; member in struct:TokenInputSrc
348 in->base.line++;
352 cpp->currentInput = in->base.prev;
363 in->base.name = name;
364 in->base.prev = cpp->currentInput;
365 in->base.scan = (int (*)(InputSrc *, yystypepp *))scan_token;
366 in->base.line = 1;
370 cpp->currentInput = &in->base;
375 InputSrc base; member in struct:UngotToken
384 cpp->currentInput = t->base.prev
    [all...]
  /external/webkit/Source/WebCore/editing/
VisibleSelection.h 65 Position base() const { return m_base; } function in class:WebCore::VisibleSelection
132 bool m_baseIsFirst; // true if base is before the extent
  /external/webkit/Source/WebCore/html/
HTMLViewSourceDocument.cpp 288 RefPtr<HTMLBaseElement> base = HTMLBaseElement::create(baseTag, this); local
291 base->setAttributeMap(attributeMap.release());
292 m_current->parserAddChild(base);
293 base->attach();
294 return base.release();
  /external/webkit/Source/WebCore/rendering/
RenderRubyRun.cpp 63 // The only place where a ruby base can be is in the last position
87 RenderRubyBase* base = rubyBase(); local
88 if (!base) {
89 base = createRubyBase();
90 RenderBlock::addChild(base);
92 return base;
136 // Insertion before a ruby base object.
137 // In this case we need insert a new run before the current one and split the base.
145 // child is not a text -> insert it into the base
155 // If the child is a ruby text, then merge the ruby base with the base o
158 RenderRubyBase* base = rubyBase(); local
178 RenderBlock* base = rubyBase(); local
    [all...]
  /external/webkit/Source/WebCore/xml/
XSLStyleSheetLibxslt.cpp 291 xmlChar* base = xmlNodeGetBase(parentDoc, (xmlNodePtr)parentDoc); local
292 xmlChar* childURI = xmlBuildURI((const xmlChar*)importHref.data(), base);
294 xmlFree(base);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 43 from webkitpy.layout_tests.port import base namespace
156 options = base.DummyOptions(chromium=chromium,
  /frameworks/base/services/sensorservice/
mat.h 126 typedef vec< vec<TYPE, R>, C > base; typedef in class:android::mat
141 mat(const mat& rhs) : base(rhs) { }
142 mat(const base& rhs) : base(rhs) { }
156 base::operator=(rhs);
160 mat& operator=(const base& rhs) {
161 base::operator=(rhs);
174 static_cast<const base&>(lhs),
175 static_cast<const base&>(rhs));
179 static_cast<const base&>(lhs)
257 typedef vec<TYPE, R> base; typedef in class:android::mat
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 61 * left here are not in the code base anymore and thus were not renamed. */
351 String base = className.substring(0, pos); local
352 newName = mRenameClasses.get(base);
  /frameworks/native/opengl/libagl/
mipmap.cpp 33 const GGLSurface* base = &tex->surface; local
34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
36 int w = base->width;
37 int h = base->height;
48 base->format, base->compressedFormat, bpr) != NO_ERROR) {
53 int bs = base->stride;
56 if (base->format == GGL_PIXEL_FORMAT_RGB_565)
58 uint16_t const * src = (uint16_t const *)base->data;
79 else if (base->format == GGL_PIXEL_FORMAT_RGBA_5551
    [all...]
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 38 gralloc_module_t base; member in struct:private_module_t
78 int base; member in struct:private_handle_t
88 base(0), pid(getpid())
  /hardware/msm7k/libgralloc/
gralloc_priv.h 38 gralloc_module_t base; member in struct:private_module_t
85 int base; member in struct:private_handle_t
96 base(0), pid(getpid())
  /hardware/msm7k/libgralloc-qsd8k/
gpu.cpp 38 common.module = const_cast<hw_module_t*>(&module->base.common);
81 intptr_t vaddr = intptr_t(m->framebuffer->base);
95 hnd->base = vaddr;
96 hnd->offset = vaddr - intptr_t(m->framebuffer->base);
120 void* base = 0; // XXX JMG: This should change to just get an address from local
121 // the PmemAllocator rather than getting the base & offset separately
165 err = pma->alloc_pmem_buffer(size, usage, &base, &offset, &fd);
189 hnd->base = int(base)+offset;
280 int index = (hnd->base - m->framebuffer->base) / bufferSize
    [all...]
  /hardware/ti/omap4xxx/hwc/
hal_public.h 46 native_handle_t base; member in struct:__anon18379
103 framebuffer_device_t base; member in struct:__anon18380
116 gralloc_module_t base; member in struct:IMG_gralloc_module_public_t
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerArray.java 23 private static final int base = unsafe.arrayBaseOffset(int[].class); field in class:AtomicIntegerArray
42 return ((long) i << shift) + base;
AtomicLongArray.java 22 private static final int base = unsafe.arrayBaseOffset(long[].class); field in class:AtomicLongArray
41 return ((long) i << shift) + base;
AtomicReferenceArray.java 18 * @param <E> The base class of elements held in this array
24 private static final int base = unsafe.arrayBaseOffset(Object[].class); field in class:AtomicReferenceArray
43 return ((long) i << shift) + base;
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 318 void* base; local
320 base = MMAP(0, len, PROT_READ, MAP_PRIVATE, _M_file_id, offset);
321 if (base != (void*)MAP_FAILED) {
323 this->_M_unmap(base, len);
324 base = 0;
327 base =0;
331 base = 0;
333 return base;
336 void _Filebuf_base::_M_unmap(void* base, streamoff len)
340 munmap((char*)base, len)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iterator.h 66 _Self& operator = (const _Self& __x) { current = __x.base(); return *this; }
69 reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) {}
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
74 iterator_type base() const { return current; } function in class:reverse_iterator
115 { return __x.base() == __y.base(); }
120 { return __y.base() < __x.base(); }
152 { return __y.base() - __x.base(); }
    [all...]
_iterator_old.h 84 _BidirectionalIterator base() const { return current; } function in class:reverse_bidirectional_iterator
137 { return __x.base() == __y.base(); }
176 reverse_iterator(const _Self& __x) : __current(__x.base()) {}
178 _Self& operator=(const _Self& __x) {__current = __x.base(); return *this; }
180 _RandomAccessIterator base() const { return __current; } function in class:reverse_iterator
245 return __x.base() == __y.base();
256 return __y.base() < __x.base();
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
localcharset.c 124 const char *base = "charset.alias"; local
133 /* Concatenate dir and base into freshly allocated file_name. */
136 size_t base_len = strlen (base);
144 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 116 ImageTypeShort base; local
123 base = pyr->ptr[-h] - off;
126 for (h = height; h--; base += pyr->pitch) {
128 base[-1 - w] = base[0];
130 base[off2 + w + 1] = base[off2];
136 base = pyr->ptr[top - pyr->border] - pyr->border;
137 for (h = top; h--; base -= pyr->pitch) {
138 memcpy(base - pyr->pitch, base, pyr->pitch * sizeof(short))
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 116 ImageTypeShort base; local
123 base = pyr->ptr[-h] - off;
126 for (h = height; h--; base += pyr->pitch) {
128 base[-1 - w] = base[0];
130 base[off2 + w + 1] = base[off2];
136 base = pyr->ptr[top - pyr->border] - pyr->border;
137 for (h = top; h--; base -= pyr->pitch) {
138 memcpy(base - pyr->pitch, base, pyr->pitch * sizeof(short))
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
ggc.h 68 In an array, terminated by having base == NULL. */
70 void *base; member in struct:ggc_root_tab
86 struct htab * *base; member in struct:ggc_cache_tab

Completed in 4176 milliseconds

<<21222324252627282930>>