/external/webkit/Source/JavaScriptCore/bytecode/ |
Instruction.h | 64 WriteBarrier<Structure> base; member in struct:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo 73 base.set(globalData, owner, _base); 81 base.set(globalData, owner, _base); 89 base.set(globalData, owner, _base); 114 ASSERT(info.base); 116 markStack.append(&info.base);
|
/external/webkit/Source/JavaScriptCore/wtf/ |
OSAllocatorSymbian.cpp | 52 return static_cast<void*>(c.Base()); 76 // Reserve memory and return the base address of the region 79 void* base = 0; local 81 base = allocateCodeChunk(reservationSize); 83 base = dataAllocatorInstance()->reserve(reservationSize); 84 return base; 115 void* base = reserveUncommitted(bytes, usage, writable, executable); local 116 commit(base, bytes, writable, executable); 117 return base;
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
TextPosition.h | 43 * both practices coexist in WebKit source base, 'int' type should be replaced with 55 * that accept or return integer have a name explicitly defining base of integer. For this reason 73 static TextPosition<NUMBER> minimumPosition() { return TextPosition<NUMBER>(NUMBER::base(), NUMBER::base()); } 98 static ZeroBasedNumber base() { return 0; } function in class:WTF::ZeroBasedNumber 119 static OneBasedNumber base() { return 1; } function in class:WTF::OneBasedNumber
|
/external/webkit/Source/WebCore/platform/ |
Arena.h | 60 uword base; // aligned base address member in struct:WebCore::Arena 123 if (UPTRDIFF(_m, _a->base) <= UPTRDIFF(_a->avail, _a->base)) { \
|
/external/webkit/Source/WebCore/rendering/mathml/ |
RenderMathMLSubSup.cpp | 67 // We already have a base, so this is the super/subscripts being added. 108 RenderObject* base = firstChild(); local 109 if (!base) 112 if (base->firstChild()->isRenderMathMLBlock()) { 113 RenderMathMLBlock* block = toRenderMathMLBlock(base->firstChild()); 155 if (RenderObject* base = firstChild()) { 157 RenderObject* current = base->firstChild(); 167 base->style()->setPaddingTop(Length(heightDiff, Fixed)); 168 base->setNeedsLayout(true); 177 RenderObject* base = firstChild() local [all...] |
RenderMathMLUnderOver.cpp | 75 // this is the base so just append it 124 RenderObject* base = firstChild(); local 125 if (!base) 128 // For over or underover, the base is the sibling of the first child 130 base = base->nextSibling(); 132 if (!base) 135 // use the child of the row which is the actual base 136 base = base->firstChild() 149 RenderObject* base = 0; local 260 RenderObject* base = current->firstChild(); local 269 RenderObject* base = current->firstChild(); local [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
single_test_runner.py | 33 from webkitpy.layout_tests.port import base namespace 92 return base.DriverOutput(self._port.expected_text(self._filename), 109 return base.DriverInput(self._filename, self._timeout, image_hash) 272 base.DriverInput(self._reference_filename, self._timeout, driver_output1.image_hash))
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
dryrun.py | 53 import base namespace 106 class DryrunDriver(base.Driver): 139 return base.DriverOutput(text, image, checksum, audio, crash=False,
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
rebaselineserver_unittest.py | 32 from webkitpy.layout_tests.port import base namespace 248 'base': {'.txt': False}, 262 'base': {'.txt': True}, 274 expected_baselines={'base': {'.txt': True}}) 283 layout_tests_directory = base.Port().layout_tests_dir()
|
/external/webp/src/utils/ |
rescaler.c | 68 const int32_t base = src[x_in]; local 69 const int32_t frac = base * (-accum); 71 wrk->frow[x_out] = (sum + base) * wrk->x_sub - frac;
|
/external/zlib/src/contrib/infback9/ |
inftree9.c | 55 const unsigned short FAR *base; /* base value table to use */ local 57 int end; /* use base and extra for symbol > end */ 60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ 68 static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ 177 base = extra = work; /* dummy value--not used */ 181 base = lbase; 182 base -= 257; 188 base = dbase; 219 this.val = base[work[sym]] [all...] |
/external/zlib/src/ |
inftrees.c | 55 const unsigned short FAR *base; /* base value table to use */ local 57 int end; /* use base and extra for symbol > end */ 60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ 66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ 183 base = extra = work; /* dummy value--not used */ 187 base = lbase; 188 base -= 257; 194 base = dbase; 225 here.val = base[work[sym]] [all...] |
/frameworks/base/cmds/screenshot/ |
screenshot.c | 134 char base[PATH_MAX] = ""; local 137 if (!base[0]) { 140 strcpy(base, outfile); 142 snprintf(outfile, PATH_MAX, "%s-%d.png", base, ++i);
|
/frameworks/base/core/java/android/app/backup/ |
FileBackupHelper.java | 77 File base = mContext.getFilesDir(); local 81 fullPaths[i] = (new File(base, files[i])).getAbsolutePath();
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
CallbackFilter.java | 18 package android.filterpacks.base;
|
/frameworks/native/libs/binder/ |
MemoryHeapBase.cpp | 94 status_t MemoryHeapBase::init(int fd, void *base, int size, int flags, const char* device) 100 mBase = base; 127 void* base = (uint8_t*)mmap(0, size, local 129 if (base == MAP_FAILED) { 135 //ALOGD("mmap(fd=%d, base=%p, size=%lu)", fd, base, size); 136 mBase = base; 158 //ALOGD("munmap(fd=%d, base=%p, size=%lu)", fd, mBase, mSize);
|
/ndk/tests/device/test-gnustl-full/unit/ |
uninitialized_test.cpp | 81 struct base {}; struct 82 struct derived : public base {}; 216 //base *pb = &d; 218 //base **ppb = &pd; 220 vector<base*> dst(src.begin(), src.end()); 221 vector<base*>::iterator it(dst.begin()), end(dst.end());
|
/ndk/tests/device/test-stlport/unit/ |
uninitialized_test.cpp | 81 struct base {}; struct 82 struct derived : public base {}; 216 //base *pb = &d; 218 //base **ppb = &pd; 220 vector<base*> dst(src.begin(), src.end()); 221 vector<base*>::iterator it(dst.begin()), end(dst.end());
|
/packages/apps/Calculator/src/com/android/calculator2/ |
HistoryAdapter.java | 74 String base = entry.getBase(); local 78 String res = mEval.evaluate(base);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
mtrr.h | 33 unsigned long base; /* Base address */ member in struct:mtrr_sentry 47 unsigned long base; /* Base address */ member in struct:mtrr_gentry 56 unsigned long base; /* Base address */ member in struct:mtrr_gentry
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
ftw.h | 108 int base; member in struct:FTW
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
mtrr.h | 33 unsigned long base; /* Base address */ member in struct:mtrr_sentry 47 unsigned long base; /* Base address */ member in struct:mtrr_gentry 56 unsigned long base; /* Base address */ member in struct:mtrr_gentry
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
ftw.h | 108 int base; member in struct:FTW
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
mtrr.h | 33 unsigned long base; /* Base address */ member in struct:mtrr_sentry 47 unsigned long base; /* Base address */ member in struct:mtrr_gentry 56 unsigned long base; /* Base address */ member in struct:mtrr_gentry
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
ftw.h | 108 int base; member in struct:FTW
|