Searched refs:find (Results 176 - 200 of 773) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp960 if (typestr.find("Q") != StringRef::npos) {
961 size_t pos = s.find('_');
966 size_t pos = s.find('_');
1426 if (proto.find('i') != std::string::npos)
1431 if (proto.find('p') != std::string::npos ||
1432 proto.find('c') != std::string::npos)
1592 std::size_t found = s.find("_high_");
2302 return (proto.find('s') != std::string::npos
2303 || proto.find('z') != std::string::npos
2304 || proto.find('
[all...]
/freebsd-9.3-release/crypto/openssh/contrib/aix/
H A Dbuildbff.sh166 find . ! -name . -print >../openssh.al
179 files=`find . -type f -print`
370 find . ! -name lpp_name -a ! -name . -print
/freebsd-9.3-release/tools/tools/nanobsd/
H A Dnanobsd.sh343 find . -print | cpio -dumpl ../../../etc/local
357 find $d -print | cpio -dumpl conf/base/
398 find ${NANO_WORLDDIR}/usr -type d -depth -print |
426 find . -print | grep -Ev '/(CVS|\.svn)' | cpio -dumpv ${mnt}
684 find . -print | grep -Ev '/(CVS|\.svn)' | cpio -Ldumpv ${NANO_WORLDDIR}
702 find ${NANO_PACKAGE_LIST} -print |
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dstreambuf_iterator.h79 find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
360 find(istreambuf_iterator<_CharT> __first, function
379 const _CharT* __p = traits_type::find(__sb->gptr(),
/freebsd-9.3-release/contrib/libstdc++/include/debug/
H A Dhash_set.h163 find(const key_type& __key) const function in class:__gnu_cxx::__debug::hash_set
164 { return iterator(_Base::find(__key), this); }
181 iterator __victim(_Base::find(__key), this);
H A Dmultimap.h214 find(const key_type& __x) function in class:std::__debug::multimap
215 { return iterator(_Base::find(__x), this); }
218 find(const key_type& __x) const function in class:std::__debug::multimap
219 { return const_iterator(_Base::find(__x), this); }
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp85 if (ReplacedValues.find(Res) != ReplacedValues.end()) {
97 DenseMap<SDValue, SDValue>::iterator I = ReplacedValues.find(NewVal);
100 I = ReplacedValues.find(NewVal);
105 if (PromotedIntegers.find(Res) != PromotedIntegers.end())
107 if (SoftenedFloats.find(Res) != SoftenedFloats.end())
109 if (ScalarizedVectors.find(Res) != ScalarizedVectors.end())
111 if (ExpandedIntegers.find(Res) != ExpandedIntegers.end())
113 if (ExpandedFloats.find(Res) != ExpandedFloats.end())
115 if (SplitVectors.find(Res) != SplitVectors.end())
117 if (WidenedVectors.find(Re
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp94 // be able to find it when retrying a call with no inlining).
393 if (Pass2.find(N) != Pass2.end())
415 Pass2Ty::iterator PI = Pass2.find(*I);
428 Pass2Ty::iterator PI = Pass2.find(*I);
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwdclient.c358 if (client->find != client->v4find
359 && client->find != client->v6find)
360 dns_adb_cancelfind(client->find);
455 client->find = NULL;
/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Dalgo.h70 using std::find;
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Derase_fn_imps.hpp193 point_iterator it = find(r_key);
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/splay_tree_/
H A Derase_fn_imps.hpp52 point_iterator it = find(r_key);
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DCFGPrinter.h72 unsigned Idx = OutStr.find('\n', i+1); // Find end of line
82 // Else keep trying to find a space.
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp77 return getEdgeWeight(Src, std::find(Src->succ_begin(), Src->succ_end(), Dst));
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugAbbrev.cpp99 pos = AbbrevCollMap.find(cu_abbr_offset);
H A DDWARFFormValue.cpp146 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr);
182 RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr);
197 = cu->getRelocMap()->find(*offset_ptr);
219 = cu->getRelocMap()->find(*offset_ptr);
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp113 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
364 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
370 SymbolTableMap::const_iterator gsi = GlobalSymbolTable.find(TargetName.data());
391 StubMap::const_iterator i = Stubs.find(Value);
414 StubMap::const_iterator i = Stubs.find(Value);
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCRegisterInfo.cpp83 const DenseMap<unsigned, int>::const_iterator I = L2SEHRegs.find(RegNum);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DDynamicLibrary.cpp116 StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DInheritViz.cpp67 if (KnownVirtualBases.find(CanonType) != KnownVirtualBases.end())
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DConsumed.cpp489 ConstInfoEntry Entry = PropagationMap.find(StmtNode);
534 InfoEntry Entry = PropagationMap.find(From);
570 InfoEntry LEntry = PropagationMap.find(BinOp->getLHS()),
571 REntry = PropagationMap.find(BinOp->getRHS());
637 InfoEntry Entry = PropagationMap.find(Call->getArg(Index));
692 InfoEntry Entry = PropagationMap.find(Temp->getSubExpr());
724 InfoEntry Entry = PropagationMap.find(Call->getArg(0));
765 InfoEntry Entry = PropagationMap.find(Call->getCallee()->IgnoreParens());
798 InfoEntry LEntry = PropagationMap.find(Call->getArg(0));
799 InfoEntry REntry = PropagationMap.find(Cal
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGRecordLayout.h206 it = BitFields.find(FD);
207 assert(it != BitFields.end() && "Unable to find bitfield info");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DEncoding.h81 StringRef::size_type TabPos = Tail.find('\t');
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCInstMethSignature.cpp112 MapTy::iterator MI = IMeths.find(S);
/freebsd-9.3-release/sys/
H A DMakefile45 find ${CSCOPEDIRS} -name "*.[chSsly]" -a -type f > ${.TARGET}

Completed in 215 milliseconds

1234567891011>>