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

<<21222324252627282930>>

  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 98 String base = consumerProperties.getProperty(name local
100 URL baseURL = (base == null) ? null : new URL(base);
123 private String getURL(URL base, String name) throws MalformedURLException {
125 if (base != null) {
126 url = (new URL(base, url)).toExternalForm();
  /external/qemu/distrib/zlib-1.2.3/
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 */
184 base = extra = work; /* dummy value--not used */
188 base = lbase;
189 base -= 257;
195 base = dbase;
225 this.val = base[work[sym]]
    [all...]
  /external/qemu/
loadpng.c 129 const unsigned char* base; member in struct:__anon11223
151 void *readpng(const unsigned char *base, size_t size, unsigned *_width, unsigned *_height)
174 reader.base = base;
175 reader.end = base + size;
176 reader.cursor = base;
178 if(size < 8 || png_sig_cmp((unsigned char*)base, 0, 8)) {
path.c 31 static struct pathelem *base; variable in typeref:struct:pathelem
165 base = new_entry("", NULL, pref_buf);
166 base = add_dir_maybe(base);
167 if (base->num_entries == 0) {
168 free (base);
169 base = NULL;
171 set_parents(base, base);
180 if (!base || !name || name[0] != '/'
    [all...]
  /external/regex-re2/util/
benchmark.cc 84 int base = 1; local
86 while(base*10 < n)
87 base *= 10;
88 if(n < 2*base)
89 return 2*base;
90 if(n < 5*base)
91 return 5*base;
92 return 10*base;
  /external/skia/include/core/
SkReader32.h 35 const void* base() const { return fBase; } function in class:SkReader32
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
mutable-fst.h 124 MutableArcIteratorBase<A> *base; // Specific iterator member in struct:fst::MutableArcIteratorData
148 ~MutableArcIterator() { delete data_.base; }
150 bool Done() const { return data_.base->Done(); }
151 const Arc& Value() const { return data_.base->Value(); }
152 void Next() { data_.base->Next(); }
153 void Reset() { data_.base->Reset(); }
154 void Seek(size_t a) { data_.base->Seek(a); }
155 void SetValue(const Arc &a) { data_.base->SetValue(a); }
  /external/stlport/test/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());
  /external/valgrind/main/include/
pub_tool_debuginfo.h 138 PtrdiffT base; /* offset from sp or fp */ member in struct:__anon14162
  /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/zlib/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/
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/screencap/
screencap.cpp 129 void const* base = 0; local
135 base = screenshot.getPixels();
155 base = (void const *)((char const *)mapbase + offset);
163 if (base) {
167 b.setPixels((void*)base);
178 write(fd, base, size);
  /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);

Completed in 1731 milliseconds

<<21222324252627282930>>