Home
last modified time | relevance | path

Searched refs:UnaryOperation (Results 1 – 22 of 22) sorted by relevance

/external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
DAccessorTestGenerator.java40 private static class UnaryOperation { class in AccessorTestGenerator
42 public UnaryOperation(String name) { in UnaryOperation() method in AccessorTestGenerator.UnaryOperation
58 public final UnaryOperation[] unaryOperations;
60 …public TypeDef(String name, UnaryOperation[] unaryOperations, BinaryOperation[] binaryOperations) { in TypeDef()
67 private static final UnaryOperation[] unaryOperations = new UnaryOperation[] {
68 new UnaryOperation("preinc"),
69 new UnaryOperation("postinc"),
70 new UnaryOperation("predec"),
71 new UnaryOperation("postdec")
107 new TypeDef("boolean", new UnaryOperation[0], booleanOperations),
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DUnaryOperation.java32 public abstract class UnaryOperation extends Expression implements ExpressionOwner class
156 if(!m_right.deepEquals(((UnaryOperation)expr).m_right)) in deepEquals()
DString.java29 public class String extends UnaryOperation
DNeg.java30 public class Neg extends UnaryOperation
DNumber.java30 public class Number extends UnaryOperation
DBool.java30 public class Bool extends UnaryOperation
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathVisitor.java29 import org.apache.xpath.operations.UnaryOperation;
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) in visitUnaryOperation()
/external/libcxx/include/
Dnumeric61 template<class InputIterator, class T, class BinaryOperation, class UnaryOperation>
64 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
99 class BinaryOperation, class UnaryOperation>
103 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
106 class BinaryOperation, class UnaryOperation>
110 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
113 class BinaryOperation, class UnaryOperation, class T>
117 BinaryOperation binary_op, UnaryOperation unary_op,
Drandom1428 template<class UnaryOperation>
1429 param_type(size_t nw, double xmin, double xmax, UnaryOperation fw);
1442 template<class UnaryOperation>
1444 UnaryOperation fw);
1494 template<class UnaryOperation>
1495 param_type(initializer_list<result_type> bl, UnaryOperation fw);
1496 template<class UnaryOperation>
1498 UnaryOperation fw);
1513 template<class UnaryOperation>
1515 UnaryOperation fw);
[all …]
Dalgorithm196 template <class InputIterator, class OutputIterator, class UnaryOperation>
198 transform(InputIterator first, InputIterator last, OutputIterator result, UnaryOperation op);
/external/v8/src/interpreter/
Dbytecode-generator.h90 void VisitVoid(UnaryOperation* expr);
91 void VisitTypeOf(UnaryOperation* expr);
92 void VisitNot(UnaryOperation* expr);
93 void VisitDelete(UnaryOperation* expr);
Dbytecode-generator.cc2416 .UnaryOperation(Token::INC, feedback_index(index_slot)) in BuildArrayLiteralElementsInsertion()
2423 .UnaryOperation(Token::INC, feedback_index(index_slot)) in BuildArrayLiteralElementsInsertion()
2510 .UnaryOperation(Token::INC, feedback_index(index_slot)) in BuildArrayLiteralSpread()
3825 void BytecodeGenerator::VisitVoid(UnaryOperation* expr) { in VisitVoid()
3842 void BytecodeGenerator::VisitTypeOf(UnaryOperation* expr) { in VisitTypeOf()
3847 void BytecodeGenerator::VisitNot(UnaryOperation* expr) { in VisitNot()
3865 void BytecodeGenerator::VisitUnaryOperation(UnaryOperation* expr) { in VisitUnaryOperation()
3884 builder()->UnaryOperation( in VisitUnaryOperation()
3892 void BytecodeGenerator::VisitDelete(UnaryOperation* expr) { in VisitDelete()
4023 builder()->UnaryOperation(expr->op(), feedback_index(count_slot)); in VisitCountOperation()
Dbytecode-array-builder.h341 BytecodeArrayBuilder& UnaryOperation(Token::Value op, int feedback_slot);
Dbytecode-array-builder.cc440 BytecodeArrayBuilder& BytecodeArrayBuilder::UnaryOperation(Token::Value op, in UnaryOperation() function in v8::internal::interpreter::BytecodeArrayBuilder
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc1684 nvinfer1::UnaryOperation::kNEG); in BinaryTensorOpWeight()
1723 nvinfer1::UnaryOperation::kRECIP); in BinaryTensorOpWeight()
3222 *const_cast<nvinfer1::ITensor*>(tensor), nvinfer1::UnaryOperation::kSQRT); in ConvertRsqrt()
3226 *sqrt_layer->getOutput(0), nvinfer1::UnaryOperation::kRECIP); in ConvertRsqrt()
3232 const std::unordered_map<string, nvinfer1::UnaryOperation>*
3235 new std::unordered_map<string, nvinfer1::UnaryOperation>({ in UnaryOperationMap()
3236 {"Neg", nvinfer1::UnaryOperation::kNEG}, in UnaryOperationMap()
3237 {"Exp", nvinfer1::UnaryOperation::kEXP}, in UnaryOperationMap()
3238 {"Log", nvinfer1::UnaryOperation::kLOG}, in UnaryOperationMap()
3239 {"Sqrt", nvinfer1::UnaryOperation::kSQRT}, in UnaryOperationMap()
[all …]
Dconvert_nodes.h586 const std::unordered_map<string, nvinfer1::UnaryOperation>* UnaryOperationMap();
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java58 import org.apache.xpath.operations.UnaryOperation;
231 private Expression compileUnary(UnaryOperation unary, int opPos) in compileUnary()
/external/v8/src/ast/
Dast.cc768 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsTypeof()
792 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsVoidOfLiteral()
Dast.h106 V(UnaryOperation) \
1807 class UnaryOperation final : public Expression {
1815 UnaryOperation(Token::Value op, Expression* expression, int pos) in UnaryOperation() function
3116 UnaryOperation* NewUnaryOperation(Token::Value op, in NewUnaryOperation()
3119 return new (zone_) UnaryOperation(op, expression, pos); in NewUnaryOperation()
Dprettyprinter.cc388 void CallPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation()
1301 void AstPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation()
Dast-traversal-visitor.h436 void AstTraversalVisitor<Subclass>::VisitUnaryOperation(UnaryOperation* expr) { in VisitUnaryOperation()
/external/v8/src/parsing/
Dpattern-rewriter.cc797 NOT_A_PATTERN(UnaryOperation)