| /freebsd-9-stable/tools/regression/bin/sh/builtins/ |
| D | locale1.0 | 20 case $(command . /var/empty/foo 2>&1) in 27 case $(LC_ALL=C command . /var/empty/foo 2>&1) in 33 case $(LC_ALL=C LANG=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in 39 case $(LC_ALL=C LC_MESSAGES=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in 45 case $(LC_CTYPE=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in 52 case $(export LANG=nl_NL.ISO8859-1; command . /var/empty/foo 2>&1) in 58 case $(export LC_MESSAGES=nl_NL.ISO8859-1; command . /var/empty/foo 2>&1) in 64 case $(export LC_ALL=nl_NL.ISO8859-1; command . /var/empty/foo 2>&1) in 70 case $(LANG=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in 76 case $(LC_MESSAGES=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in [all …]
|
| /freebsd-9-stable/tools/regression/bin/sh/expansion/ |
| D | cmdsubst2.0 | 13 check '`printf /var/empty%s /et[c]/` = "/var/empty/etc/"' 16 check '`printf /var/empty%s "/et[c]/"` = "/var/empty/et[c]/"' 17 check '`printf /var/empty/%s \"/et[c]/\"` = "/var/empty/\"/et[c]/\""' 28 check '`:; printf /var/empty%s /et[c]/` = "/var/empty/etc/"' 31 check '`:; printf /var/empty%s "/et[c]/"` = "/var/empty/et[c]/"' 32 check '`:; printf /var/empty/%s \"/et[c]/\"` = "/var/empty/\"/et[c]/\""'
|
| /freebsd-9-stable/usr.bin/m4/lib/ |
| D | ohash_lookup_memory.c | 28 unsigned int empty; in ohash_lookup_memory() local 33 empty = NONE; in ohash_lookup_memory() 41 if (empty == NONE) in ohash_lookup_memory() 42 empty = i; in ohash_lookup_memory() 45 if (empty != NONE) { in ohash_lookup_memory() 46 h->t[empty].hv = hv; in ohash_lookup_memory() 47 h->t[empty].p = h->t[i].p; in ohash_lookup_memory() 49 return empty; in ohash_lookup_memory() 62 if (empty != NONE) in ohash_lookup_memory() 63 i = empty; in ohash_lookup_memory()
|
| D | ohash_lookup_interval.c | 29 unsigned int empty; in ohash_lookup_interval() local 34 empty = NONE; in ohash_lookup_interval() 42 if (empty == NONE) in ohash_lookup_interval() 43 empty = i; in ohash_lookup_interval() 48 if (empty != NONE) { in ohash_lookup_interval() 49 h->t[empty].hv = hv; in ohash_lookup_interval() 50 h->t[empty].p = h->t[i].p; in ohash_lookup_interval() 52 return empty; in ohash_lookup_interval() 66 if (empty != NONE) in ohash_lookup_interval() 67 i = empty; in ohash_lookup_interval()
|
| /freebsd-9-stable/contrib/bmake/mk/ |
| D | dirdeps.mk | 183 .if !empty(_machine_dependfiles) 197 .if empty(_DEP_TARGET_SPEC) 200 .if !empty(_debug_reldir) 204 .if empty(_last_dependfile) || ${_last_dependfile:E:${N_notmachine}} == "" 211 .if !empty(_last_dependfile) 225 .if empty(DEP_$v) 295 .if empty(ONLY_MACHINE_LIST) 296 .if !empty(ALL_MACHINE_LIST) 307 .if empty(_only_machines) 319 .if !empty(NOT_MACHINE_LIST) [all …]
|
| D | sys.mk | 51 .if !empty(_DEBUG_MAKE_FLAGS) 111 .if empty(_sys_mk) 114 .if !empty(_sys_mk) 118 .if empty(_sys_mk) 137 .if !empty(SRCTOP) 147 .if empty(MACHINE_ARCH) 195 .if !empty(_DEBUG_MAKE_FLAGS)
|
| /freebsd-9-stable/share/mk/ |
| D | bsd.lib.mk | 21 .if defined(SHLIB_NAME) && !empty(SHLIB_NAME:M*.so.*) 46 .if ${MK_DEBUG_FILES} != "no" && empty(DEBUG_FLAGS:M-g) && \ 47 empty(DEBUG_FLAGS:M-gdwarf*) 151 .if ${MK_SYMVER} == "yes" && !empty(VERSION_MAP) 160 .if defined(LIB) && !empty(LIB) || defined(SHLIB_NAME) 164 .if defined(LIB) && !empty(LIB) 176 .if ${MK_PROFILE} != "no" && defined(LIB) && !empty(LIB) 188 defined(INSTALL_PIC_ARCHIVE) && defined(LIB) && !empty(LIB) 228 .if defined(INSTALL_PIC_ARCHIVE) && defined(LIB) && !empty(LIB) && ${MK_TOOLCHAIN} != "no" 238 .if defined(WANT_LINT) && !defined(NO_LINT) && defined(LIB) && !empty(LIB) [all …]
|
| D | bsd.man.mk | 71 .if defined(MAN${__sect}) && !empty(MAN${__sect}) 93 .if defined(MAN) && !empty(MAN) 102 .if defined(MANBUILDCAT) && !empty(MANBUILDCAT) 112 .if defined(MAN) && !empty(MAN) 114 .if defined(MANBUILDCAT) && !empty(MANBUILDCAT) 132 .if defined(MAN) && !empty(MAN) 145 .if defined(MANBUILDCAT) && !empty(MANBUILDCAT) 163 .if defined(MAN) && !empty(MAN) 170 .if defined(MANBUILDCAT) && !empty(MANBUILDCAT) 187 .if defined(MANBUILDCAT) && !empty(MANBUILDCAT) [all …]
|
| D | bsd.dep.mk | 97 .if !empty(YFLAGS:M-d) && !empty(SRCS:My.tab.h) 103 .elif !empty(YFLAGS:M-d) 134 .if !empty(_CFLAGS_INCLUDES) 137 .if !empty(_CXXFLAGS_INCLUDES) 152 .if !empty(DPSRCS:M*.[cS]) 156 .if !empty(DPSRCS:M*.cc) || !empty(DPSRCS:M*.C) || !empty(DPSRCS:M*.cpp) || \ 157 !empty(DPSRCS:M*.cxx)
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Basic/ |
| D | Version.cpp | 40 if (URL.empty()) { in getClangRepositoryPath() 95 if (!Path.empty() || !Revision.empty()) { in getClangFullRepositoryVersion() 97 if (!Path.empty()) in getClangFullRepositoryVersion() 99 if (!Revision.empty()) { in getClangFullRepositoryVersion() 100 if (!Path.empty()) in getClangFullRepositoryVersion() 108 if (!LLVMRev.empty() && LLVMRev != Revision) { in getClangFullRepositoryVersion() 111 if (!LLVMRepo.empty()) in getClangFullRepositoryVersion()
|
| D | VersionTuple.cpp | 40 if (input.empty()) return true; in parseInt() 47 while (!input.empty()) { in parseInt() 63 if (input.empty()) { in tryParse() 73 if (input.empty()) { in tryParse() 84 if (!input.empty()) return true; in tryParse()
|
| /freebsd-9-stable/tools/regression/bin/sh/errors/ |
| D | redirection-error6.0 | 4 { echo bad; } </var/empty/x 5 if :; then echo bad; fi </var/empty/x 6 for i in 1; do echo bad; done </var/empty/x 8 while [ $i = 0 ]; do echo bad; i=1; done </var/empty/x 10 until [ $i != 0 ]; do echo bad; i=1; done </var/empty/x 11 case i in *) echo bad ;; esac </var/empty/x
|
| /freebsd-9-stable/tools/regression/execve/ |
| D | Makefile | 11 CLEANFILES= goodaout truncaout sparseaout empty ${TESTSCRIPTS} 21 regress: test-empty test-nonexist test-nonexistshell \ 26 test-empty: ${PROG} 27 rm -f empty 28 touch empty 29 chmod +x empty 30 ${RP} empty | grep 'Exec format error'
|
| /freebsd-9-stable/contrib/llvm/tools/bugpoint/ |
| D | BugDriver.cpp | 95 if (TargetTriple.getTriple().empty()) { in ParseInputFile() 98 if (TheTriple.getTriple().empty()) in ParseInputFile() 116 assert(!Filenames.empty() && "Must specify at least on input filename!"); in addSources() 163 if (!PassesToRun.empty()) { in run() 176 if (!Error.empty()) { in run() 187 if (ReferenceOutputFile.empty()) { in run() 205 if (!Error.empty()) { in run() 212 if (!Error.empty()) { in run() 222 if (!Error.empty()) { in run()
|
| D | Miscompilation.cpp | 82 if (!Error.empty()) in doTest() 86 if (Suffix.empty()) { in doTest() 95 if (Prefix.empty()) return NoFailure; in doTest() 119 if (!Error.empty()) in doTest() 141 if (Suffix.empty()) in doTest() 161 if (!Error.empty()) in doTest() 188 if (!Suffix.empty()) { in doTest() 190 if (!Error.empty()) in doTest() 195 if (!Prefix.empty()) { in doTest() 197 if (!Error.empty()) in doTest() [all …]
|
| D | FindBugs.cpp | 42 if (ReferenceOutputFile.empty()) { in runManyPasses() 81 if (!Error.empty()) { in runManyPasses() 94 if (Error.empty() && Diff) { in runManyPasses() 97 if (Error.empty()) in runManyPasses() 100 if (!Error.empty()) { in runManyPasses()
|
| D | ListReducer.h | 53 std::vector<ElTy> empty; in reduceList() local 55 switch (doTest(TheList, empty, Error)) { in reduceList() 71 assert(!Error.empty()); in reduceList() 100 if (doTest(ShuffledList, empty, Error) == KeepPrefix) { in reduceList() 146 assert(Error.empty() && "doTest did not return InternalError for error"); in reduceList() 186 if (!Error.empty()) in reduceList()
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Support/ |
| D | GraphWriter.h | 78 if (label.empty()) in getEdgeSourceLabels() 117 if (!Title.empty()) in writeHeader() 119 else if (!GraphName.empty()) in writeHeader() 127 if (!Title.empty()) in writeHeader() 129 else if (!GraphName.empty()) in writeHeader() 172 if (!NodeAttributes.empty()) O << NodeAttributes << ","; in writeNode() 183 if (!NodeDesc.empty()) in writeNode() 207 if (!NodeDesc.empty()) in writeNode() 251 if (DTraits.getEdgeSourceLabel(Node, EI).empty()) in writeEdge() 265 if (!Attr.empty()) [all …]
|
| /freebsd-9-stable/contrib/llvm/include/llvm/ADT/ |
| D | SCCIterator.h | 81 assert(!VisitStack.empty()); in DFSVisitChildren() 101 while (!VisitStack.empty()) { in GetNextSCC() 108 if (!MinVisitNumStack.empty() && MinVisitNumStack.back() > minVisitNum) in GetNextSCC() 146 assert(!CurrentSCC.empty() || VisitStack.empty()); in isAtEnd() 147 return CurrentSCC.empty(); in isAtEnd() 166 assert(!CurrentSCC.empty() && "Dereferencing END SCC iterator!"); 170 assert(!CurrentSCC.empty() && "Dereferencing END SCC iterator!"); 178 assert(!CurrentSCC.empty() && "Dereferencing END SCC iterator!"); in hasLoop()
|
| /freebsd-9-stable/contrib/llvm/lib/MC/ |
| D | MCSectionMachO.cpp | 169 while (!Str.empty() && isspace(static_cast<unsigned char>(Str[0]))) in StripSpaces() 171 while (!Str.empty() && isspace(static_cast<unsigned char>(Str.back()))) in StripSpaces() 191 if (Comma.second.empty()) in ParseSectionSpecifier() 200 if (Segment.empty() || Segment.size() > 16) in ParseSectionSpecifier() 212 if (Section.empty() || Section.size() > 16) in ParseSectionSpecifier() 219 if (Comma.second.empty()) in ParseSectionSpecifier() 245 if (Comma.second.empty()) { in ParseSectionSpecifier() 277 if (Plus.second.empty()) break; in ParseSectionSpecifier() 282 if (Comma.second.empty()) { in ParseSectionSpecifier()
|
| /freebsd-9-stable/lib/libc/locale/ |
| D | lmonetary.c | 49 static char empty[] = ""; variable 53 empty, /* int_curr_symbol */ 54 empty, /* currency_symbol */ 55 empty, /* mon_decimal_point */ 56 empty, /* mon_thousands_sep */ 58 empty, /* positive_sign */ 59 empty, /* negative_sign */
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Tooling/ |
| D | FileMatchTrie.cpp | 57 if (Path.empty()) { in insert() 62 if (Children.empty()) { in insert() 101 if (Children.empty()) { in findEquivalent() 114 if (!Result.empty() || IsAmbiguous) in findEquivalent() 122 if (Result.empty()) { in findEquivalent() 137 if (Path.empty()) in getAll() 139 if (Children.empty()) { in getAll()
|
| /freebsd-9-stable/crypto/openssh/regress/ |
| D | banner.sh | 7 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in 8 touch $OBJ/empty.in 13 cmp $OBJ/empty.in $OBJ/banner.out ) || \ 41 cmp $OBJ/empty.in $OBJ/banner.out ) || \ 44 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in
|
| /freebsd-9-stable/contrib/llvm/lib/Target/R600/ |
| D | R600MachineScheduler.cpp | 66 (Available[CurInstKind].empty()); in pickNode() 68 (!Available[IDFetch].empty() || !Available[IDOther].empty()); in pickNode() 70 if (CurInstKind == IDAlu && !Available[IDFetch].empty()) { in pickNode() 99 if (!SU && !PhysicalRegCopy.empty()) { in pickNode() 318 if (Q.empty()) in PopInst() 408 while (AvailablesAluCount() || !Pending[IDAlu].empty()) { in pickAlu() 411 if (!AvailableAlus[AluPredX].empty()) { in pickAlu() 416 if (!AvailableAlus[AluDiscarded].empty()) { in pickAlu() 421 if (!AvailableAlus[AluT_XYZW].empty()) { in pickAlu() 428 if (!AvailableAlus[AluTrans].empty()) { in pickAlu() [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | StmtIterator.h | 150 bool empty() const { return first == second; } in empty() function 151 LLVM_EXPLICIT operator bool() const { return !empty(); } 157 assert(!empty() && "incrementing on empty range"); 163 assert(!empty() && "incrementing on empty range"); 193 bool empty() const { return first == second; } in empty() function 194 LLVM_EXPLICIT operator bool() const { return !empty(); } 200 assert(!empty() && "incrementing on empty range"); 206 assert(!empty() && "incrementing on empty range");
|