HomeSort by relevance Sort by last modified time
    Searched refs:empty (Results 276 - 300 of 837) sorted by null

<<11121314151617181920>>

  /external/chromium/net/base/
cookie_monster.cc 177 DCHECK(!token.empty());
271 if (!host.empty() && host[0] == '.')
288 if (!pc.HasDomain() || pc.Domain().empty() ||
304 if (cookie_domain.empty())
313 if (url_domain_and_registry.empty())
342 if (pc.HasPath() && !pc.Path().empty() && pc.Path()[0] == '/')
731 // In Mozilla if you set a cookie like AAAA, it will have an empty token
734 if (!(*it)->Name().empty())
817 if (domain.empty())
847 if (domain.empty())
    [all...]
mime_util.cc 165 if (file_name_str.empty())
248 // Mozilla 1.8 and WinIE 7 both accept the empty string, but neither accept a
339 if (mime_type_pattern.empty())
357 if (!right.empty() &&
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 81 // This constructor is used only to create the empty string.
88 // with impunity. The empty string is special because it is never entered into
125 StringImpl* StringImpl::empty() function in class:WebCore::StringImpl
144 return empty();
279 return empty();
290 return empty();
915 return empty();
923 return empty();
931 return empty();
947 return empty();
    [all...]
  /cts/tools/vm-tests/
Android.mk 60 empty:= macro
61 space:= $(empty) $(empty)
  /external/chromium/base/
mime_util_linux.cc 185 if (!icon_path.empty())
199 if (!path.empty()) {
206 if (!icon_path.empty() || !inherits || inherits_ == "")
529 if (!icon_path.empty())
559 if (!Singleton<MimeUtilConstants>::get()->gtk_theme_name_.empty())
611 if (!icon_file.empty())
stl_util-inl.h 142 // To treat a possibly-empty vector as an array, use these functions.
143 // If you know the array will never be empty, you can use &*v.begin()
144 // directly, but that is allowed to dump core if v is empty. This
156 return v->empty() ? NULL : &*v->begin();
165 return v->empty() ? NULL : &*v->begin();
183 return str->empty() ? NULL : &*str->begin();
message_pump_glib_unittest.cc 40 // If the queue is empty, block.
41 if (events_.empty())
48 if (events_.empty())
55 if (events_.empty())
70 if (!events_.empty()) {
209 // the posted task queue is empty.
239 // The event queue is empty at first.
273 // The event queue is empty at first.
nss_util.cc 106 if (!database_dir.empty()) {
129 // initialize an empty-string password so that we don't need to
  /external/chromium/net/url_request/
url_request_http_job.cc 53 (request->url().port().empty() || port == 80) &&
229 DCHECK(encoding_types->empty());
238 // Even if encoding types are empty, there is a chance that we need to add
244 return !encoding_types->empty();
442 !cookies.empty())
636 if (!avail_dictionaries.empty() &&
662 if (!avail_dictionaries.empty()) {
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 179 int empty = -1; local
186 if (call == null && empty < 0) {
187 empty = i;
200 if (empty < 0 ) {
205 calls[empty] = CallInfo.createIncomingCall(
209 calls[empty].state = CallInfo.State.WAITING;
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
SynchronousQueueTest.java 23 * A SynchronousQueue is both empty and full
34 * A fair SynchronousQueue is both empty and full
205 * take blocks interruptibly when empty
282 * take blocks interruptibly when empty
459 * containsAll returns false unless empty
463 Integer[] empty = new Integer[0]; local
464 assertTrue(q.containsAll(Arrays.asList(empty)));
474 Integer[] empty = new Integer[0]; local
475 assertFalse(q.retainAll(Arrays.asList(empty)));
485 Integer[] empty = new Integer[0] local
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.h 257 return active_socket_count == 0 && idle_sockets.empty() && jobs.empty() &&
258 pending_requests.empty();
550 // |ClientSocketPoolBaseHelper::group_map_| is empty.
  /external/chromium/net/tools/hresolv/
hresolv.cc 64 if (!flag_names.empty()) {
71 if (!flag_names.empty()) {
432 if (options.input_path.empty()) {
  /frameworks/base/media/libstagefright/
CameraSource.cpp 210 while (!mFramesBeingEncoded.empty()) {
230 while (!mFramesReceived.empty()) {
285 while(mFramesReceived.empty()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 253 // if the activities list is null, then the manifest is empty
402 String empty = ""; local
405 activityName = configuration.getAttribute(ATTR_ACTIVITY, empty);
410 return (activityName != empty) ? activityName : null;
  /build/core/
java_library.mk 56 $(create-empty-package)
  /cts/tests/SignatureTest/
Android.mk 45 # empty/non-existent resouce dirs (which ours would be). If it finds
46 # an empty/non-existent resource dir, R_file_stamp doesn't contain a
  /cts/tools/dasm/src/java_cup/
lalr_item.java 64 /** Constructor with default position and empty lookahead set.
119 if (!needs_propagation && (incoming == null || incoming.empty()))
122 /* if we have null incoming, treat as an empty set */
185 /* start with an empty result */
terminal_set.java 16 /** Constructor for an empty set. */
39 /** Constant for the empty set. */
40 public static final terminal_set EMPTY = new terminal_set();
65 /** Determine if the set is empty. */
66 public boolean empty() method in class:terminal_set
68 return equals(EMPTY);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List8.java 50 // Tell the list view which view to display when the list is empty
51 getListView().setEmptyView(findViewById(R.id.empty));
  /external/chromium/net/disk_cache/
disk_format.h 22 // block-file for 1KB blocks will grow from 8KB when totally empty to about 64MB
186 int32 empty[4]; // Counters of empty entries for each type. member in struct:disk_cache::BlockFileHeader
  /external/chromium/net/ftp/
ftp_directory_listing_parser_mlsd.cc 120 return !entries_.empty();
  /external/chromium/net/http/
http_auth_handler_ntlm.cc 56 if (auth_data_.empty()) {
http_chunked_decoder.cc 106 if (!line_buf_.empty()) {
http_network_layer.cc 138 } else if (option.empty() && it == flip_options.begin()) {

Completed in 531 milliseconds

<<11121314151617181920>>