Searched refs:that (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/nvi/
H A DLICENSE5 The following are the copyrights and redistribution conditions that apply
19 * modification, are permitted provided that the following conditions
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DTimeValue.h106 /// This is a static constructor that returns a TimeValue that represents
115 /// Add \p that to \p this.
118 TimeValue& operator += (const TimeValue& that ) {
119 this->seconds_ += that.seconds_ ;
120 this->nanos_ += that.nanos_ ;
125 /// Subtract \p that from \p this.
128 TimeValue& operator -= (const TimeValue &that ) {
129 this->seconds_ -= that.seconds_ ;
130 this->nanos_ -= that
[all...]
H A DPathV1.h65 /// on it. Note that this class only represents the name of a path to a file
69 /// ensures that the path it encapsulates is syntactically valid for the
72 /// specify path components that do not exist in the file system and using
78 /// false. All operations will fail if isValid is false. Operations that
88 /// notion that the operation modifies the file system.
99 /// what the root directory is or none at all. In that case, a consistent
104 /// Construct a path to a unique temporary directory that is created in
114 /// Construct a vector of sys::Path that contains the "standard" system
119 /// Construct a vector of sys::Path that contains the "standard" bitcode
148 /// Return the suffix commonly used on file names that contai
174 Path(const Path &that) argument
198 operator =(const Path &that) argument
634 PathWithStatus(const PathWithStatus &that) argument
663 operator =(const PathWithStatus &that) argument
673 operator =(const Path &that) argument
[all...]
/freebsd-10.0-release/contrib/dialog/samples/
H A Dchecklist1219 Dog:No, that's not my dog.:ON
20 Orange:Yeah, that's juicy.:off
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h49 bool operator==(const KeyTy& that) const {
50 return type == that.type && this->val == that.val;
52 bool operator!=(const KeyTy& that) const {
53 return !this->operator==(that);
73 bool operator==(const KeyTy& that) const {
74 return this->val.bitwiseIsEqual(that.val);
76 bool operator!=(const KeyTy& that) const {
77 return !this->operator==(that);
106 bool operator==(const KeyTy& that) cons
[all...]
H A DConstantsContext.h329 bool operator==(const ExprMapKeyType& that) const {
330 return this->opcode == that.opcode &&
331 this->subclassdata == that.subclassdata &&
332 this->subclassoptionaldata == that.subclassoptionaldata &&
333 this->operands == that.operands &&
334 this->indices == that.indices;
336 bool operator<(const ExprMapKeyType & that) const {
337 if (this->opcode != that.opcode) return this->opcode < that.opcode;
338 if (this->operands != that
[all...]
/freebsd-10.0-release/contrib/bmake/mk/
H A Dtarget-flags.mk31 # It is important that target-flags.mk is included after other
32 # macro files and that target specific flags that may reference
33 # _$v are set after that.
35 # Only works with a make(1) that does nested evaluation correctly.
44 # This file is provided in the hope that it will
47 # use this file is hereby granted provided that
H A Dlibnames.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Dhost.libnames.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Dinc.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Dsys.clean-env.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
21 # The actuall list of variables from the environment that will be
31 # We save any env var that starts with the words in MAKE_ENV_SAVE_PREFIX_LIST.
57 # This is the actual list that we will save
85 # This is a list of vars that we handle specially below
H A Dinit.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Dlinks.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Drst2htm.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
H A Dwarnings.mk6 # This file is provided in the hope that it will
9 # use this file is hereby granted provided that
65 # we need to turn off -Wuninitialized as otherwise we get a warning that
91 # the idea is that you can set WARNINGS_SET[_${MACHINE_ARCH}]=HIGH
99 # NOTE: that we force the target extension to be .o
110 # Replacing the above .for loops with the WARNINGS+= below solves that
124 # NOTE: that we force the target extension to be .o
135 # it is rather silly that g++ blows up on some warning flags
H A Dauto.obj.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
19 # A race condition in some versions of mkdir, means that it can bail
20 # if another process made a dir that mkdir expected to.
H A Ddpadd.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
57 # building profiled version of a prog that needs dlopen to work
93 # so that the correct INCLUDES_* will be picked up automatically.
99 # This little bit of magic, assumes that SRC_libfoo will be
101 # Note that SRC_libfoo and INCLUDES_libfoo should be named for the
102 # actual libary name not the variable name that might refer to it.
104 # only has the libary name available, so stick to that.
114 # if SRC_libfoo is not set, then we assume that the srcdir corresponding
141 # If ${INCLUDES_libfoo} contains a word ending in /h, we assume that eithe
[all...]
H A Dsys.dependfile.mk5 # This file is provided in the hope that it will
8 # use this file is hereby granted provided that
21 # 2. that machine specific files end in .${MACHINE}
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal2.ksh51 * Use two enablings of the same probe, so that cpu 0 will always
54 * that we record the timestamp, because chill() causes the
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DSmallPtrSet.cpp57 // If fewer of 1/8 of the array is empty (meaning that many are filled with
119 // prefer to return it than something that would require more probing.
167 const SmallPtrSetImpl& that) {
171 if (that.isSmall()) {
175 CurArray = (const void**)malloc(sizeof(void*) * that.CurArraySize);
180 CurArraySize = that.CurArraySize;
183 memcpy(CurArray, that.CurArray, sizeof(void*)*CurArraySize);
185 NumElements = that.NumElements;
186 NumTombstones = that.NumTombstones;
189 /// CopyFrom - implement operator= from a smallptrset that ha
[all...]
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dsntp-opts.def87 be set when the program fails with a message indicating that is the
98 Very verbose debugging output that will interfere with the timing
100 Note that the times produced by this are the corrections needed, and
150 indicates that diagnostic messages for non-fatal errors and a limited amount of
158 program fails with a message indicating that is the trouble.
163 that the times produced by this are the corrections needed, and not the error
167 indicates that it should query a daemon save file being maintained by it.
170 The default is that it should behave as a client, and the following options
174 indicates that the system clock should be reset by
179 indicates that th
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DSetVector.h10 // This file implements a set that has insertion order iteration
11 // characteristics. This is useful for keeping a set of things that need to be
30 /// \brief A vector that has set insertion semantics.
32 /// This adapter class provides a way to keep a set of things that also has the
179 bool operator==(const SetVector &that) const {
180 return vector_ == that.vector_;
183 bool operator!=(const SetVector &that) const {
184 return vector_ != that.vector_;
215 /// \brief A SetVector that performs no allocations if smaller than
/freebsd-10.0-release/contrib/gcc/config/mips/
H A Dirix-crti.asm7 linker simply sets DT_INIT to that value. gcc's initialization and
13 to a linker-created function (placed in .init) that calls each of the -init
15 function will be placed after it. Note that such user code is not treated
/freebsd-10.0-release/contrib/one-true-awk/
H A DFIXES7 granted, provided that the above copyright notice appear in all
8 copies and that both that the copyright notice and this
10 documentation, and that the name Lucent Technologies or any of
54 added checks to new -v code that permits -vnospace; thanks to
60 fixed day 1 bug that resurrected deleted elements of ARGV when
90 fixed bug that didn't parse -vd=1 properly; thanks to santiago
105 temporarily for now defined HAS_ISBLANK, since that seems to
111 fixed typo in b.c that set tmpvec wrongly. no one had ever
146 fixed a bug in -d that cause
[all...]
/freebsd-10.0-release/sys/dev/isp/
H A DDriverManual.txt7 This is a short text document that will describe the background, goals
18 and to be familiar with the range of platforms that Solaris, Linux and
44 from the premise that the driver would drive both SBus and PCI card
52 the way it was designed I concluded that it was so darned close to being
53 just like the SCSI HBAs that it would be insane to *not* leverage off of
54 the existing driver. So, we ended up with a driver for NetBSD that drove
73 and meet it. This driver has had a design goal that changes from almost
76 a bit of "reconstruction after the fact" in that the design goals are
79 The primary design goal now is to have a driver that can run both the
100 driver that i
[all...]

Completed in 115 milliseconds

1234567891011>>