/external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/ |
D | AccessorTestGenerator.java | 40 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/ |
D | UnaryOperation.java | 32 public abstract class UnaryOperation extends Expression implements ExpressionOwner class 156 if(!m_right.deepEquals(((UnaryOperation)expr).m_right)) in deepEquals()
|
D | String.java | 29 public class String extends UnaryOperation
|
D | Neg.java | 30 public class Neg extends UnaryOperation
|
D | Number.java | 30 public class Number extends UnaryOperation
|
D | Bool.java | 30 public class Bool extends UnaryOperation
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 29 import org.apache.xpath.operations.UnaryOperation; 123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) in visitUnaryOperation()
|
/external/libcxx/include/ |
D | numeric | 61 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,
|
D | random | 1428 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 …]
|
D | algorithm | 196 template <class InputIterator, class OutputIterator, class UnaryOperation> 198 transform(InputIterator first, InputIterator last, OutputIterator result, UnaryOperation op);
|
/external/v8/src/interpreter/ |
D | bytecode-generator.h | 90 void VisitVoid(UnaryOperation* expr); 91 void VisitTypeOf(UnaryOperation* expr); 92 void VisitNot(UnaryOperation* expr); 93 void VisitDelete(UnaryOperation* expr);
|
D | bytecode-generator.cc | 2416 .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()
|
D | bytecode-array-builder.h | 341 BytecodeArrayBuilder& UnaryOperation(Token::Value op, int feedback_slot);
|
D | bytecode-array-builder.cc | 440 BytecodeArrayBuilder& BytecodeArrayBuilder::UnaryOperation(Token::Value op, in UnaryOperation() function in v8::internal::interpreter::BytecodeArrayBuilder
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | convert_nodes.cc | 1684 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 …]
|
D | convert_nodes.h | 586 const std::unordered_map<string, nvinfer1::UnaryOperation>* UnaryOperationMap();
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | Compiler.java | 58 import org.apache.xpath.operations.UnaryOperation; 231 private Expression compileUnary(UnaryOperation unary, int opPos) in compileUnary()
|
/external/v8/src/ast/ |
D | ast.cc | 768 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsTypeof() 792 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsVoidOfLiteral()
|
D | ast.h | 106 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()
|
D | prettyprinter.cc | 388 void CallPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation() 1301 void AstPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation()
|
D | ast-traversal-visitor.h | 436 void AstTraversalVisitor<Subclass>::VisitUnaryOperation(UnaryOperation* expr) { in VisitUnaryOperation()
|
/external/v8/src/parsing/ |
D | pattern-rewriter.cc | 797 NOT_A_PATTERN(UnaryOperation)
|