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

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/cxx/
H A Dcxx_lock.cpp32 DbLock::DbLock(const DbLock &that) argument
33 : lock_(that.lock_)
37 DbLock &DbLock::operator = (const DbLock &that) argument
39 lock_ = that.lock_;
H A Dcxx_except.cpp68 DbException::DbException(const DbException &that)
70 , what_(dupString(that.what_))
71 , err_(that.err_)
76 DbException &DbException::operator = (const DbException &that) argument
78 if (this != &that) {
79 err_ = that.err_;
81 what_ = dupString(that.what_);
115 * so we need to fix that here before duplicating it.
167 DbMemoryException::DbMemoryException(const DbMemoryException &that) argument
168 : DbException(that)
174 operator =(const DbMemoryException &that) argument
203 DbDeadlockException(const DbDeadlockException &that) argument
209 operator =(const DbDeadlockException &that) argument
250 DbLockNotGrantedException(const DbLockNotGrantedException &that) argument
262 operator =(const DbLockNotGrantedException &that) argument
315 DbRepHandleDeadException(const DbRepHandleDeadException &that) argument
322 operator =(const DbRepHandleDeadException &that) argument
344 DbRunRecoveryException(const DbRunRecoveryException &that) argument
351 operator =(const DbRunRecoveryException &that) argument
[all...]
H A Dcxx_dbt.cpp41 Dbt::Dbt(const Dbt &that) argument
43 const DBT *from = &that;
48 Dbt &Dbt::operator = (const Dbt &that) argument
50 if (this != &that) {
51 const DBT *from = &that;
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dchariter.cpp68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
69 ForwardCharacterIterator(that),
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
75 CharacterIterator::operator=(const CharacterIterator &that) { argument
76 ForwardCharacterIterator::operator=(that);
77 textLength = that.textLength;
78 pos = that
[all...]
H A Dschriter.cpp60 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that) argument
61 : UCharCharacterIterator(that),
62 text(that.text)
72 StringCharacterIterator::operator=(const StringCharacterIterator& that) { argument
73 UCharCharacterIterator::operator=(that);
74 text = that.text;
81 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
82 if (this == &that) {
87 // because that checks for array pointer equality
90 if (typeid(*this) != typeid(that)) {
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddtrule.cpp83 DateTimeRule::operator==(const DateTimeRule& that) const {
84 return ((this == &that) ||
85 (typeid(*this) == typeid(that) &&
86 fMonth == that.fMonth &&
87 fDayOfMonth == that.fDayOfMonth &&
88 fDayOfWeek == that.fDayOfWeek &&
89 fWeekInMonth == that.fWeekInMonth &&
90 fMillisInDay == that.fMillisInDay &&
91 fDateRuleType == that.fDateRuleType &&
92 fTimeRuleType == that
[all...]
H A Dtztrans.cpp65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const {
66 if (this == &that) {
69 if (typeid(*this) != typeid(that)) {
72 if (fTime != that.fTime) {
75 if ((fFrom == NULL && that.fFrom == NULL)
76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) {
77 if ((fTo == NULL && that.fTo == NULL)
78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that
[all...]
H A Dformat.cpp34 * Unless we export _something_ in that case...
85 Format::Format(const Format &that) argument
86 : UObject(that)
88 *this = that;
95 Format::operator=(const Format& that) argument
97 if (this != &that) {
98 uprv_strcpy(validLocale, that.validLocale);
99 uprv_strcpy(actualLocale, that.actualLocale);
157 Format::operator==(const Format& that) const
160 return typeid(*this) == typeid(that);
[all...]
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dnw_export.inc1 /* Must include ap_config.h first so that we can redefine
7 so that httpd.h will not mess with them. This allows
8 them to pass untouched so that the AWK script can pick
/macosx-10.9.5/CPANInternal-140/Class-DBI/t/testlib/
H A DLazy.pm10 __PACKAGE__->columns('things', qw(this that));
20 that INTEGER,
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/t/testlib/
H A DLazy.pm10 __PACKAGE__->columns('things', qw(this that));
17 that INTEGER,
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/testlib/
H A DLazy.pm10 __PACKAGE__->columns('things', qw(this that));
17 that INTEGER,
/macosx-10.9.5/CPANInternal-140/Sub-Exporter/xt/release/
H A Dpod.t7 These tests that all POD is valid.
H A Dpod-coverage.t7 These tests that everything public is documented.
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DLLVMContextImpl.h49 KeyTy(const KeyTy& that) : val(that.val), type(that.type) {} argument
50 bool operator==(const KeyTy& that) const {
51 return type == that.type && this->val == that.val;
53 bool operator!=(const KeyTy& that) const {
54 return !this->operator==(that);
74 KeyTy(const KeyTy& that) : val(that argument
105 KeyTy(const KeyTy& that) argument
152 KeyTy(const KeyTy& that) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DTimeValue.h103 /// This is a static constructor that returns a TimeValue that represents
112 /// Add \p that to \p this.
115 TimeValue& operator += (const TimeValue& that ) {
116 this->seconds_ += that.seconds_ ;
117 this->nanos_ += that.nanos_ ;
122 /// Subtract \p that from \p this.
125 TimeValue& operator -= (const TimeValue &that ) {
126 this->seconds_ -= that.seconds_ ;
127 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...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGlyphIterator.cpp43 GlyphIterator::GlyphIterator(GlyphIterator &that) argument
44 : glyphStorage(that.glyphStorage)
46 direction = that.direction;
47 position = that.position;
48 nextLimit = that.nextLimit;
49 prevLimit = that.prevLimit;
51 glyphPositionAdjustments = that.glyphPositionAdjustments;
52 srcIndex = that.srcIndex;
53 destIndex = that.destIndex;
54 lookupFlags = that
61 GlyphIterator(GlyphIterator &that, FeatureMask newFeatureMask) argument
79 GlyphIterator(GlyphIterator &that, le_uint16 newLookupFlags) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dschriter.h32 * A concrete subclass of CharacterIterator that iterates over the
35 * iterator that iterates over an entire UnicodeString, but also to
36 * create one that iterates over only a subrange of a UnicodeString
89 * of the same string as "that", and its initial position is the
90 * same as "that"'s current position.
91 * The UnicodeString object in "that" is copied.
92 * @param that The StringCharacterIterator to be copied
95 StringCharacterIterator(const StringCharacterIterator& that);
105 * range of the same string as "that", and refers to the same
106 * character within that strin
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/
H A D04-lazy.t26 is_deeply [ sort Lazy->columns('things') ], [qw/that this/], "things";
29 is_deeply [ sort Lazy->columns('All') ], [qw/eep oop opop orp that this/], "All";
37 my @groups = Lazy->__grouper->groups_for(Lazy->find_column('that'));
38 is_deeply \@groups, [qw/things/], "that (@groups)";
41 Lazy->create({ this => 1, that => 2, oop => 3, opop => 4, eep => 5 });
46 ok(!$obj->_attribute_exists('that'), "But other things");
54 ok(!$obj->_attribute_exists('that'), 'nor that');
57 Lazy->columns(All => qw/this that eep orp oop opop/);
68 Lazy->create(this => 10, that
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/commands/
H A Dlock_command.rb25 The lock command will generate a list of +gem+ statements that will lock down
27 versions in the requirements list to ensure that the gems loaded will always
46 Just load lockdown.rb from your application to ensure that the current
47 versions are loaded. Make sure that lockdown.rb is loaded *before* any
50 Notice that rails 1.0.0 only requires that rake 0.6.2 or better be used.
51 Rake-0.7.0.1 is the most recent version installed that satisfies that, so we
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/
H A DMore.t75 ok( eq_array([qw(this that whatever)], [qw(this that whatever)]),
83 ok( eq_set([qw(this that whatever)], [qw(that whatever this)]),
88 [qw(this that whatever)],
95 [qw(this that whatever)],
108 my @array1 = (qw(this that whatever),
110 my @array2 = (qw(this that whatever),
122 bar => [qw(this that whatever)],
126 bar => [qw(this that whateve
[all...]
/macosx-10.9.5/CPANInternal-140/XML-Parser/Parser/Style/
H A DSubs.pm48 Each time an element starts, a sub by that name in the package specified
49 by the Pkg option is called with the same parameters that the Start
52 Each time an element ends, a sub with that name appended with an underscore
53 ("_"), is called with the same parameters that the End handler gets called
/macosx-10.9.5/dtrace-118.1/test/tst/common/funcs/
H A Derr.chillbadarg.ksh9 * Verify that chill() refuses args greater than
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dsearch.h41 * <tt>SearchIterator</tt> is an abstract base class that provides
56 * <tt>SearchIterator</tt> provides an API that is similar to that of
86 * Copy constructor that creates a SearchIterator instance with the same
103 * that's affected.
148 * Returns the index to the match in the text string that was searched.
155 * @return index of a substring within the text string that is being
182 * Returns the text that was matched by the most recent call to
198 * Set the BreakIterator that will be used to restrict the points
201 * @param breakiter A BreakIterator that wil
[all...]

Completed in 330 milliseconds

1234567891011>>