/external/proguard/src/proguard/evaluation/value/ |
D | IntegerValue.java | 85 public abstract IntegerValue generalize(IntegerValue other); in generalize() argument 90 public abstract IntegerValue add(IntegerValue other); in add() argument 95 public abstract IntegerValue subtract(IntegerValue other); in subtract() argument 100 public abstract IntegerValue subtractFrom(IntegerValue other); in subtractFrom() argument 105 public abstract IntegerValue multiply(IntegerValue other) in multiply() argument 111 public abstract IntegerValue divide(IntegerValue other) in divide() argument 117 public abstract IntegerValue divideOf(IntegerValue other) in divideOf() argument 124 public abstract IntegerValue remainder(IntegerValue other) in remainder() argument 131 public abstract IntegerValue remainderOf(IntegerValue other) in remainderOf() argument 137 public abstract IntegerValue shiftLeft(IntegerValue other); in shiftLeft() argument [all …]
|
D | SpecificIntegerValue.java | 70 public IntegerValue generalize(IntegerValue other) in generalize() argument 72 return other.generalize(this); in generalize() 75 public IntegerValue add(IntegerValue other) in add() argument 77 return other.add(this); in add() 80 public IntegerValue subtract(IntegerValue other) in subtract() argument 82 return other.subtractFrom(this); in subtract() 85 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() argument 87 return other.subtract(this); in subtractFrom() 90 public IntegerValue multiply(IntegerValue other) in multiply() argument 92 return other.multiply(this); in multiply() [all …]
|
D | LongValue.java | 71 public LongValue generalize(LongValue other) in generalize() argument 73 return other.generalize(this); in generalize() 79 public LongValue add(LongValue other) in add() argument 81 return other.add(this); in add() 87 public LongValue subtract(LongValue other) in subtract() argument 89 return other.subtractFrom(this); in subtract() 95 public LongValue subtractFrom(LongValue other) in subtractFrom() argument 97 return other.subtract(this); in subtractFrom() 103 public LongValue multiply(LongValue other) in multiply() argument 106 return other.multiply(this); in multiply() [all …]
|
D | ParticularIntegerValue.java | 102 public IntegerValue generalize(IntegerValue other) in generalize() argument 104 return other.generalize(this); in generalize() 107 public IntegerValue add(IntegerValue other) in add() argument 109 return other.add(this); in add() 112 public IntegerValue subtract(IntegerValue other) in subtract() argument 114 return other.subtractFrom(this); in subtract() 117 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() argument 119 return other.subtract(this); in subtractFrom() 122 public IntegerValue multiply(IntegerValue other) in multiply() argument 124 return other.multiply(this); in multiply() [all …]
|
D | SpecificLongValue.java | 55 public LongValue generalize(LongValue other) in generalize() argument 57 return other.generalize(this); in generalize() 60 public LongValue add(LongValue other) in add() argument 62 return other.add(this); in add() 65 public LongValue subtract(LongValue other) in subtract() argument 67 return other.subtractFrom(this); in subtract() 70 public LongValue subtractFrom(LongValue other) in subtractFrom() argument 72 return other.subtract(this); in subtractFrom() 75 public LongValue multiply(LongValue other) in multiply() argument 77 return other.multiply(this); in multiply() [all …]
|
D | DoubleValue.java | 70 public abstract DoubleValue generalize(DoubleValue other); in generalize() argument 76 public abstract DoubleValue add(DoubleValue other); in add() argument 81 public abstract DoubleValue subtract(DoubleValue other); in subtract() argument 86 public abstract DoubleValue subtractFrom(DoubleValue other); in subtractFrom() argument 91 public abstract DoubleValue multiply(DoubleValue other); in multiply() argument 96 public abstract DoubleValue divide(DoubleValue other); in divide() argument 101 public abstract DoubleValue divideOf(DoubleValue other); in divideOf() argument 106 public abstract DoubleValue remainder(DoubleValue other); in remainder() argument 111 public abstract DoubleValue remainderOf(DoubleValue other); in remainderOf() argument 117 public abstract IntegerValue compare(DoubleValue other); in compare() argument [all …]
|
D | FloatValue.java | 70 public abstract FloatValue generalize(FloatValue other); in generalize() argument 76 public abstract FloatValue add(FloatValue other); in add() argument 81 public abstract FloatValue subtract(FloatValue other); in subtract() argument 86 public abstract FloatValue subtractFrom(FloatValue other); in subtractFrom() argument 91 public abstract FloatValue multiply(FloatValue other); in multiply() argument 96 public abstract FloatValue divide(FloatValue other); in divide() argument 101 public abstract FloatValue divideOf(FloatValue other); in divideOf() argument 106 public abstract FloatValue remainder(FloatValue other); in remainder() argument 111 public abstract FloatValue remainderOf(FloatValue other); in remainderOf() argument 117 public abstract IntegerValue compare(FloatValue other); in compare() argument [all …]
|
D | ParticularLongValue.java | 75 public LongValue generalize(LongValue other) in generalize() argument 77 return other.generalize(this); in generalize() 80 public LongValue add(LongValue other) in add() argument 82 return other.add(this); in add() 85 public LongValue subtract(LongValue other) in subtract() argument 87 return other.subtractFrom(this); in subtract() 90 public LongValue subtractFrom(LongValue other) in subtractFrom() argument 92 return other.subtract(this); in subtractFrom() 95 public LongValue multiply(LongValue other) in multiply() argument 97 return other.multiply(this); in multiply() [all …]
|
D | SpecificDoubleValue.java | 55 public DoubleValue generalize(DoubleValue other) in generalize() argument 57 return other.generalize(this); in generalize() 60 public DoubleValue add(DoubleValue other) in add() argument 62 return other.add(this); in add() 65 public DoubleValue subtract(DoubleValue other) in subtract() argument 67 return other.subtractFrom(this); in subtract() 70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() argument 72 return other.subtract(this); in subtractFrom() 75 public DoubleValue multiply(DoubleValue other) in multiply() argument 77 return other.multiply(this); in multiply() [all …]
|
D | SpecificFloatValue.java | 55 public FloatValue generalize(FloatValue other) in generalize() argument 57 return other.generalize(this); in generalize() 60 public FloatValue add(FloatValue other) in add() argument 62 return other.add(this); in add() 65 public FloatValue subtract(FloatValue other) in subtract() argument 67 return other.subtractFrom(this); in subtract() 70 public FloatValue subtractFrom(FloatValue other) in subtractFrom() argument 72 return other.subtract(this); in subtractFrom() 75 public FloatValue multiply(FloatValue other) in multiply() argument 77 return other.multiply(this); in multiply() [all …]
|
D | ParticularDoubleValue.java | 75 public DoubleValue generalize(DoubleValue other) in generalize() argument 77 return other.generalize(this); in generalize() 80 public DoubleValue add(DoubleValue other) in add() argument 82 return value == 0.0 ? other : other.add(this); in add() 85 public DoubleValue subtract(DoubleValue other) in subtract() argument 87 return value == 0.0 ? other.negate() : other.subtractFrom(this); in subtract() 90 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() argument 92 return value == 0.0 ? other : other.subtract(this); in subtractFrom() 95 public DoubleValue multiply(DoubleValue other) in multiply() argument 97 return other.multiply(this); in multiply() [all …]
|
D | ParticularFloatValue.java | 75 public FloatValue generalize(FloatValue other) in generalize() argument 77 return other.generalize(this); in generalize() 80 public FloatValue add(FloatValue other) in add() argument 82 return value == 0.0 ? other : other.add(this); in add() 85 public FloatValue subtract(FloatValue other) in subtract() argument 87 return value == 0.0 ? other.negate() : other.subtractFrom(this); in subtract() 90 public FloatValue subtractFrom(FloatValue other) in subtractFrom() argument 92 return value == 0.0 ? other : other.subtract(this); in subtractFrom() 95 public FloatValue multiply(FloatValue other) in multiply() argument 97 return other.multiply(this); in multiply() [all …]
|
/external/icu4c/data/curr/ |
D | el.txt | 1102 other{"πεσέτες Ανδόρας"} 1106 other{"ντιράμ Ηνωμένων Αραβικών Εμιράτων"} 1110 other{"αφγάνι Αφγανιστάν (AFA)"} 1114 other{"Αφγάνι Αφγανιστάν"} 1118 other{"λεκ Αλβανίας"} 1122 other{"ντραμ Αρμενίας"} 1126 other{"γκίλντα Ολλανδικών Αντιλλών"} 1130 other{"κουάνζα Ανγκόλας"} 1134 other{"κουάνζα Ανγκόλας (AOK)"} 1141 other{"κουάνζα Reajustado Ανγκόλας (AOR)"} [all …]
|
D | ml.txt | 1094 other{"അന്ഡോറന് പെസെയ്റ്റാസ്"} 1098 other{"യു.എ.ഇ. ദിര്ഹംസ്"} 1102 other{"അഫ്ഘാനിസ് (AFA)"} 1106 other{"അഫ്ഘാനിസ്"} 1110 other{"അല്ബേനിയന് ലെക്സ്"} 1114 other{"അര്മേനിയന് ഡ്രാംസ്"} 1118 other{"നെതര്ലന്ഡ്സ് ആന്ഡിലന് ഗില്ഡേഴ്സ്"} 1122 other{"അംഗോളന് ക്വാന്സാസ്"} 1126 other{"അംഗോളന് ക്വാന്സാസ് (AOK"} 1130 other{"അംഗോളന് ന്യൂ ക്വാന്സാസ് (AON)"} [all …]
|
D | bg.txt | 1066 other{"андорски песети"} 1070 other{"Обединени арабски емирства-дирхама"} 1074 other{"афганистански афгана (AFA)"} 1078 other{"афганистански афгана"} 1082 other{"албански лека"} 1086 other{"арменски драма"} 1090 other{"антилски гулдена"} 1094 other{"анголски кванци"} 1098 other{"анголски кванци (AOK)"} 1102 other{"анголски нови кванци (AON)"} [all …]
|
D | sr.txt | 1112 other{"андорске пезете"} 1118 other{"УАЕ дирама"} 1124 other{"авганистанских авгана (AFA)"} 1130 other{"авганистански авгани"} 1146 other{"холандско-антилских гилдера"} 1152 other{"анголијских кванзи"} 1158 other{"анголијских кванзи (AOK)"} 1164 other{"анголијских нових кванзи"} 1170 other{"анголијских кванзи реађустадо"} 1176 other{"аргентинских аустрала"} [all …]
|
D | de.txt | 1105 other{"Andorranische Peseten"} 1108 other{"UAE Dirham"} 1111 other{"Afghani (1927-2002)"} 1114 other{"Afghani"} 1117 other{"Albanische Lek"} 1120 other{"Armenische Dram"} 1123 other{"Niederländische-Antillen-Gulden"} 1126 other{"Angolanische Kwanza"} 1129 other{"Angolanische Kwanza (AOK)"} 1132 other{"Angolanische Neue Kwanza (AON)"} [all …]
|
D | gsw.txt | 1085 other{"Andorranischi Peseete"} 1088 other{"UAE Dirhäm"} 1091 other{"Afghani (1927-2002)"} 1094 other{"Afghani"} 1097 other{"Lek"} 1100 other{"Dräm"} 1103 other{"Angolanischi Kwanza (1977-1990)"} 1106 other{"Nöii Kwanza"} 1109 other{"Argentinischi Auschtral"} 1112 other{"Argentinischi Peso (1983-1985)"} [all …]
|
D | az.txt | 1001 other{"Andora pesetası"} 1004 other{"BƏE dirhamı"} 1007 other{"Əfgən (AFA)"} 1010 other{"Əfgən"} 1013 other{"Alban leki"} 1016 other{"Erməni dramı"} 1019 other{"Hollandiya Antila gilderi"} 1022 other{"Anqola kvanzasi"} 1025 other{"Anqola kvanzasi (AOK)"} 1028 other{"Anqola yeni kvanzasi (AON)"} [all …]
|
D | sv.txt | 1138 other{"andorranska pesetas"} 1142 other{"Förenade Arabemiratens dirham"} 1146 other{"afghani (1927-2002)"} 1150 other{"afghani"} 1154 other{"albanska gamla lek"} 1158 other{"albanska lek"} 1162 other{"armeniska dram"} 1166 other{"Nederländska Antillernas gulden"} 1170 other{"angolanska kwanza"} 1174 other{"angolanska kwanza (1977-1990)"} [all …]
|
D | en.txt | 1190 other{"Andorran pesetas"} 1194 other{"UAE dirhams"} 1198 other{"Afghan Afghanis (AFA)"} 1202 other{"Afghan Afghanis"} 1206 other{"Albanian lekë (1946-1965)"} 1210 other{"Albanian lekë"} 1214 other{"Armenian drams"} 1218 other{"Netherlands Antillean guilders"} 1222 other{"Angolan kwanzas"} 1226 other{"Angolan kwanzas (1977-1991)"} [all …]
|
D | fi.txt | 1186 other{"Andorran pesetaa"} 1190 other{"Arabiemiirikuntien dirhamia"} 1194 other{"Afganistanin afgaania (1927-2002)"} 1198 other{"Afganistanin afgaania"} 1202 other{"Albanian vanhaa lekiä"} 1206 other{"Albanian lekiä"} 1210 other{"Armenian dramia"} 1214 other{"Alankomaiden Antillien guldenia"} 1218 other{"Angolan kwanzaa"} 1222 other{"Angolan kwanzaa (1977–1990)"} [all …]
|
D | nn.txt | 1110 other{"aserbajdsjanske manat"} 1114 other{"botswanske pula"} 1118 other{"kviterussiske nye rublar (BYB)"} 1122 other{"kviterussiske rublar"} 1126 other{"beliziske dollar"} 1130 other{"kanadiske dollar"} 1134 other{"kongolesiske franc"} 1138 other{"WIR euro"} 1142 other{"sveitsiske franc"} 1146 other{"WIR franc"} [all …]
|
/external/webkit/Source/WebCore/rendering/style/ |
D | SVGRenderStyleDefs.cpp | 44 StyleFillData::StyleFillData(const StyleFillData& other) in StyleFillData() argument 46 , opacity(other.opacity) in StyleFillData() 47 , paint(other.paint) in StyleFillData() 51 bool StyleFillData::operator==(const StyleFillData& other) const in operator ==() 53 if (opacity != other.opacity) in operator ==() 56 if (!paint || !other.paint) in operator ==() 57 return paint == other.paint; in operator ==() 59 if (paint->paintType() != other.paint->paintType()) in operator ==() 63 return paint->uri() == other.paint->uri(); in operator ==() 66 return paint->color() == other.paint->color(); in operator ==() [all …]
|
D | SVGRenderStyle.cpp | 73 SVGRenderStyle::SVGRenderStyle(const SVGRenderStyle& other) in SVGRenderStyle() argument 76 fill = other.fill; in SVGRenderStyle() 77 stroke = other.stroke; in SVGRenderStyle() 78 text = other.text; in SVGRenderStyle() 79 stops = other.stops; in SVGRenderStyle() 80 misc = other.misc; in SVGRenderStyle() 81 shadowSVG = other.shadowSVG; in SVGRenderStyle() 82 inheritedResources = other.inheritedResources; in SVGRenderStyle() 83 resources = other.resources; in SVGRenderStyle() 85 svg_inherited_flags = other.svg_inherited_flags; in SVGRenderStyle() [all …]
|