Searched defs:empty (Results 251 - 275 of 312) sorted by relevance

<<111213

/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model_unittest.cc389 bool empty() const { return empty_; } function in class:MockTabStripModelObserver
405 EXPECT_TRUE(tabstrip.empty());
587 // TabStripModel should now be empty.
588 EXPECT_TRUE(tabstrip.empty());
598 EXPECT_TRUE(tabstrip.empty());
654 EXPECT_TRUE(tabstrip.empty());
679 EXPECT_TRUE(tabstrip.empty());
695 EXPECT_TRUE(tabstrip.empty());
703 EXPECT_TRUE(tabstrip.empty());
717 EXPECT_TRUE(tabstrip.empty());
[all...]
/external/chromium/net/disk_cache/
H A Dbackend_impl.cc136 if (to_delete.empty()) {
698 if (disabled_ || key.empty())
730 // a. Used, unreferenced empty blocks on disk (basically just garbage).
1224 void BackendImpl::TrimForTest(bool empty) { argument
1226 eviction_.TrimCache(empty);
1229 void BackendImpl::TrimDeletedListForTest(bool empty) { argument
1231 eviction_.TrimDeletedList(empty);
/external/clang/include/clang/Sema/
H A DOverload.h774 bool empty() const { return Candidates.empty(); } function in class:clang::OverloadCandidateSet
/external/clang/lib/AST/
H A DExprCXX.cpp851 HasArrayIndexVars = !ArrayIndexVars.empty();
879 if (!ArrayIndexVars.empty()) {
988 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects) argument
989 : Expr(ExprWithCleanupsClass, empty) {
993 ExprWithCleanups *ExprWithCleanups::Create(ASTContext &C, EmptyShell empty, argument
997 return new (buffer) ExprWithCleanups(empty, numObjects);
H A DVTableBuilder.cpp464 // empty - Return whether the offset map is empty or not.
465 bool empty() const { return Offsets.empty(); } function in struct:__anon3533::VCallOffsetMap
1267 if (VCallOffsets.empty()) {
1603 if (BaseIsVirtualInLayoutClass && !Builder.getVCallOffsets().empty()) {
1606 if (VCallOffsets.empty())
2041 if (!Thunks.empty()) {
2130 if (!IndicesMap.empty()) {
/external/dbus/bus/
H A Ddispatch.c1403 const char *empty = ""; local
1419 /* empty string match rule matches everything */
1420 if (!dbus_message_append_args (message, DBUS_TYPE_STRING, &empty,
/external/dnsmasq/src/
H A Doption.c2444 static char empty[] = ""; local
2446 new->txt = empty;
/external/e2fsprogs/debugfs/
H A Ddebugfs.c1830 int empty; member in struct:rd_struct
1852 rds->empty = 0;
1882 rds.empty = 1;
1890 if (rds.empty == 0) {
1891 com_err(argv[0], 0, "directory not empty");
/external/elfutils/src/
H A Dldlex.c1149 static void eat_to_eol (bool empty);
2809 eat_to_eol (bool empty) argument
2825 if (empty && ! isspace (c) && ! warned)
/external/icu4c/i18n/
H A Drbnf.cpp935 UnicodeString empty; local
936 return empty;
H A Drbt_pars.cpp214 return result; // Indicate failure with empty string
946 // skip empty rules
1342 // We allow anything on the right, including an empty string.
1507 return (UChar)0x0000; // Return empty character with error.
1541 // Special character used to indicate an empty spot
1542 UChar empty = curData->variablesBase - 1; local
1544 segmentStandins.append(empty);
1547 if (c == empty) {
H A Drematch.cpp1779 UText empty = UTEXT_INITIALIZER; local
1781 utext_openUnicodeString(&empty, &emptyString, &status);
1782 dest = utext_clone(NULL, &empty, TRUE, FALSE, &status);
1783 utext_close(&empty);
1841 UText empty = UTEXT_INITIALIZER; local
1843 utext_openUnicodeString(&empty, &emptyString, &status);
1844 dest = utext_clone(NULL, &empty, TRUE, FALSE, &status);
1845 utext_close(&empty);
2186 // we output one last empty string, for the empty fiel
[all...]
/external/icu4c/test/intltest/
H A Dtzrulets.cpp1830 // Trying to create VTimeZone from empty data
1832 VTimeZone *empty = VTimeZone::createVTimeZone(emptyData, status); local
1833 if (U_SUCCESS(status) || empty != NULL) {
1834 delete empty;
1835 errln("FAIL: Non-null VTimeZone is returned for empty VTIMEZONE data");
H A Dregextst.cpp205 strcpy(ASSERT_BUF, "[[empty UnicodeString]]");
772 UnicodeString empty = ""; local
788 m1->reset(empty);
790 REGEX_ASSERT(m1->input() == empty);
857 m.reset(empty);
1089 // Matchers with no input string behave as if they had an empty input string.
1740 // Test split of string with empty trailing fields
1838 UText empty = UTEXT_INITIALIZER; local
1843 utext_openUChars(&empty, NULL, 0, &status);
1864 m1->reset(&empty);
[all...]
/external/libxml2/
H A Dxmllint.c846 * empty SAX block
1733 int type, empty; local
1736 empty = xmlTextReaderIsEmptyElement(reader);
1750 empty,
1807 ((type == XML_READER_TYPE_ELEMENT) && (empty))) {
2077 fprintf(stderr, "XPath set is empty\n");
/external/llvm/include/llvm/MC/
H A DMCAssembler.h141 assert((Fixups.empty() || Fixup.getOffset() >= Fixups.back().getOffset()) &&
526 bool empty() const { return Fragments.empty(); } function in class:llvm::MCSectionData
/external/llvm/include/llvm/TableGen/
H A DRecord.h782 inline bool empty() const { return Values.empty(); } function in class:llvm::ListInit
1180 /// to have at least one value then a (possibly empty) list of arguments. Each
1238 inline bool arg_empty() const { return Args.empty(); }
1244 inline bool name_empty() const { return ArgNames.empty(); }
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp222 // exitRegion(), even for empty regions. So the local iterators 'I' and
247 // Skip empty scheduling regions (0 or 1 schedulable instructions).
597 if (I->Preds.empty())
600 if (I->Succs.empty())
742 bool empty() const { return Queue.empty(); } function in class:__anon9279::ReadyQueue
1025 // If the available queue is empty, it is safe to reset MinReadyCycle.
1026 if (Available.empty())
1068 for (unsigned i = 0; Available.empty(); ++i) {
1264 assert(Top.Available.empty()
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp552 assert(PendingQueue.empty() && "pending instrs not allowed in this mode");
556 // If the available queue is empty, it is safe to reset MinAvailableCycle.
557 if (AvailableQueue->empty())
1302 return !LRegs.empty();
1454 if (!SUnits.empty()) {
1456 assert(RootSU->Succs.empty() && "Graph root shouldn't have successors!");
1461 // While Available queue is not empty, grab the node with the highest
1464 while (!AvailableQueue->empty()) {
1476 while (AvailableQueue->empty() && !PendingQueue.empty()) {
1666 bool empty() const { return Queue.empty(); } function
[all...]
/external/ping/
H A Dping.c1676 gid_t empty[0]; local
1686 ngroups = getgroups(0, empty);
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js598 function empty(b) { function
758 if (empty(t)) {
762 } else if (empty(e)) {
778 if (empty(e) && empty(t))
781 if (t[0] == "if" && empty(t[3]) && empty(e)) {
1331 if ((stat[0] == "while" && empty(stat[2])) ||
1332 (member(stat[0], [ "for", "for-in"] ) && empty(stat[4])) ||
1333 (stat[0] == "if" && empty(sta
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_service_unittest.cc221 // and without an empty path using this parameter.
270 if (!fake_base_path_.empty())
549 if (pem_path.value().empty()) {
968 EXPECT_TRUE(extension->plugins().empty());
1073 while (!dirs.Next().empty())
1299 EXPECT_TRUE(known_api_perms.empty());
1358 EXPECT_TRUE(api_permissions.empty());
1520 // Try packing an empty directory. Should fail because an empty directory is
1703 // An empty ap
3148 FilePath empty; local
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenFunction.h452 /// Determines whether the exception-scopes stack is empty.
453 bool empty() const { return StartOfData == EndOfBuffer; } function in class:clang::CodeGen::EHScopeStack
1076 // Leave Data empty.
/external/icu4c/test/cintltst/
H A Dcapitst.c1197 log_verbose("getting sortkey for an empty string\n");
1980 UChar empty = 0; local
1984 log_verbose("testing merging with sortkeys generated for empty strings\n");
1985 emptyKeyLen = ucol_getSortKey(coll, &empty, 0, emptyKey, 20);
H A Dcreststn.c469 const UChar *empty = NULL; local
485 empty = tres_getString(theBundle, -1, "emptystring", &len, &status);
486 if(empty && (*empty != 0 || len != 0)) {
822 strcpy(action, "getting and testing of empty int");
863 log_err("Couldn't get emptybin, or it's not empty\n");
919 log_err("Did not get the expected error from an empty resource bundle. Expected : %s Got: %s\n",
1499 UResourceBundle *test1 = 0, *test2 = 0,*empty = 0; local
1527 empty = ures_open(testdatapath, "testempty", &status);
1528 if(empty
[all...]

Completed in 7777 milliseconds

<<111213