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

1 2 3 4 5

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/
TAbstract.java 20 protected abstract int toInt();
TPlain.java 20 public int toInt() {
TSuper.java 26 public int toInt() {
30 public int toInt(float v) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/
TAbstract.java 20 protected abstract int toInt();
TPlain.java 20 public int toInt() {
TSuper.java 24 public int toInt() {
28 public int toInt(float v) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/
T_invoke_direct_range_16.java 24 private int toInt() {
T_invoke_direct_range_1.java 24 return super.toInt();
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float f) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float f) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float value) {
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresultsitem.cpp 15 return text(sortCol).toInt() < other.text(sortCol).toInt();
signalbar.cpp 38 if (index.data().toInt() > 0)
39 signal = 0 - (256 - index.data().toInt());
41 signal = index.data().toInt();
peers.cpp 182 int type = ctx_item->data(peer_role_type).toInt();
189 config_methods = var.toInt();
194 method = (enum selected_method) var.toInt();
308 int peer_type = ctx_item->data(peer_role_type).toInt();
436 int type = item->data(peer_role_type).toInt();
532 str.section('=', 1).toInt(0, 0);
602 id = (*it).mid(pos).toInt();
801 if (item->data(peer_role_type).toInt() == type)
869 if (item == NULL || item->data(peer_role_type).toInt() !=
887 if (item && item->data(peer_role_type).toInt() =
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/
T_invoke_direct_1.java 24 return super.toInt();
  /external/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 28 import static com.google.common.primitives.UnsignedBytes.toInt;
120 k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
122 k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
124 k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
126 k2 ^= (long) toInt(bb.get(11)) << 24; // fall through
128 k2 ^= (long) toInt(bb.get(10)) << 16; // fall through
130 k2 ^= (long) toInt(bb.get(9)) << 8; // fall through
132 k2 ^= (long) toInt(bb.get(8)); // fall through
137 k1 ^= (long) toInt(bb.get(6)) << 48; // fall through
139 k1 ^= (long) toInt(bb.get(5)) << 40; // fall throug
    [all...]
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
ClassCallingRequireNonNull.java 23 return toInt(s::length);
26 public static int toInt(IntSupplier function) {
31 return toInt(() -> Objects.requireNonNull(s).length());
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 71 public static int toInt(byte value) {
102 if (value > toInt(MAX_VALUE)) {
123 return toInt(a) - toInt(b);
136 int min = toInt(array[0]);
138 int next = toInt(array[i]);
156 int max = toInt(array[0]);
158 int next = toInt(array[i]);
191 return Integer.toString(toInt(x), radix);
248 builder.append(toInt(array[0]))
    [all...]
  /frameworks/base/cmds/incident_helper/src/parsers/
PageTypeInfoParser.cpp 48 pageBlockOrder = toInt(line);
53 proto.write(PageTypeInfoProto::PAGES_PER_BLOCK, toInt(line));
70 proto.write(PageTypeInfoProto::MigrateType::NODE, toInt(record[0]));
85 proto.write(PageTypeInfoProto::MigrateType::FREE_PAGES_COUNT, toInt(pageCounts[i]));
93 proto.write(PageTypeInfoProto::Block::NODE, toInt(record[0]));
EventLogTagsParser.cpp 45 proto.write(EventLogTag::TAG_NUMBER, toInt(tagNumber));
57 proto.write(EventLogTag::ValueDescriptor::TYPE, toInt(valueDescriptor[1]));
64 unit = toInt(valueDescriptor[2]);
  /cts/tests/tests/widget/src/android/widget/cts/
WidgetAttributeTest.kt 135 attributeMapProgressBar[android.R.attr.minWidth]!!.toInt())
137 attributeMapProgressBar[android.R.attr.maxWidth]!!.toInt())
139 attributeMapProgressBar[android.R.attr.progressTint]!!.toInt())
141 attributeMapProgressBar[android.R.attr.progress]!!.toInt())
143 attributeMapProgressBar[android.R.attr.padding]!!.toInt())
145 attributeMapProgressBar[android.R.attr.max]!!.toInt())
147 attributeMapProgressBar[android.R.attr.mirrorForRtl]!!.toInt())
153 attributeMapSwitch[android.R.attr.switchPadding]!!.toInt())
159 attributeMapToobar[android.R.attr.titleMarginEnd]!!.toInt())
161 attributeMapToobar[android.R.attr.titleMarginStart]!!.toInt())
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedBytesTest.java 44 assertEquals(0, UnsignedBytes.toInt((byte) 0));
45 assertEquals(1, UnsignedBytes.toInt((byte) 1));
46 assertEquals(127, UnsignedBytes.toInt((byte) 127));
47 assertEquals(128, UnsignedBytes.toInt((byte) -128));
48 assertEquals(129, UnsignedBytes.toInt((byte) -127));
49 assertEquals(255, UnsignedBytes.toInt((byte) -1));
55 UnsignedBytes.checkedCast(UnsignedBytes.toInt(value)));
66 UnsignedBytes.saturatedCast(UnsignedBytes.toInt(value)));
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
macros-original.cc 11 inline long long toInt(argumentType* argumentName) { \
27 long long asInt = toInt(basePtr);
  /external/apache-commons-bcel/src/examples/Mini/
ASTExpr.java 199 private static String toInt(String i) {
228 case AND: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " && " +
230 case OR: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " || " +
233 case EQ: ASTFunDecl.push(buf, toInt(_body_int + " == " + _body_int2));
235 case LEQ: ASTFunDecl.push(buf, toInt(_body_int + " <= " + _body_int2));
237 case GEQ: ASTFunDecl.push(buf, toInt(_body_int + " >= " + _body_int2));
239 case NEQ: ASTFunDecl.push(buf, toInt(_body_int + " != " + _body_int2));
241 case LT: ASTFunDecl.push(buf, toInt(_body_int + " < " + _body_int2));
243 case GT: ASTFunDecl.push(buf, toInt(_body_int + " > " + _body_int2));
  /external/deqp/framework/randomshaders/
rsgVariableValue.cpp 110 inline int toInt (bool boolVal) { return boolVal ? 1 : 0; }
119 return CompareIntersection()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax));
137 return CompareIsSubsetOf()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax));

Completed in 4837 milliseconds

1 2 3 4 5