HomeSort by relevance Sort by last modified time
    Searched full:empty (Results 201 - 225 of 11665) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/base/
string_split_unittest.cc 20 EXPECT_FALSE(SplitStringIntoKeyValues("", // Empty input
23 EXPECT_TRUE(key.empty());
24 EXPECT_TRUE(values.empty());
32 EXPECT_TRUE(values.empty());
36 EXPECT_TRUE(SplitStringIntoKeyValues("\tvalue for empty key",
39 EXPECT_TRUE(key.empty());
53 EXPECT_FALSE(SplitStringIntoKeyValues("", // Empty input
56 EXPECT_TRUE(key.empty());
57 EXPECT_TRUE(values.empty());
65 EXPECT_TRUE(values.empty());
    [all...]
  /device/ti/panda/
media_profiles.xml 29 <!ELEMENT Video EMPTY>
35 <!ELEMENT Audio EMPTY>
40 <!ELEMENT ImageEncoding EMPTY>
42 <!ELEMENT ImageDecoding EMPTY>
44 <!ELEMENT Camera EMPTY>
45 <!ELEMENT EncoderOutputFileFormat EMPTY>
47 <!ELEMENT VideoEncoderCap EMPTY>
58 <!ELEMENT AudioEncoderCap EMPTY>
67 <!ELEMENT VideoDecoderCap EMPTY>
70 <!ELEMENT AudioDecoderCap EMPTY>
    [all...]
  /external/chromium/chrome/browser/autofill/
address.cc 60 // If the text to match against the field types is empty, then no results will
62 if (text.empty())
87 if (!line1_.empty())
90 if (!line2_.empty())
93 if (!city_.empty())
96 if (!state_.empty())
99 if (!zip_code_.empty())
102 if (!country_code_.empty())
158 if (country_code().empty())
207 return (!country_code.empty() && country_code_ == country_code)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_apitest.cc 42 // empty.
43 if (results_.empty()) {
49 if (!results_.empty()) {
125 DCHECK(!page_url.empty()) << "Argument page_url is required.";
141 DCHECK(!std::string(extension_name).empty() || !page_url.empty()) <<
142 "extension_name and page_url cannot both be empty";
144 if (!std::string(extension_name).empty()) {
168 if (!page_url.empty()) {
175 DCHECK(!std::string(extension_name).empty()) <<
    [all...]
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 25 // Empty map tests
29 EXPECT_TRUE(uintMap.empty());
40 // Empty map tests for pointer map
44 EXPECT_TRUE(uintPtrMap.empty());
61 EXPECT_TRUE(constUintMap.empty());
62 EXPECT_TRUE(constUintPtrMap.empty());
74 EXPECT_FALSE(uintMap.empty());
96 EXPECT_TRUE(uintMap.empty());
106 EXPECT_TRUE(uintMap.empty());
116 EXPECT_TRUE(uintMap.empty());
    [all...]
PackedVectorTest.cpp 24 EXPECT_TRUE(Vec.empty());
28 EXPECT_FALSE(Vec.empty());
32 EXPECT_FALSE(Vec.empty());
36 EXPECT_FALSE(Vec2.empty());
40 EXPECT_TRUE(Vec.empty());
57 EXPECT_FALSE(Vec.empty());
  /external/chromium/net/http/
http_stream_factory_impl_request.cc 34 DCHECK(jobs_.empty());
36 DCHECK(!jobs_.empty());
90 DCHECK(!jobs_.empty());
104 DCHECK(jobs_.empty());
125 DCHECK(jobs_.empty());
129 DCHECK(jobs_.empty());
143 DCHECK(jobs_.empty());
156 DCHECK(jobs_.empty());
168 DCHECK(jobs_.empty());
181 DCHECK(jobs_.empty());
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
  /libcore/luni/src/main/java/java/security/cert/
PKIXParameters.java 77 * if {@code trustAnchors} is empty.
144 * if {@code trustAnchors} is empty.
188 // set to empty List if has not been set yet
194 // empty List each time
197 // List is not empty - do deep copy
216 // empty list or null provided
219 // discard non-empty list
224 // non-empty list provided - do deep copy
245 // set to empty List if has not been set yet
260 // set to empty List if has not been set ye
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 43 * @param uri The Namespace URI, or the empty string if the
47 * empty string if Namespace processing is not being
50 * empty string if raw names are not available.
52 * there are no attributes, it shall be an empty
95 * @param uri The Namespace URI, or an empty string.
96 * @param localName The local name (without prefix), or empty string if not namespace processing.
  /external/chromium/chrome/browser/password_manager/
encryptor_unittest.cc 36 // Test borderline cases (empty strings).
82 // Test borderline cases (empty strings).
105 // Test borderline cases (empty strings).
108 // |cyphertext| is empty on the Mac, different on Windows.
109 EXPECT_TRUE(ciphertext.empty() || plaintext != ciphertext);
140 EXPECT_TRUE(result.empty());
  /external/chromium/chrome/common/extensions/
extension_resource_unittest.cc 20 EXPECT_TRUE(resource.extension_root().empty());
21 EXPECT_TRUE(resource.relative_path().empty());
22 EXPECT_TRUE(resource.GetFilePath().empty());
40 // The path doesn't exist on disk, we will be returned an empty path.
43 EXPECT_TRUE(resource.GetFilePath().empty());
62 ASSERT_FALSE(locales.empty());
extension_resource.h 44 bool empty() { return extension_root().empty(); } function in class:ExtensionResource
61 // Full path to extension resource. Starts empty.
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
79 the table is empty the row is inserted into a TBODY which is created
82 Load the table1 file which has a non-empty table element.
83 Create an empty TABLE element and append to the document.
84 Check to make sure that the empty TABLE element doesn't
85 have a TBODY element. Insert a new row into the empty
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
79 the table is empty the row is inserted into a TBODY which is created
82 Load the table1 file which has a non-empty table element.
83 Create an empty TABLE element and append to the document.
84 Check to make sure that the empty TABLE element doesn't
85 have a TBODY element. Insert a new row into the empty
  /external/webkit/Source/WebKit/android/jni/
WebCoreJni.h 80 // passing in an empty WTF String will result in an empty jstring. Otherwise
81 // an empty WTF String returns 0.
89 // passing in an empty std::string will result in an empty jstring. Otherwise
90 // an empty std::string returns 0.
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
AccountTypeManagerTest.java 54 // empty - empty
69 /* empty */
76 /* empty */
83 /* empty */
104 /* empty */
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 86 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false); local
87 empty.setText(R.string.tag_empty);
88 content.addView(empty);
97 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false); local
98 empty.setText(R.string.tag_empty);
99 content.addView(empty);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
NameCallbackTest.java 49 * prompt and message is null and empty.
54 fail("Prompt and DefaultName should not be empty");
64 fail("Prompt and DefaultName should not be empty");
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac_unittest.mm 22 // Does an empty clipboard get empty text?
67 EXPECT_TRUE(text.empty());
  /external/chromium/chrome/browser/policy/
policy_map_unittest.cc 63 PolicyMap empty; local
64 EXPECT_TRUE(a.Equals(empty));
65 EXPECT_FALSE(b.Equals(empty));
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_unittest_helper.h 30 // Test that the empty store looks empty.
53 TEST_F(test_fixture, Empty) { \
  /external/chromium/chrome/common/safe_browsing/
safebrowsing_messages.h 15 // URL of this resource. Can be empty.
19 // (eg "IFRAME"). Can be empty.
22 // URL of the parent node. Can be empty.
  /external/clang/include/clang/AST/
StmtIterator.h 160 bool empty() const { return first == second; } function in struct:clang::StmtRange
161 operator bool() const { return !empty(); }
167 assert(!empty() && "incrementing on empty range");
173 assert(!empty() && "incrementing on empty range");
203 bool empty() const { return first == second; } function in struct:clang::ConstStmtRange
204 operator bool() const { return !empty(); }
210 assert(!empty() && "incrementing on empty range")
    [all...]
  /external/oprofile/libutil++/
path_filter.cpp 28 while (!comp.empty() && comp != "/") {
55 while (!compi.empty() && compi != "/") {
67 return include.empty();

Completed in 2028 milliseconds

1 2 3 4 5 6 7 891011>>