/external/guava/guava/src/com/google/common/base/ |
Equivalence.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
Objects.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
Preconditions.java | 17 package com.google.common.base;
|
Stopwatch.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkNotNull; 20 import static com.google.common.base.Preconditions.checkState;
|
Strings.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkArgument; 20 import static com.google.common.base.Preconditions.checkNotNull;
|
/external/guava/guava-tests/test/com/google/common/base/ |
AbstractIteratorTest.java | 17 package com.google.common.base;
|
ObjectsTest.java | 17 package com.google.common.base;
|
/external/harfbuzz/src/ |
harfbuzz-hebrew.c | 87 hb_uint16 base = shapedChars[cluster_start]; local 91 if (base >= 0x5d0 92 && base <= 0x5ea 93 && base != 0x5d7 94 && base != 0x5dd 95 && base != 0x5df 96 && base != 0x5e2 97 && base != 0x5e5) { 98 shaped = base - 0x5d0 + 0xfb30; 99 } else if (base == 0xfb2a || base == 0xfb2b /* Shin with Shin or Sin dot */) [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
MessageProtocol.java | 33 package com.jme3.network.base;
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/ |
FractalTileLoader.java | 44 private final Basis base; field in class:FractalTileLoader 47 public FractalTileLoader(Basis base, float heightScale) { 48 this.base = base; 55 FloatBuffer buffer = this.base.getBuffer(location.x * (this.quadSize - 1), location.z * (this.quadSize - 1), 0, this.quadSize);
|
/external/libvorbis/vq/ |
distribution.c | 97 long base=c->lengthlist[0]; local 104 if(c->lengthlist[i]>base)base=c->lengthlist[i]; 118 for(k=0;k<base-c->lengthlist[j];k++)printf("*"); 129 countarray[index]+=(1<<(base-c->lengthlist[j]));
|
huffbuild.c | 63 char *base; local 74 base=strdup(infile); 75 if(strrchr(base,'.')) 76 strrchr(base,'.')[0]='\0'; 153 char *buffer=alloca(strlen(base)+5); 154 strcpy(buffer,base); 165 fprintf(file,"static const long _huff_lengthlist_%s[] = {\n",base); 175 fprintf(file,"static const static_codebook _huff_book_%s = {\n",base); 177 fprintf(file,"\t(long *)_huff_lengthlist_%s,\n",base);
|
latticetune.c | 140 long i,k,base=c->lengthlist[0]; local 142 if(c->lengthlist[i]>base)base=c->lengthlist[i]; 155 for(k=0;k<base-c->lengthlist[j];k++)fprintf(stderr,"*");
|
/external/libxslt/libxslt/ |
imports.c | 90 xmlChar *base = NULL; local 106 base = xmlNodeGetBase(style->doc, cur); 107 URI = xmlBuildURI(uriRef, base); 165 if (base != NULL) 166 xmlFree(base); 187 xmlChar *base = NULL; local 205 base = xmlNodeGetBase(style->doc, cur); 206 URI = xmlBuildURI(uriRef, base); 270 if (base != NULL) 271 xmlFree(base); [all...] |
/external/linux-tools-perf/ |
perf.h | 129 void *base; member in struct:perf_mmap 136 struct perf_event_mmap_page *pc = mm->base; 145 struct perf_event_mmap_page *pc = md->base;
|
/external/llvm/include/llvm/ADT/ |
PackedVector.h | 78 typedef PackedVectorBase<T, BitNum, std::numeric_limits<T>::is_signed> base; typedef in class:llvm::PackedVector 126 return base::getValue(Bits, Idx);
|
/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:__anon12553 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:__anon15509
|