HomeSort by relevance Sort by last modified time
    Searched refs:full (Results 1 - 25 of 713) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/
ThumbnailRequestCoordinator.java 5 * the full size version of the image at the same time.
8 private Request full; field in class:ThumbnailRequestCoordinator
20 public void setRequests(Request full, Request thumb) {
21 this.full = full;
28 * full size image has not yet completed.
34 return parentCanSetImage() && (request.equals(full) || !full.isResourceSet());
42 * Returns true if the request is the request loading the fullsize image and if neither the full nor the thumbnail
49 return parentCanNotifyStatusChanged() && request.equals(full) && !isAnyResourceSet()
    [all...]
  /build/target/product/
aosp_arm.mk 16 include $(SRC_TARGET_DIR)/product/full.mk
full.mk 17 # This is a build configuration for a full-featured build of the
28 PRODUCT_NAME := full
  /external/ceres-solver/internal/ceres/
split.cc 51 static int CalculateReserveForVector(const string& full, const char* delim) {
56 const char* p = full.data();
57 const char* end = p + full.size();
74 void SplitStringToIteratorUsing(const StringType& full,
80 const char* p = full.data();
81 const char* end = p + full.size();
97 begin_index = full.find_first_not_of(delim);
99 end_index = full.find_first_of(delim, begin_index);
101 *result++ = full.substr(begin_index);
104 *result++ = full.substr(begin_index, (end_index - begin_index))
    [all...]
split.h 43 void SplitStringUsing(const string& full, const char* delim,
  /external/valgrind/none/tests/s390x/
mvc.c 8 char full[300]; variable
42 memset(full, '-', sizeof full);
43 full[0] = 'x';
44 asm volatile( "mvc 1(256,%0),0(%0)\n\t" // full[1:256] = full[0]
45 :: "a" (full));
48 assert(full[i] == 'x');
49 for ( ; i < sizeof full; ++i)
50 assert(full[i] == '-')
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
null_fenced_block.hpp 24 enum half_or_full_t { half, full }; enumerator in enum:asio::detail::null_fenced_block::half_or_full_t
  /libcore/jsr166-tests/src/test/java/jsr166/
CopyOnWriteArraySetTest.java 78 Set full = populatedSet(3); local
79 assertTrue(full.addAll(Arrays.asList(three, four, five)));
80 assertEquals(6, full.size());
81 assertFalse(full.addAll(Arrays.asList(three, four, five)));
82 assertEquals(6, full.size());
89 Set full = populatedSet(3); local
91 assertTrue(full.addAll(Arrays.asList(three, four, one)));
92 assertEquals(5, full.size());
93 assertFalse(full.addAll(Arrays.asList(three, four, one)));
94 assertEquals(5, full.size())
101 Set full = populatedSet(3); local
110 Set full = populatedSet(3); local
119 Collection full = populatedSet(3); local
129 Collection full = populatedSet(3); local
188 Collection full = populatedSet(3); local
233 Collection<Integer> full = populatedSet(elements); local
254 Collection full = populatedSet(3); local
268 Collection full = populatedSet(3); local
280 Set full = populatedSet(3); local
291 Collection full = populatedSet(3); local
302 Collection full = populatedSet(3); local
320 Collection<Integer> full = populatedSet(elements); local
348 Collection<Integer> full = populatedSet(elements); local
    [all...]
CopyOnWriteArrayListTest.java 93 CopyOnWriteArrayList full = populatedArray(3); local
94 assertTrue(full.addAll(Arrays.asList(three, four, five)));
95 assertEquals(6, full.size());
96 assertTrue(full.addAll(Arrays.asList(three, four, five)));
97 assertEquals(9, full.size());
105 CopyOnWriteArrayList full = populatedArray(3); local
107 assertEquals(2, full.addAllAbsent(Arrays.asList(three, four, one)));
108 assertEquals(5, full.size());
109 assertEquals(0, full.addAllAbsent(Arrays.asList(three, four, one)));
110 assertEquals(5, full.size())
117 CopyOnWriteArrayList full = populatedArray(SIZE); local
126 CopyOnWriteArrayList full = populatedArray(SIZE); local
135 CopyOnWriteArrayList full = populatedArray(SIZE); local
155 CopyOnWriteArrayList full = populatedArray(3); local
164 CopyOnWriteArrayList full = populatedArray(3); local
206 CopyOnWriteArrayList full = populatedArray(3); local
223 CopyOnWriteArrayList full = populatedArray(3); local
231 CopyOnWriteArrayList full = populatedArray(3); local
241 CopyOnWriteArrayList full = populatedArray(3); local
251 CopyOnWriteArrayList full = populatedArray(SIZE); local
272 Collection<Integer> full = populatedArray(elements); local
294 CopyOnWriteArrayList full = populatedArray(SIZE); local
308 CopyOnWriteArrayList full = populatedArray(3); local
320 CopyOnWriteArrayList full = populatedArray(3); local
331 CopyOnWriteArrayList full = populatedArray(3); local
342 CopyOnWriteArrayList full = populatedArray(SIZE); local
354 CopyOnWriteArrayList full = populatedArray(3); local
368 CopyOnWriteArrayList full = populatedArray(SIZE); local
381 CopyOnWriteArrayList full = populatedArray(SIZE); local
401 CopyOnWriteArrayList full = populatedArray(3); local
412 CopyOnWriteArrayList full = populatedArray(3); local
422 CopyOnWriteArrayList full = populatedArray(SIZE); local
440 Collection<Integer> full = populatedArray(elements); local
468 Collection<Integer> full = populatedArray(elements); local
    [all...]
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines.c 50 if (streamData->full == 0) {
73 /* write remaining data to bitstream, if "full == 0" first byte has data */
74 if (streamData->full == 0) {
76 streamData->full = 1;
79 streamData->full = 0;
90 if (streamData->full == 0) {
112 if (streamData->full) {
121 return (((streamPtr - streamData->stream)<<1) + !(streamData->full));
arith_routines_hist.c 85 if (streamData->full == 0) {
105 if (streamData->full == 0) {
107 streamData->full = 1;
110 streamData->full = 0;
232 if (streamData->full == 0) {
234 streamData->full = 1;
237 streamData->full = 0;
255 return (streamData->stream_index*2 - 3 + !streamData->full);
257 return (streamData->stream_index*2 - 2 + !streamData->full);
380 if (streamData->full == 0)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.h 9 void ConvertPropertyToShortString(char *dest, const PROPVARIANT &propVariant, PROPID propID, bool full = true) throw();
10 void ConvertPropertyToString(UString &dest, const PROPVARIANT &propVariant, PROPID propID, bool full = true);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
LZDecoder.java 21 private int full = 0; field in class:LZDecoder
31 full = pos;
40 full = 0;
75 if (full < pos)
76 full = pos;
80 if (dist < 0 || dist >= full)
97 if (full < pos)
98 full = pos;
112 if (full < pos)
113 full = pos
    [all...]
  /external/google-breakpad/src/client/windows/unittests/
exception_handler_test.cc 70 MiniDumpWithFullMemory | // Full memory from process.
158 // Create the full dump file name from the dump path.
159 full_dump_file = dump_file.substr(0, dump_file.length() - 4) + L"-full.dmp";
253 DumpAnalysis full(full_dump_file);
257 EXPECT_TRUE(full.HasStream(ThreadListStream));
259 EXPECT_TRUE(full.HasStream(ModuleListStream));
261 EXPECT_TRUE(full.HasStream(ExceptionStream));
263 EXPECT_TRUE(full.HasStream(SystemInfoStream));
265 EXPECT_TRUE(full.HasStream(MiscInfoStream));
267 EXPECT_TRUE(full.HasStream(HandleDataStream))
    [all...]
minidump_test.cc 54 MiniDumpWithFullMemory | // Full memory from process.
280 DumpAnalysis full(full_dump_file_);
286 EXPECT_TRUE(full.HasStream(ThreadListStream));
288 EXPECT_TRUE(full.HasStream(ModuleListStream));
290 EXPECT_TRUE(full.HasStream(ExceptionStream));
292 EXPECT_TRUE(full.HasStream(SystemInfoStream));
294 EXPECT_TRUE(full.HasStream(UnloadedModuleListStream));
296 EXPECT_TRUE(full.HasStream(MiscInfoStream));
298 EXPECT_TRUE(full.HasStream(HandleDataStream));
302 EXPECT_TRUE(full.HasMemory(this))
    [all...]
  /external/mesa3d/doxygen/
Makefile 2 default: full
4 all: full subset
9 FULL = \
22 full: $(FULL:.doxy=.tag)
23 $(foreach FILE,$(FULL),doxygen $(FILE);)
33 -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
  /art/test/137-cfi/
run 17 # Test with full DWARF debugging information.
18 # Check full signatures of methods.
20 --args --full-signatures --args --test-local --args --test-remote
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
update-copyright 9 git ls-files --full-name $topdir \
  /frameworks/webview/nullwebview/
Android.mk 27 LOCAL_PROGUARD_ENABLED := full
  /frameworks/opt/setupwizard/library/
common-full-support.mk 12 # include frameworks/opt/setupwizard/library/common-full-support.mk
26 ifeq (,$(findstring setup-wizard-lib-full-support,$(LOCAL_STATIC_JAVA_LIBRARIES)))
30 $(call my-dir)/full-support/res
32 LOCAL_STATIC_JAVA_LIBRARIES += setup-wizard-lib-full-support
  /external/rootdev/
rootdev.h 22 * @full: whether to try to do full resolution. E.g., device-mapper
27 int rootdev(char *path, size_t size, bool full, bool strip);
38 bool full, bool strip,
  /external/selinux/policycoreutils/mcstrans/utils/
valgrind-mcstransd 3 #valgrind -v --leak-check=full --show-reachable=yes ../src/mcstransd
4 runcon -u system_u -r system_r -t setrans_t -l s15:c0.c1023 -- valgrind -v --leak-check=full --show-reachable=yes ../src/mcstransd
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
bignum1.d 3 # objdump: --full-contents
  /build/core/
configure_local_jack.mk 24 ifneq ($(LOCAL_JACK_ENABLED),full)

Completed in 1494 milliseconds

1 2 3 4 5 6 7 8 91011>>