HomeSort by relevance Sort by last modified time
    Searched refs:Empty (Results 26 - 50 of 449) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/tools/flip_server/
buffer_interface.h 30 // Returns true if empty.
32 // true - if empty
34 virtual bool Empty() const = 0;
90 // reserves contiguous writable empty space in the buffer of size bytes.
  /external/chromium_org/ppapi/tests/
test_empty.cc 8 REGISTER_TEST_CASE(Empty);
  /external/clang/test/CodeGen/
2002-07-30-UnionTest.c 4 struct Empty {};
  /external/chromium_org/chromeos/network/
certificate_pattern.cc 67 bool IssuerSubjectPattern::Empty() const {
68 return common_name_.empty() &&
69 locality_.empty() &&
70 organization_.empty() &&
71 organizational_unit_.empty();
83 if (!common_name_.empty())
85 if (!locality_.empty())
87 if (!organization_.empty())
89 if (!organizational_unit_.empty())
101 // If the dictionary wasn't empty, but we are, or vice versa, then somethin
    [all...]
  /external/clang/test/CXX/special/class.copy/
implicit-move-def.cpp 74 struct Empty { };
75 struct VirtualWithEmptyBase : Empty {
  /external/lzma/CPP/Windows/
FileName.cpp 39 extensionDelimiter.Empty();
40 extension.Empty();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
has_virtual_destructor.pass.cpp 34 class Empty
66 test_has_not_virtual_destructor<Empty>();
is_abstract.pass.cpp 34 class Empty
66 test_is_not_abstract<Empty>();
is_default_constructible.pass.cpp 34 class Empty
71 test_is_default_constructible<Empty>();
is_destructible.pass.cpp 34 class Empty
65 test_is_destructible<Empty>();
is_empty.pass.cpp 34 class Empty
63 test_is_empty<Empty>();
is_nothrow_default_constructible.pass.cpp 34 class Empty
57 test_is_nothrow_default_constructible<Empty>();
is_trivially_default_constructible.pass.cpp 34 class Empty
69 test_is_trivially_default_constructible<Empty>();
is_trivially_destructible.pass.cpp 34 class Empty
69 test_is_trivially_destructible<Empty>();
is_trivially_move_constructible.pass.cpp 28 class Empty
78 test_is_trivially_move_constructible<Empty>();
  /external/clang/test/CodeGenCXX/
microsoft-abi-sret-and-byval.cpp 5 struct Empty {};
16 struct SmallCpp11NotCpp03Pod : Empty {
179 void thiscall_method_arg(Empty s) {}
181 // WIN32: define {{.*}} void @"\01?thiscall_method_arg@Class@@QAEXUEmpty@@@Z"(%class.Class* %this, %struct.Empty* byval align 4 %s)
208 c.thiscall_method_arg(Empty());
  /external/chromium/net/proxy/
proxy_config_service_win_unittest.cc 37 ProxyRulesExpectation::Empty(),
52 ProxyRulesExpectation::Empty(),
67 ProxyRulesExpectation::Empty(),
  /external/chromium_org/net/proxy/
proxy_config_service_win_unittest.cc 37 ProxyRulesExpectation::Empty(),
52 ProxyRulesExpectation::Empty(),
67 ProxyRulesExpectation::Empty(),
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 60 struct Empty { };
62 Empty s;
70 Empty empty; member in struct:NonEmpty
literal-type.cpp 30 struct Empty {};
35 Empty empty; member in struct:LiteralType
45 static_assert(__is_literal(Empty), "fail");
  /external/chromium_org/courgette/third_party/
bsdiff_apply.cc 90 while (!control_stream_copy_counts->Empty()) {
143 if (!control_stream_copy_counts->Empty() ||
144 !control_stream_extra_counts->Empty() ||
145 !control_stream_seeks->Empty() ||
146 !diff_skips->Empty() ||
147 !diff_bytes->Empty() ||
148 !extra_bytes->Empty())
  /external/clang/include/clang/AST/
StmtObjC.h 32 explicit ObjCForCollectionStmt(EmptyShell Empty) :
33 Stmt(ObjCForCollectionStmtClass, Empty) { }
87 explicit ObjCAtCatchStmt(EmptyShell Empty) :
88 Stmt(ObjCAtCatchStmtClass, Empty) { }
128 explicit ObjCAtFinallyStmt(EmptyShell Empty) :
129 Stmt(ObjCAtFinallyStmtClass, Empty) { }
178 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts,
180 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
276 explicit ObjCAtSynchronizedStmt(EmptyShell Empty) :
277 Stmt(ObjCAtSynchronizedStmtClass, Empty) { }
    [all...]
  /external/webrtc/src/system_wrappers/source/
list_no_stl.cc 57 if (!Empty())
69 bool ListWrapper::Empty() const
155 // Allow existing_previous_item to be NULL if the list is empty.
158 if (!existing_previous_item && !Empty())
191 // Allow existing_next_item to be NULL if the list is empty.
194 if (!existing_next_item && !Empty())
260 if (Empty())
276 if (Empty())
list_stl.cc 50 if (!Empty())
61 bool ListWrapper::Empty() const
63 return list_.empty();
101 if(list_.empty())
111 if(list_.empty())
121 if(list_.empty())
133 if(list_.empty())
183 // Allow existingPreviousItem to be NULL if the list is empty.
186 if (!existing_previous_item && !Empty())
197 if (!Empty())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compare.py 4 class Empty:
6 return '<Empty>'
33 set2 = [[1], (3,), None, Empty()]
48 L.insert(len(L)//2, Empty())

Completed in 394 milliseconds

12 3 4 5 6 7 8 91011>>