Home
last modified time | relevance | path

Searched refs:NEGATE (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/
Dsre_constants.py59 NEGATE = "negate" variable
123 NEGATE,
Dsre_compile.py86 emit(OPCODES[NEGATE])
234 if op is NEGATE:
286 elif op is NEGATE:
Dsre_parse.py457 setappend((NEGATE, None))
501 elif _len(set)==2 and set[0][0] is NEGATE and set[1][0] is LITERAL:
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DUnaryOp.java36 NEGATE() { in NEGATE() method
/external/python/cpython3/Lib/
Dsre_compile.py113 emit(NEGATE)
254 if op is NEGATE:
313 elif op is NEGATE:
645 MAX_UNTIL, MIN_UNTIL, NEGATE):
Dsre_parse.py462 elif op is IN and av[0][0] is not NEGATE:
597 set.insert(0, (NEGATE, None))
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
DComposableFunction.java69 public static final ComposableFunction NEGATE = new ComposableFunction() { field in ComposableFunction
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java845 code.op(UnaryOp.NEGATE, localSource, localSource); in negateMethod()