/external/elfutils/tests/ |
vdsosyms.c | 87 int result = dwfl_linux_proc_report (dwfl, pid); local 88 if (result < 0) 90 else if (result > 0) 91 error (2, result, "dwfl_linux_proc_report"); 94 result = dwfl_linux_proc_attach (dwfl, pid, false); 95 if (result < 0) 97 else if (result > 0) 98 error (2, result, "dwfl_linux_proc_attach");
|
/external/freetype/src/cff/ |
cffcmap.c | 63 FT_UInt result = 0; local 67 result = cmap->gids[char_code]; 69 return result; 77 FT_UInt result = 0; local 93 result = cmap->gids[code]; 94 if ( result != 0 ) 103 return result;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
CacheLoader.java | 26 Resource<Z> result = null; local 28 result = decoder.decode(fromCache, width, height); 34 if (result == null) { 40 return result;
|
OriginalKey.java | 44 int result = id.hashCode(); local 45 result = 31 * result + signature.hashCode(); 46 return result;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/ |
BaseKeyPool.java | 12 T result = keyPool.poll(); local 13 if (result == null) { 14 result = create(); 16 return result;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
UriLoader.java | 29 DataFetcher<T> result = null; local 33 result = getAssetPathFetcher(context, path); 35 result = getLocalUriFetcher(context, model); 38 result = urlLoader.getResourceFetcher(new GlideUrl(model.toString()), width, height); 41 return result;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
BitmapTransformation.java | 52 final Resource<Bitmap> result; local 54 result = resource; 56 result = BitmapResource.obtain(transformed, bitmapPool); 59 return result; 64 * result.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/ |
GifBitmapWrapperDrawableTranscoder.java | 29 final Resource<? extends GlideDrawable> result; local 31 result = bitmapDrawableResourceTranscoder.transcode(bitmapResource); 33 result = gifBitmap.getGifResource(); 36 return (Resource<GlideDrawable>) result;
|
TranscoderRegistry.java | 47 final ResourceTranscoder<?, ?> result; local 50 result = factories.get(GET_KEY); 52 if (result == null) { 56 return (ResourceTranscoder<Z, R>) result;
|
/external/glide/library/src/main/java/com/bumptech/glide/provider/ |
DataLoadProviderRegistry.java | 43 DataLoadProvider<?, ?> result; local 46 result = providers.get(GET_KEY); 48 if (result == null) { 49 result = EmptyDataLoadProvider.get(); 51 return (DataLoadProvider<T, Z>) result;
|
/external/glide/library/src/main/java/com/bumptech/glide/signature/ |
MediaStoreSignature.java | 62 int result = mimeType != null ? mimeType.hashCode() : 0; local 63 result = 31 * result + (int) (dateModified ^ (dateModified >>> 32)); 64 result = 31 * result + orientation; 65 return result;
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
MultiClassKey.java | 54 int result = first.hashCode(); local 55 result = 31 * result + second.hashCode(); 56 return result;
|
/external/gmock/src/ |
gmock-internal-utils.cc | 55 string result; local 65 if (starts_new_word && result != "") 66 result += ' '; 67 result += ToLower(*p); 70 return result;
|
/external/google-breakpad/src/client/windows/sender/ |
crash_report_sender.cc | 71 bool result = HTTPUpload::SendRequest( local 75 if (result) {
|
/external/google-breakpad/src/common/tests/ |
file_utils.cc | 61 bool result = true; local 63 while (result) { 67 result = false; 80 result = false; 89 result = false; 93 result = false; 96 return result;
|
/external/google-breakpad/src/processor/ |
microdump_processor_unittest.cc | 96 google_breakpad::ProcessResult result = local 99 ASSERT_EQ(google_breakpad::PROCESS_OK, result); 114 google_breakpad::ProcessResult result = local 116 ASSERT_EQ(google_breakpad::PROCESS_ERROR_MINIDUMP_NOT_FOUND, result); 121 google_breakpad::ProcessResult result = local 123 ASSERT_EQ(google_breakpad::PROCESS_ERROR_NO_THREAD_LIST, result); 150 google_breakpad::ProcessResult result = local 153 ASSERT_EQ(google_breakpad::PROCESS_ERROR_NO_THREAD_LIST, result);
|
simple_symbol_supplier.cc | 69 SymbolResult result; local 70 if ((result = GetSymbolFileAtPathFromRoot(module, system_info, 73 return result;
|
/external/google-breakpad/src/testing/src/ |
gmock-internal-utils.cc | 55 string result; local 65 if (starts_new_word && result != "") 66 result += ' '; 67 result += ToLower(*p); 70 return result;
|
/external/google-tv-pairing-protocol/cpp/tests/polo/util/ |
poloutiltest.cc | 23 std::string result = PoloUtil::BytesToHexString(bytes, 4); local 24 ASSERT_EQ(std::string("AABBCCDD"), result); 29 std::string result = PoloUtil::BytesToHexString(bytes, 4); local 30 ASSERT_EQ(std::string("BBCCDD"), result);
|
/external/guava/guava/src/com/google/common/collect/ |
ComparisonChain.java | 37 * .result(); 41 * nonzero</i> comparison result in the chain, or will be zero if every 42 * comparison result was zero. 48 * methods as soon as one of them returns a nonzero result. This optimization is 100 ComparisonChain classify(int result) { 101 return (result < 0) ? LESS : (result > 0) ? GREATER : ACTIVE; 103 @Override public int result() { 113 final int result; field in class:ComparisonChain.InactiveComparisonChain 115 InactiveComparisonChain(int result) { 144 @Override public int result() { method in class:ComparisonChain.InactiveComparisonChain 215 public abstract int result(); method in class:ComparisonChain [all...] |
CompoundOrdering.java | 43 int result = comparators.get(i).compare(left, right); local 44 if (result != 0) { 45 return result;
|
Count.java | 41 int result = value; local 42 value = result + delta; 43 return result; 55 int result = value; local 57 return result;
|
LexicographicalOrdering.java | 47 int result = elementOrder.compare(left.next(), right.next()); local 48 if (result != 0) { 49 return result;
|
Platform.java | 51 // result.getClass() == reference.getClass().getComponentType() 53 T[] result = (T[]) Array.newInstance(type, length); local 54 return result;
|
/external/guava/guava/src/com/google/common/io/ |
BaseEncoding.java | 168 CharOutput result = stringBuilderOutput(maxEncodedSize(len)); local 169 ByteOutput byteOutput = encodingStream(result); 178 return result.toString(); 207 private static byte[] extract(byte[] result, int length) { 208 if (length == result.length) { 209 return result; 212 System.arraycopy(result, 0, trunc, 0, length); 721 BaseEncoding result = upperCase; 722 if (result == null) { 724 result = upperCase [all...] |