/frameworks/base/include/utils/ |
String16.h | 88 void setTo(const String16& other); 89 status_t setTo(const char16_t* other); 90 status_t setTo(const char16_t* other, size_t len); 91 status_t setTo(const String16& other, 95 status_t append(const String16& other); 96 status_t append(const char16_t* other, size_t len); 98 inline String16& operator=(const String16& other); 100 inline String16& operator+=(const String16& other); 101 inline String16 operator+(const String16& other) const; 120 inline int compare(const String16& other) const [all...] |
String8.h | 45 * If you are going to use other GetUtf... functions defined in this header 48 * other functions do not check whether the string is valid UTF-8 or not. 163 void setTo(const String8& other); 164 status_t setTo(const char* other); 165 status_t setTo(const char* other, size_t numChars); 166 status_t setTo(const char16_t* other, size_t numChars); 167 status_t setTo(const char32_t* other, 170 status_t append(const String8& other); 171 status_t append(const char* other); 172 status_t append(const char* other, size_t numChars) [all...] |
/external/quake/quake/src/QW/progs/ |
items.qc | 2 /* ALL LIGHTS SHOULD BE 0 1 0 IN COLOR ALL OTHER ITEMS SHOULD
35 if (other.classname != "player")
37 if (other.health <= 0)
42 sound (other, CHAN_VOICE, self.noise, 1, ATTN_NORM);
43 stuffcmd (other, "bf\n");
45 other.items = other.items | IT_QUAD;
49 other.armortype = 0;
50 other.armorvalue = 0 * 0.01;
51 other.ammo_cells = 0; [all...] |
/frameworks/base/core/java/android/content/res/ |
package.html | 4 such as raw asset files, colors, drawables, media or other other files
|
/external/webkit/WebCore/platform/chromium/ |
ChromiumDataObject.cpp | 12 * in the documentation and/or other materials provided with the 64 ChromiumDataObject::ChromiumDataObject(const ChromiumDataObject& other) 65 : url(other.url) 66 , urlTitle(other.urlTitle) 67 , downloadURL(other.downloadURL) 68 , downloadMetadata(other.downloadMetadata) 69 , fileExtension(other.fileExtension) 70 , filenames(other.filenames) 71 , plainText(other.plainText) 72 , textHtml(other.textHtml [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/ |
DHValidationParameters.java | 24 DHValidationParameters other = (DHValidationParameters)o; local 26 if (other.counter != this.counter) 31 if (other.seed.length != this.seed.length) 36 for (int i = 0; i != other.seed.length; i++) 38 if (other.seed[i] != this.seed[i])
|
/external/icu4c/i18n/ |
measure.cpp | 31 Measure::Measure(const Measure& other) : 32 UObject(other), unit(0) { 33 *this = other; 36 Measure& Measure::operator=(const Measure& other) { 37 if (this != &other) { 39 number = other.number; 40 unit = (MeasureUnit*) other.unit->clone(); 49 UBool Measure::operator==(const UObject& other) const { 50 const Measure* m = (const Measure*) &other; 51 return getDynamicClassID() == other.getDynamicClassID() & [all...] |
currfmt.cpp | 26 CurrencyFormat::CurrencyFormat(const CurrencyFormat& other) : 27 MeasureFormat(other), fmt(NULL) 29 fmt = (NumberFormat*) other.fmt->clone(); 36 UBool CurrencyFormat::operator==(const Format& other) const { 37 if (this == &other) { 40 if (other.getDynamicClassID() != CurrencyFormat::getStaticClassID()) { 43 const CurrencyFormat* c = (const CurrencyFormat*) &other;
|
curramt.cpp | 30 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) : 31 Measure(other) { 34 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) { 35 Measure::operator=(other);
|
tmutamt.cpp | 33 TimeUnitAmount::TimeUnitAmount(const TimeUnitAmount& other) 34 : Measure(other) 40 TimeUnitAmount::operator=(const TimeUnitAmount& other) { 41 Measure::operator=(other); 47 TimeUnitAmount::operator==(const UObject& other) const { 48 return Measure::operator==(other);
|
/external/proguard/src/proguard/evaluation/value/ |
UnknownDoubleValue.java | 55 public DoubleValue generalize(DoubleValue other) 60 public DoubleValue add(DoubleValue other) 65 public DoubleValue subtract(DoubleValue other) 70 public DoubleValue subtractFrom(DoubleValue other) 75 public DoubleValue multiply(DoubleValue other) 80 public DoubleValue divide(DoubleValue other) 85 public DoubleValue divideOf(DoubleValue other) 90 public DoubleValue remainder(DoubleValue other) 95 public DoubleValue remainderOf(DoubleValue other) 100 public IntegerValue compare(DoubleValue other) [all...] |
UnknownFloatValue.java | 55 public FloatValue generalize(FloatValue other) 60 public FloatValue add(FloatValue other) 65 public FloatValue subtract(FloatValue other) 70 public FloatValue subtractFrom(FloatValue other) 75 public FloatValue multiply(FloatValue other) 80 public FloatValue divide(FloatValue other) 85 public FloatValue divideOf(FloatValue other) 90 public FloatValue remainder(FloatValue other) 95 public FloatValue remainderOf(FloatValue other) 100 public IntegerValue compare(FloatValue other) [all...] |
InstructionOffsetValue.java | 141 * other InstructionOffsetValue. The values of the other InstructionOffsetValue 144 public final Value generalize(InstructionOffsetValue other) 146 // If the values array of either is null, return the other one. 149 return other; 152 if (other.values == null) 159 for (int index = 0; index < other.values.length; index++) 161 if (!this.contains(other.values[index])) 169 if (newLength == other.values.length) 171 return other; 248 InstructionOffsetValue other = (InstructionOffsetValue)object; local [all...] |
/external/blktrace/ |
rbtree.c | 139 struct rb_node *other; local 145 other = parent->rb_right; 146 if (rb_is_red(other)) 148 rb_set_black(other); 151 other = parent->rb_right; 153 if ((!other->rb_left || rb_is_black(other->rb_left)) && 154 (!other->rb_right || rb_is_black(other->rb_right))) 156 rb_set_red(other); [all...] |
/external/clearsilver/man/man3/ |
cgi_url_escape_more.3 | 20 NEOERR *cgi_url_escape_more (const char *buf, char **esc, const char *other); 27 other - a 0 terminated string of characters to escape 34 other
|
/dalvik/tests/002-sleep/ |
info.txt | 2 mostly meant as an easy thing to modify in order to test other things
|
/dalvik/tests/071-dexfile/ |
info.txt | 2 work on other VMs.
|
/external/bison/ |
AUTHORS | 8 string literals and other features.
|
/external/clearsilver/cs/ |
test_crc.cs | 2 <?cs var:string.crc("my other string") ?>
|
/external/webkit/WebCore/platform/image-decoders/qt/ |
RGBA32BufferQt.cpp | 13 * documentation and/or other materials provided with the distribution. 57 // NOTE: Do not reset other members here; clearFrameBufferCache() 58 // calls this to free the bitmap data, but other functions like 60 // other metadata out of this frame later. 68 void RGBA32Buffer::copyBitmapData(const RGBA32Buffer& other) 70 if (this == &other) 73 m_image = other.m_image; 74 m_size = other.m_size; 75 m_hasAlpha = other.m_hasAlpha; 118 RGBA32Buffer& RGBA32Buffer::operator=(const RGBA32Buffer& other) [all...] |
/external/icu4c/layout/ |
GDEFMarkFilter.h | 26 GDEFMarkFilter(const GDEFMarkFilter &other); // forbid copying of this class 27 GDEFMarkFilter &operator=(const GDEFMarkFilter &other); // forbid copying of this class
|
/external/iptables/extensions/ |
libipt_helper.man | 8 For other ports append -portnr to the value, ie. "ftp-2121". 10 Same rules apply for other conntrack-helpers.
|
/external/webkit/WebCore/rendering/style/ |
RenderStyle.cpp | 55 PassRefPtr<RenderStyle> RenderStyle::clone(const RenderStyle* other) 57 return adoptRef(new RenderStyle(*other)); 235 bool RenderStyle::inheritedNotEqual(const RenderStyle* other) const 237 return inherited_flags != other->inherited_flags || 238 inherited != other->inherited || 240 m_svgStyle->inheritedNotEqual(other->m_svgStyle.get()) || 242 rareInheritedData != other->rareInheritedData; 283 StyleDifference RenderStyle::diff(const RenderStyle* other, unsigned& changedContextSensitiveProperties) const 289 // this more directly by calling: Diff svgDiff = svgStyle->diff(other) 291 if (m_svgStyle != other->m_svgStyle [all...] |
/external/webkit/WebCore/platform/graphics/ |
FloatRect.cpp | 12 * documentation and/or other materials provided with the distribution. 49 bool FloatRect::intersects(const FloatRect& other) const 52 return !isEmpty() && !other.isEmpty() 53 && x() < other.right() && other.x() < right() 54 && y() < other.bottom() && other.y() < bottom(); 57 bool FloatRect::contains(const FloatRect& other) const 59 return x() <= other.x() && right() >= other.right( [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HeapSegment.java | 212 public int compareTo(HeapSegmentElement other) { 213 if (mLength != other.mLength) { 214 return mLength < other.mLength ? -1 : 1; 283 * See if <code>other</code> comes immediately after this segment. 285 * @param other The HeapSegment to check. 286 * @return true if <code>other</code> comes immediately after this 289 public boolean canAppend(HeapSegment other) { 290 return isValid() && other.isValid() && mHeapId == other.mHeapId && 291 mAllocationUnitSize == other.mAllocationUnitSize & [all...] |