/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/ |
KEKIdentifier.java | 18 private OtherKeyAttribute other; field in class:KEKIdentifier 23 OtherKeyAttribute other) 27 this.other = other; 46 other = OtherKeyAttribute.getInstance(seq.getObjectAt(1)); 51 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2)); 108 return other; 117 * other OtherKeyAttribute OPTIONAL 132 if (other != null) 134 v.add(other); [all...] |
RecipientKeyIdentifier.java | 17 private OtherKeyAttribute other; field in class:RecipientKeyIdentifier 22 OtherKeyAttribute other) 26 this.other = other; 46 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2)); 51 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2)); 105 return other; 115 * other OtherKeyAttribute OPTIONAL 132 if (other != null) 134 v.add(other); [all...] |
/external/proguard/docs/ |
screenshots.html | 14 <a href="screenshot_gui1.gif" target="other"> 19 <area shape="rect" coords="2,7,46,16" alt="ProGuard" href="screenshot_gui1.gif" target="other"> 20 <area shape="rect" coords="2,17,46,27" alt="Input/Output" href="screenshot_gui2.gif" target="other"> 21 <area shape="rect" coords="2,28,46,37" alt="Shrinking" href="screenshot_gui3.gif" target="other"> 22 <area shape="rect" coords="2,38,46,48" alt="Optimization" href="screenshot_gui4.gif" target="other"> 23 <area shape="rect" coords="2,49,46,58" alt="Obfuscation" href="screenshot_gui5.gif" target="other"> 24 <area shape="rect" coords="2,59,46,69" alt="Information" href="screenshot_gui6.gif" target="other"> 25 <area shape="rect" coords="2,70,46,79" alt="Process" href="screenshot_gui7.gif" target="other"> 26 <area shape="rect" coords="2,80,46,90" alt="ReTrace" href="screenshot_gui8.gif" target="other"> 37 <a href="screenshot_console.gif" target="other"> [all...] |
/external/webkit/WebCore/platform/text/ |
SegmentedString.cpp | 25 SegmentedString::SegmentedString(const SegmentedString &other) : 26 m_pushedChar1(other.m_pushedChar1), m_pushedChar2(other.m_pushedChar2), m_currentString(other.m_currentString), 27 m_substrings(other.m_substrings), m_composite(other.m_composite) 29 if (other.m_currentChar == &other.m_pushedChar1) 31 else if (other.m_currentChar == &other.m_pushedChar2 [all...] |
/external/webkit/WebCore/platform/graphics/win/ |
FontPlatformDataCairoWin.cpp | 2 * This file is part of the internal font implementation. It should not be included by anyone other than 106 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) 109 if (this == &other) 112 m_font = other.m_font; 113 m_size = other.m_size; 114 m_syntheticBold = other.m_syntheticBold; 115 m_syntheticOblique = other.m_syntheticOblique; 116 m_useGDI = other.m_useGDI; 118 if (other.m_fontFace) 119 cairo_font_face_reference(other.m_fontFace) [all...] |
/external/webkit/WebCore/platform/image-decoders/skia/ |
ImageDecoderSkia.cpp | 12 * documentation and/or other materials provided with the distribution. 46 // NOTE: Do not reset other members here; clearFrameBufferCache() 47 // calls this to free the bitmap data, but other functions like 49 // other metadata out of this frame later. 57 void RGBA32Buffer::copyBitmapData(const RGBA32Buffer& other) 59 if (this == &other) 63 const NativeImageSkia& otherBitmap = other.m_bitmap; 108 RGBA32Buffer& RGBA32Buffer::operator=(const RGBA32Buffer& other) 110 if (this == &other) 113 m_bitmap = other.m_bitmap [all...] |
/external/webkit/WebCore/platform/graphics/ |
FontFamily.cpp | 11 * documentation and/or other materials provided with the distribution. 31 FontFamily::FontFamily(const FontFamily& other) 32 : m_family(other.m_family) 33 , m_next(other.m_next) 37 FontFamily& FontFamily::operator=(const FontFamily& other) 39 m_family = other.m_family; 40 m_next = other.m_next;
|
/external/webkit/WebCore/rendering/style/ |
SVGRenderStyleDefs.h | 136 bool operator==(const StyleFillData &other) const; 137 bool operator!=(const StyleFillData &other) const 139 return !(*this == other); 156 bool operator!=(const StyleStrokeData& other) const 158 return !(*this == other); 180 bool operator==(const StyleStopData &other) const; 181 bool operator!=(const StyleStopData &other) const 183 return !(*this == other); 199 bool operator==(const StyleTextData& other) const; 200 bool operator!=(const StyleTextData& other) cons [all...] |
SVGRenderStyle.h | 117 bool operator==(const InheritedFlags& other) const 119 return (_colorRendering == other._colorRendering) 120 && (_imageRendering == other._imageRendering) 121 && (_shapeRendering == other._shapeRendering) 122 && (_clipRule == other._clipRule) 123 && (_fillRule == other._fillRule) 124 && (_capStyle == other._capStyle) 125 && (_joinStyle == other._joinStyle) 126 && (_textAnchor == other._textAnchor) 127 && (_colorInterpolation == other._colorInterpolation [all...] |
SVGRenderStyle.cpp | 75 SVGRenderStyle::SVGRenderStyle(const SVGRenderStyle& other) 78 fill = other.fill; 79 stroke = other.stroke; 80 text = other.text; 81 stops = other.stops; 82 clip = other.clip; 83 mask = other.mask; 84 misc = other.misc; 85 markers = other.markers; 86 shadowSVG = other.shadowSVG [all...] |
/external/webkit/WebCore/platform/graphics/gtk/ |
FontPlatformDataPango.cpp | 217 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) 220 if (this == &other) 223 m_size = other.m_size; 224 m_syntheticBold = other.m_syntheticBold; 225 m_syntheticOblique = other.m_syntheticOblique; 227 if (other.m_scaledFont) 228 cairo_scaled_font_reference(other.m_scaledFont); 231 m_scaledFont = other.m_scaledFont; 233 if (other.m_font) 234 g_object_ref(other.m_font) [all...] |
FontPlatformDataGtk.cpp | 163 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) 166 if (this == &other) 169 m_size = other.m_size; 170 m_syntheticBold = other.m_syntheticBold; 171 m_syntheticOblique = other.m_syntheticOblique; 173 if (other.m_scaledFont) 174 cairo_scaled_font_reference(other.m_scaledFont); 177 m_scaledFont = other.m_scaledFont; 179 if (other.m_pattern) 180 FcPatternReference(other.m_pattern) [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_GetPutFields.java | 71 SimpleClass other = (SimpleClass) obj; local 72 return (a == other.getA() && b.equals(other.getB())); 93 Support_GetPutFields other = (Support_GetPutFields) obj; local 94 return (booleanValue == other.booleanValue && 95 byteValue == other.byteValue && 96 charValue == other.charValue && 97 doubleValue == other.doubleValue && 98 floatValue == other.floatValue && 99 longValue == other.longValue & [all...] |
Support_GetPutFieldsDeprecated.java | 73 SimpleClass other = (SimpleClass) obj; local 74 return (a == other.getA() && b.equals(other.getB())); 95 Support_GetPutFields other = (Support_GetPutFields) obj; local 96 return (booleanValue == other.booleanValue && 97 byteValue == other.byteValue && 98 charValue == other.charValue && 99 doubleValue == other.doubleValue && 100 floatValue == other.floatValue && 101 longValue == other.longValue & [all...] |
/external/webkit/WebCore/platform/graphics/qt/ |
FontPlatformDataQt.cpp | 43 FontPlatformData::FontPlatformData(const FontPlatformData &other) : m_data(other.m_data) 75 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) 77 if (m_data == other.m_data) 84 m_data = other.m_data; 90 bool FontPlatformData::operator==(const FontPlatformData& other) const 92 if (m_data == other.m_data) 95 if (!m_data || !other.m_data 96 || m_data == reinterpret_cast<FontPlatformDataPrivate*>(-1) || other.m_data == reinterpret_cast<FontPlatformDataPrivate*>(-1)) 99 const bool equals = (m_data->size == other.m_data->siz [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SuggestionData.java | 233 SuggestionData other = (SuggestionData)obj; 235 if (other.mFormat != null) 237 } else if (!mFormat.equals(other.mFormat)) 240 if (other.mIcon1 != null) 242 } else if (!mIcon1.equals(other.mIcon1)) 245 if (other.mIcon2 != null) 247 } else if (!mIcon2.equals(other.mIcon2)) 250 if (other.mIntentAction != null) 252 } else if (!mIntentAction.equals(other.mIntentAction)) 255 if (other.mIntentData != null [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509Extension.java | 59 X509Extension other = (X509Extension)o; local 61 return other.getValue().equals(this.getValue()) 62 && (other.isCritical() == this.isCritical());
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstLiteral32.java | 38 public final boolean equals(Object other) { 39 return (other != null) && 40 (getClass() == other.getClass()) && 41 bits == ((CstLiteral32) other).bits; 52 protected int compareTo0(Constant other) { 53 int otherBits = ((CstLiteral32) other).bits;
|
CstLiteral64.java | 38 public final boolean equals(Object other) { 39 return (other != null) && 40 (getClass() == other.getClass()) && 41 bits == ((CstLiteral64) other).bits; 52 protected int compareTo0(Constant other) { 53 long otherBits = ((CstLiteral64) other).bits;
|
/external/webkit/WebCore/rendering/ |
GapRects.h | 48 bool operator==(const GapRects& other) 50 return m_left == other.left() && m_center == other.center() && m_right == other.right(); 52 bool operator!=(const GapRects& other) { return !(*this == other); }
|
/cts/tools/dasm/src/java_cup/ |
terminal_set.java | 26 * @param other the set we are cloning from. 28 public terminal_set(terminal_set other) 31 not_null(other); 32 _elements = (BitSet)other._elements.clone(); 96 * @param other the set we are testing against. 98 public boolean is_subset_of(terminal_set other) 101 not_null(other); 103 /* make a copy of the other set */ 104 BitSet copy_other = (BitSet)other._elements.clone(); 110 return copy_other.equals(other._elements) [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ |
package.html | 4 This package provides factory classes to create sockets and server-sockets. This classes can be subclassed to create factories for other kinds of socket for example the SSL-capable sockets from the package javax.net.ssl. 12 This package provides factory classes to create sockets and server-sockets. This classes can be subclassed to create factories for other kinds of socket for example the SSL-capable sockets from the package javax.net.ssl.
|
/external/icu4c/i18n/ |
rbt_data.cpp | 36 TransliterationRuleData::TransliterationRuleData(const TransliterationRuleData& other) : 37 UMemory(other), ruleSet(other.ruleSet), 39 variablesBase(other.variablesBase), 40 variablesLength(other.variablesLength) 47 while ((e = other.variableNames.nextElement(pos)) != 0) { 58 if (other.variables != 0) { 66 variables[i] = other.variables[i]->clone();
|
/external/icu4c/layout/ |
NonContextualGlyphSubstProc.h | 38 NonContextualGlyphSubstitutionProcessor(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class 39 NonContextualGlyphSubstitutionProcessor &operator=(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
|
SubtableProcessor.h | 40 SubtableProcessor(const SubtableProcessor &other); // forbid copying of this class 41 SubtableProcessor &operator=(const SubtableProcessor &other); // forbid copying of this class
|