HomeSort by relevance Sort by last modified time
    Searched refs:that (Results 1 - 25 of 928) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/localize/
Values.h 22 StringResource(const StringResource& that);
25 int Compare(const StringResource& that) const;
27 inline bool operator<(const StringResource& that) const { return Compare(that) < 0; }
28 inline bool operator<=(const StringResource& that) const { return Compare(that) <= 0; }
29 inline bool operator==(const StringResource& that) const { return Compare(that) == 0; }
30 inline bool operator!=(const StringResource& that) const { return Compare(that) != 0;
    [all...]
Configuration.h 20 int Compare(const Configuration& that) const;
22 inline bool operator<(const Configuration& that) const { return Compare(that) < 0; }
23 inline bool operator<=(const Configuration& that) const { return Compare(that) <= 0; }
24 inline bool operator==(const Configuration& that) const { return Compare(that) == 0; }
25 inline bool operator!=(const Configuration& that) const { return Compare(that) != 0; }
26 inline bool operator>=(const Configuration& that) const { return Compare(that) >= 0;
    [all...]
Values.cpp 35 StringResource::StringResource(const StringResource& that)
36 :pos(that.pos),
37 file(that.file),
38 config(that.config),
39 id(that.id),
40 index(that.index),
41 value(that.value),
42 version(that.version),
43 versionString(that.versionString),
44 comment(that.comment
    [all...]
XLIFFFile.h 70 int Compare(const File& that) const;
72 inline bool operator<(const File& that) const { return Compare(that) < 0; }
73 inline bool operator<=(const File& that) const { return Compare(that) <= 0; }
74 inline bool operator==(const File& that) const { return Compare(that) == 0; }
75 inline bool operator!=(const File& that) const { return Compare(that) != 0; }
76 inline bool operator>=(const File& that) const { return Compare(that) >= 0;
    [all...]
Configuration.cpp 5 Configuration::Compare(const Configuration& that) const
9 n = locale.compare(that.locale);
12 n = vendor.compare(that.vendor);
15 n = orientation.compare(that.orientation);
18 n = density.compare(that.density);
21 n = touchscreen.compare(that.touchscreen);
24 n = keyboard.compare(that.keyboard);
27 n = navigation.compare(that.navigation);
30 n = screenSize.compare(that.screenSize);
  /build/tools/droiddoc/src/
SourcePositionInfo.java 32 public SourcePositionInfo(SourcePositionInfo that)
34 this.file = that.file;
35 this.line = that.line;
36 this.column = that.column;
40 * Given this position and str which occurs at that position, as well as str an index into str,
45 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index)
47 if (that == null) {
50 int line = that.line;
59 return new SourcePositionInfo(that.file, line, 0);
62 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str
86 SourcePositionInfo that = (SourcePositionInfo)o; local
    [all...]
  /external/dbus/test/data/valid-config-files/
debug-allow-all.conf 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
  /build/tools/apicheck/src/com/android/apicheck/
SourcePositionInfo.java 36 public SourcePositionInfo(SourcePositionInfo that)
38 this.file = that.file;
39 this.line = that.line;
40 this.column = that.column;
44 * Given this position and str which occurs at that position, as well as str an index into str,
49 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index)
51 if (that == null) {
54 int line = that.line;
63 return new SourcePositionInfo(that.file, line, 0);
66 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str
98 SourcePositionInfo that = (SourcePositionInfo)o; local
    [all...]
  /frameworks/base/services/java/com/android/server/status/
IconData.java 38 * The slot that this icon will be in if it is not a notification
91 public void copyFrom(IconData that) {
92 this.type = that.type;
93 this.slot = that.slot;
94 this.iconPackage = that.iconPackage;
95 this.iconId = that.iconId;
96 this.iconLevel = that.iconLevel;
97 this.number = that.number;
98 this.text = that.text; // should we clone this?
102 IconData that = new IconData() local
    [all...]
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 41 * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
180 ProtocolVersion that = (ProtocolVersion) obj; local
182 return ((this.protocol.equals(that.protocol)) &&
183 (this.major == that.major) &&
184 (this.minor == that.minor));
193 * @param that the protocol version to consider
198 public boolean isComparable(ProtocolVersion that) {
199 return (that != null) && this.protocol.equals(that.protocol)
    [all...]
  /external/icu4c/common/
chariter.cpp 66 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
67 ForwardCharacterIterator(that),
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
73 CharacterIterator::operator=(const CharacterIterator &that) {
74 ForwardCharacterIterator::operator=(that);
75 textLength = that.textLength;
76 pos = that.pos
    [all...]
schriter.cpp 58 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that)
59 : UCharCharacterIterator(that),
60 text(that.text)
70 StringCharacterIterator::operator=(const StringCharacterIterator& that) {
71 UCharCharacterIterator::operator=(that);
72 text = that.text;
79 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
80 if (this == &that) {
85 // because that checks for array pointer equality
88 if (getDynamicClassID() != that.getDynamicClassID())
    [all...]
  /external/webkit/WebCore/
DerivedSources.cpp 5 * modification, are permitted provided that the following conditions
378 #error Do not include any file in DerivedSources.cpp that includes StaticConstructors.h
  /external/icu4c/common/unicode/
schriter.h 32 * 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 string as "that" does
    [all...]
  /external/icu4c/i18n/
dtrule.cpp 81 DateTimeRule::operator==(const DateTimeRule& that) const {
82 return ((this == &that) ||
83 (getDynamicClassID() == that.getDynamicClassID() &&
84 fMonth == that.fMonth &&
85 fDayOfMonth == that.fDayOfMonth &&
86 fDayOfWeek == that.fDayOfWeek &&
87 fWeekInMonth == that.fWeekInMonth &&
88 fMillisInDay == that.fMillisInDay &&
89 fDateRuleType == that.fDateRuleType &&
90 fTimeRuleType == that.fTimeRuleType))
    [all...]
tztrans.cpp 63 TimeZoneTransition::operator==(const TimeZoneTransition& that) const {
64 if (this == &that) {
67 if (getDynamicClassID() != that.getDynamicClassID()) {
70 if (fTime != that.fTime) {
73 if (fFrom == NULL && that.fFrom == NULL
74 || fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom)) {
75 if (fTo == NULL && that.fTo == NULL
76 || fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))
    [all...]
  /external/v8/src/
apiutils.h 3 // modification, are permitted provided that the following conditions are
40 static int GetNameCount(ExtensionConfiguration* that) {
41 return that->name_count_;
44 static const char** GetNames(ExtensionConfiguration* that) {
45 return that->names_;
ast.cc 3 // modification, are permitted provided that the following conditions are
296 void VisitCharacterRange(CharacterRange that);
312 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) {
314 for (int i = 0; i < that->alternatives()->length(); i++) {
316 that->alternatives()->at(i)->Accept(this, data);
323 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) {
325 for (int i = 0; i < that->nodes()->length(); i++) {
327 that->nodes()->at(i)->Accept(this, data);
334 void RegExpUnparser::VisitCharacterRange(CharacterRange that) {
335 stream()->Add("%k", that.from())
    [all...]
  /dalvik/libcore/math/src/main/java/java/math/
Logical.java 33 /** Just to denote that this class can't be instantiated. */
82 static BigInteger and(BigInteger val, BigInteger that) {
83 if (that.sign == 0 || val.sign == 0) {
86 if (that.equals(BigInteger.MINUS_ONE)){
90 return that;
94 if (that.sign > 0) {
95 return andPositive(val, that);
97 return andDiffSigns(val, that);
100 if (that.sign > 0) {
101 return andDiffSigns(that, val)
    [all...]
  /external/opencore/protocols/systems/tools/general/common/include/
pvt_params.h 35 CPVChannelParam(CPVChannelParam& that) : CPVTrackInfo(that),
36 iDirection(that.iDirection), iChannelId(that.iChannelId), iDirectionality(that.iDirectionality), iEpl(that.iEpl),
37 iNumSduSizes(that.iNumSduSizes), iSduSizes(NULL), iMediaParam(NULL)
42 oscl_memcpy(iSduSizes, that.iSduSizes, iNumSduSizes*sizeof(int));
44 if (that.iMediaParam)
46 iMediaParam = (CPVMediaParam*)that.iMediaParam->Copy()
    [all...]
  /external/icu4c/layout/
GlyphIterator.cpp 43 GlyphIterator::GlyphIterator(GlyphIterator &that)
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.lookupFlags
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 197 public int match(final AuthScope that) {
199 if (LangUtils.equals(this.scheme, that.scheme)) {
202 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) {
206 if (LangUtils.equals(this.realm, that.realm)) {
209 if (this.realm != ANY_REALM && that.realm != ANY_REALM) {
213 if (this.port == that.port) {
216 if (this.port != ANY_PORT && that.port != ANY_PORT) {
220 if (LangUtils.equals(this.host, that.host)) {
223 if (this.host != ANY_HOST && that.host != ANY_HOST) {
244 AuthScope that = (AuthScope) o local
    [all...]
  /external/webkit/WebCore/platform/gtk/
PopupMenuGtk.cpp 13 * This library is distributed in the hope that it will be useful,
126 void PopupMenu::menuItemActivated(GtkMenuItem* item, PopupMenu* that)
128 ASSERT(that->client());
129 ASSERT(that->m_indexMap.contains(GTK_WIDGET(item)));
130 that->client()->valueChanged(that->m_indexMap.get(GTK_WIDGET(item)));
133 void PopupMenu::menuUnmapped(GtkWidget*, PopupMenu* that)
135 ASSERT(that->client());
136 that->client()->popupDidHide();
139 void PopupMenu::menuPositionFunction(GtkMenu*, gint* x, gint* y, gboolean* pushIn, PopupMenu* that)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
UnresolvedPrincipal.java 93 public boolean equals(Object that) {
94 if (that instanceof UnresolvedPrincipal) {
95 UnresolvedPrincipal up = (UnresolvedPrincipal) that;
99 if (that instanceof Principal) {
100 return implies((Principal) that);
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 50 public static boolean equals(IArrayType thiz, Object that) {
51 if (!(that instanceof IArrayType)) {
54 IArrayType other = (IArrayType) that;

Completed in 1406 milliseconds

1 2 3 4 5 6 7 8 91011>>