HomeSort by relevance Sort by last modified time
    Searched defs:empty (Results 501 - 525 of 1198) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.h 186 // Is list empty?
187 bool empty() const { function in class:tcmalloc::ThreadCache::FreeList
340 if (list->empty()) {
  /external/chromium_org/tools/grit/grit/node/
misc.py 113 # Equivalent to having all children inside <then> with an empty <else>
146 from grit.node import empty namespace
147 return isinstance(child, (empty.IncludesNode, empty.MessagesNode,
148 empty.StructuresNode, empty.IdentifiersNode))
177 from grit.node import empty namespace
178 return isinstance(child, (ReleaseNode, empty.TranslationsNode,
179 empty.OutputsNode))
377 # so we get an empty string as the default
428 from grit.node import empty namespace
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 15 import grit.node.empty namespace
72 FILENAME.h) will be placed. Use an empty string to
73 disable rc generation. Default: empty.
77 directory. Use an empty string to disable rc
78 generation. Default: empty.
83 generated. Use an empty string to disable
206 assert (isinstance(messages, grit.node.empty.MessagesNode) and
207 isinstance(translations, grit.node.empty.TranslationsNode) and
208 isinstance(outputs, grit.node.empty.OutputsNode))
  /external/chromium_org/ui/gfx/
skbitmap_operations_unittest.cc 442 // Test an empty bitmap
443 SkBitmap empty; local
444 result = SkBitmapOperations::DownsampleByTwo(empty);
  /external/chromium_org/ui/views/controls/
slider.cc 247 int empty = h - full; local
250 kLineThickness, empty),
252 canvas->FillRect(gfx::Rect(x, content.y() + empty + 2 * kButtonRadius,
  /external/clang/include/clang/AST/
ASTVector.h 63 // Default ctor - Initialize to empty.
104 bool empty() const { return Begin == End; } function in class:clang::ASTVector
148 /// data - Return a pointer to the vector's buffer, even if empty().
153 /// data - Return a pointer to the vector's buffer, even if empty().
218 if (I == this->end()) { // Important special case for empty vector.
240 if (I == this->end()) { // Important special case for empty vector.
288 if (I == this->end()) { // Important special case for empty vector.
UnresolvedSet.h 159 bool empty() const { return decls().empty(); } function in class:clang::UnresolvedSetImpl
  /external/clang/include/clang/Analysis/
CallGraph.h 156 inline bool empty() const {return CalledFunctions.empty(); } function in class:clang::CallGraphNode
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 56 // Default ctor - Initialize to empty.
95 bool empty() const { return Begin == End; } function in class:clang::BumpVector
139 /// data - Return a pointer to the vector's buffer, even if empty().
144 /// data - Return a pointer to the vector's buffer, even if empty().
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 167 unsigned empty() const { return size() == 0; } function in class:clang::RopePieceBTree
  /external/clang/include/clang/Sema/
Designator.h 191 bool empty() const { return Designators.empty(); } function in class:clang::Designation
TemplateDeduction.h 268 bool empty() const { return Candidates.empty(); } function in class:clang::TemplateSpecCandidateSet
  /external/clang/test/CodeGenCXX/
value-init.cpp 113 Test empty[3] = {}; local
x86_64-arguments.cpp 83 struct Empty { };
86 Empty empty; member in struct:test5::X
90 Empty empty; member in struct:test5::Y
  /external/clang/test/Sema/
init.c 98 typedef struct { } empty; typedef in typeref:struct:__anon16904
101 empty e;
  /external/clang/test/SemaCXX/
cxx0x-deleted-default-ctor.cpp 123 namespace empty { namespace
dcl_init_aggr.cpp 60 struct Empty { };
62 Empty s;
70 Empty empty; member in struct:NonEmpty
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRetainAllTester.java 64 private Target empty; field in class:CollectionRetainAllTester
76 empty = new Target(emptyCollection(), "empty");
104 // retainAll(empty)
109 expectReturnsFalse(empty);
116 expectReturnsFalseOrThrows(empty);
123 expectReturnsTrue(empty);
131 expectThrows(empty);
288 * collection is empty, but we'd still like to test retainAll(null) when we
289 * can. We split the test into empty and non-empty cases. This allows us t
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstRangeOpsTest.java 123 SimpleNode empty = null; local
125 assertEquals(0, BstRangeOps.totalInRange(countAggregate, range, empty));
ContiguousSetTest.java 85 ContiguousSet<Integer> empty = Ranges.closedOpen(1, 1).asSet(integers()); local
86 assertTrue(empty instanceof EmptyContiguousSet);
87 reserializeAndAssert(empty);
ObjectArraysTest.java 47 String[] empty = ObjectArrays.newArray(String.class, 0); local
48 assertEquals(String[].class, empty.getClass());
49 assertEquals(0, empty.length);
70 String[] empty = ObjectArrays.newArray(in, 0); local
71 assertEquals(0, empty.length);
  /external/icu4c/common/
uvector.cpp 375 UElement empty; local
376 empty.pointer = NULL;
377 empty.integer = 0;
379 elements[i] = empty;
  /external/ipsec-tools/src/racoon/
gssapi.c 278 gss_buffer_desc empty, name_token; local
288 empty.length = 0;
289 empty.value = NULL;
290 dummy = &empty;
  /external/libxml2/include/libxml/
HTMLparser.h 48 char empty; /* Is this an empty element ? */ member in struct:_htmlElemDesc
  /external/llvm/include/llvm/ADT/
BitVector.h 73 /// BitVector default ctor - Creates an empty bitvector.
112 /// empty - Tests whether there are no bits in this bitvector.
113 bool empty() const { return Size == 0; } function in class:llvm::BitVector

Completed in 558 milliseconds

<<21222324252627282930>>