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

1 2 3

  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 35 public static final byte REMAINDER = '%';
CompositeFloatValue.java 35 public static final byte REMAINDER = '%';
CompositeIntegerValue.java 35 public static final byte REMAINDER = '%';
CompositeLongValue.java 35 public static final byte REMAINDER = '%';
SpecificDoubleValue.java 90 public DoubleValue remainder(DoubleValue other) method in class:SpecificDoubleValue
97 return other.remainder(this);
144 public DoubleValue remainder(SpecificDoubleValue other) method in class:SpecificDoubleValue
146 return new CompositeDoubleValue(this, CompositeDoubleValue.REMAINDER, other);
151 return new CompositeDoubleValue(other, CompositeDoubleValue.REMAINDER, this);
SpecificFloatValue.java 90 public FloatValue remainder(FloatValue other) method in class:SpecificFloatValue
97 return other.remainder(this);
144 public FloatValue remainder(SpecificFloatValue other) method in class:SpecificFloatValue
146 return new CompositeFloatValue(this, CompositeFloatValue.REMAINDER, other);
151 return new CompositeFloatValue(other, CompositeFloatValue.REMAINDER, this);
SpecificLongValue.java 92 public LongValue remainder(LongValue other) method in class:SpecificLongValue
101 return other.remainder(this);
184 public LongValue remainder(SpecificLongValue other) method in class:SpecificLongValue
187 return new CompositeLongValue(this, CompositeLongValue.REMAINDER, other);
193 return new CompositeLongValue(other, CompositeLongValue.REMAINDER, this);
SpecificIntegerValue.java 107 public IntegerValue remainder(IntegerValue other) method in class:SpecificIntegerValue
116 return other.remainder(this);
239 public IntegerValue remainder(SpecificIntegerValue other) method in class:SpecificIntegerValue
242 return new CompositeIntegerValue(this, CompositeIntegerValue.REMAINDER, other);
248 return new CompositeIntegerValue(other, CompositeIntegerValue.REMAINDER, this);
  /external/llvm/unittests/IR/
DebugInfoTest.cpp 63 #define CHECK_SPLIT(FLAGS, VECTOR, REMAINDER) \
66 EXPECT_EQ(REMAINDER, DINode::splitFlags(FLAGS, V)); \
  /external/proguard/src/proguard/gui/
OptimizationsDialog.java 62 constraintsLast.gridwidth = GridBagConstraints.REMAINDER;
67 constraintsLastStretch.gridwidth = GridBagConstraints.REMAINDER;
74 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
93 cancelButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
MemberSpecificationDialog.java 96 constraintsLast.gridwidth = GridBagConstraints.REMAINDER;
101 constraintsLastStretch.gridwidth = GridBagConstraints.REMAINDER;
108 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
116 stretchPanelConstraints.gridwidth = GridBagConstraints.REMAINDER;
128 lastLabelConstraints.gridwidth = GridBagConstraints.REMAINDER;
145 cancelButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
293 lastGlueConstraints.gridwidth = GridBagConstraints.REMAINDER;
FilterDialog.java 77 textConstraints.gridwidth = GridBagConstraints.REMAINDER;
89 textFieldConstraints.gridwidth = GridBagConstraints.REMAINDER;
96 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
110 cancelButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
ClassSpecificationDialog.java 100 constraintsLast.gridwidth = GridBagConstraints.REMAINDER;
105 constraintsLastStretch.gridwidth = GridBagConstraints.REMAINDER;
112 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
120 stretchPanelConstraints.gridwidth = GridBagConstraints.REMAINDER;
132 lastLabelConstraints.gridwidth = GridBagConstraints.REMAINDER;
149 cancelButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
332 lastGlueConstraints.gridwidth = GridBagConstraints.REMAINDER;
TabbedPane.java 55 cardConstraints.gridheight = GridBagConstraints.REMAINDER;
ListPanel.java 51 listConstraints.gridheight = GridBagConstraints.REMAINDER;
173 buttonConstraints.gridwidth = GridBagConstraints.REMAINDER;
ProGuardGUI.java 186 constraintsLast.gridwidth = GridBagConstraints.REMAINDER;
191 constraintsLastStretch.gridwidth = GridBagConstraints.REMAINDER;
198 splashPanelConstraints.gridwidth = GridBagConstraints.REMAINDER;
206 welcomePaneConstraints.gridwidth = GridBagConstraints.REMAINDER;
214 panelConstraints.gridwidth = GridBagConstraints.REMAINDER;
221 stretchPanelConstraints.gridwidth = GridBagConstraints.REMAINDER;
242 lastBottomButtonConstraints.gridwidth = GridBagConstraints.REMAINDER;
    [all...]
ClassPathPanel.java 346 filterLabelConstraints.gridwidth = GridBagConstraints.REMAINDER;
  /external/dexmaker/src/main/java/com/google/dexmaker/
BinaryOp.java 27 * {@link #DIVIDE}, and {@link #REMAINDER}) support ints, longs, floats and
35 * For int and long operands, {@link #DIVIDE} and {@link #REMAINDER} throw
69 REMAINDER() {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
genIndexFilters.bat 69 # <ID>:alias:<FILTER>;<REMAINDER>
70 # <REMAINDER> can be
85 my $remainder = $3;
94 $remainder = $3;
99 $_ = "$id:alias:$set;$remainder\n";
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 265 c.gridwidth = GridBagConstraints.REMAINDER;
273 c.gridwidth = GridBagConstraints.REMAINDER;
294 c.gridwidth = GridBagConstraints.REMAINDER;
302 c.gridwidth = GridBagConstraints.REMAINDER;
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoUtility.java 60 c.gridwidth = GridBagConstraints.REMAINDER; // last in grid
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarFrame.java 144 add(topPanel, monthLabel[i], g, c, GridBagConstraints.REMAINDER, 1);
228 add(topPanel, displayPanel, g, c, GridBagConstraints.REMAINDER, 0);
  /development/scripts/
gdbclient.py 48 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
argparse.py 79 'REMAINDER',
105 REMAINDER = '...'
581 elif action.nargs == REMAINDER:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
argparse.py 79 'REMAINDER',
105 REMAINDER = '...'
581 elif action.nargs == REMAINDER:
    [all...]

Completed in 231 milliseconds

1 2 3