/external/llvm/include/llvm/ProfileData/Coverage/ |
CoverageMappingWriter.h | 42 ArrayRef<CounterExpression> Expressions; 47 ArrayRef<CounterExpression> Expressions, 49 : VirtualFileMapping(VirtualFileMapping), Expressions(Expressions), 52 CoverageMappingWriter(ArrayRef<CounterExpression> Expressions, 54 : Expressions(Expressions), MappingRegions(MappingRegions) {}
|
CoverageMappingReader.h | 38 ArrayRef<CounterExpression> Expressions; 120 std::vector<CounterExpression> &Expressions; 131 std::vector<CounterExpression> &Expressions, 135 Filenames(Filenames), Expressions(Expressions), 174 std::vector<CounterExpression> Expressions;
|
CoverageMapping.h | 149 /// counter expressions. It avoids unnecessary duplication 150 /// and simplifies algebraic expressions. 152 /// \brief A list of all the counter expressions 153 std::vector<CounterExpression> Expressions; 161 /// expression is added to the builder's collection of expressions. 177 ArrayRef<CounterExpression> getExpressions() const { return Expressions; } 274 /// expressions and the obtained counter values. 276 ArrayRef<CounterExpression> Expressions; 280 CounterMappingContext(ArrayRef<CounterExpression> Expressions, 282 : Expressions(Expressions), CounterValues(CounterValues) { [all...] |
/external/llvm/lib/ProfileData/Coverage/ |
CoverageMappingWriter.cpp | 30 /// \brief Gather only the expressions that are used by the mapping 33 ArrayRef<CounterExpression> Expressions; 43 mark(Expressions[ID].LHS); 44 mark(Expressions[ID].RHS); 51 const auto &E = Expressions[C.getExpressionID()]; 57 CounterExpressionsMinimizer(ArrayRef<CounterExpression> Expressions, 59 : Expressions(Expressions) { 60 AdjustedExpressionIDs.resize(Expressions.size(), 0); 93 static unsigned encodeCounter(ArrayRef<CounterExpression> Expressions, [all...] |
CoverageMapping.cpp | 37 unsigned I = Expressions.size(); 38 Expressions.push_back(E); 52 const auto &E = Expressions[C.getExpressionID()]; 133 if (C.getExpressionID() >= Expressions.size()) 135 const auto &E = Expressions[C.getExpressionID()]; 163 if (C.getExpressionID() >= Expressions.size()) 165 const auto &E = Expressions[C.getExpressionID()]; 193 CounterMappingContext Ctx(Record.Expressions);
|
CoverageMappingReader.cpp | 111 if (ID >= Expressions.size()) 113 Expressions[ID].Kind = CounterExpression::ExprKind(Tag); 217 CounterMappingContext(Expressions).dump(C, dbgs()); 247 // Read the expressions. 251 // Create an array of dummy expressions that get the proper counters 252 // when the expressions are read, and the proper kinds when the counters 254 Expressions.resize( 258 if (auto Err = readCounter(Expressions[I].LHS)) 260 if (auto Err = readCounter(Expressions[I].RHS)) 691 Expressions.clear() [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/ |
malis.s | 43 ;; Section 8.2.7 Expressions 59 ;; Section 8.2.7.3 Simple Relocatable Expressions 129 # The specification says we are allowed to have spaces in expressions.
|
/external/llvm/unittests/ProfileData/ |
CoverageMappingTest.cpp | 62 Record.Expressions = {}; 172 std::vector<CounterExpression> Expressions; 174 Expressions, Data.Regions);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/ |
syntax-1.s | 163 ! Expressions
|
/external/clang/lib/CodeGen/ |
CoverageMappingGen.cpp | 375 /// expressions cross file or macro boundaries. [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.expressions_3.4.200.v20100505.jar | |
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
ReflectionUtil.cs | 35 using System.Linq.Expressions;
|
/prebuilts/tools/common/eclipse/ |
org.eclipse.core.expressions_3.4.200.v20100505.jar | |
/external/clang/test/SemaTemplate/ |
current-instantiation.cpp | 168 namespace Expressions {
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/ |
nodes.go | 120 // Expressions
|
parser.go | 135 // TODO(gri) the args are constants - do as constant expressions? 445 // Expressions 678 // (together with selector expressions), complits are parsed there [all...] |
/prebuilts/go/darwin-x86/src/go/ast/ |
walk.go | 87 // Expressions
|
ast.go | 20 // There are 3 main classes of nodes: Expressions and type nodes, 151 // Expressions and types 229 // A BadExpr node is a placeholder for expressions containing 333 // Unary "*" expressions are represented via StarExpr nodes. 625 Results []Expr // result expressions; or nil 656 List []Expr // list of expressions or types; nil means default case
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/ |
nodes.go | 120 // Expressions
|
/prebuilts/go/linux-x86/src/go/ast/ |
walk.go | 87 // Expressions
|
ast.go | 20 // There are 3 main classes of nodes: Expressions and type nodes, 151 // Expressions and types 229 // A BadExpr node is a placeholder for expressions containing 333 // Unary "*" expressions are represented via StarExpr nodes. 625 Results []Expr // result expressions; or nil 656 List []Expr // list of expressions or types; nil means default case
|
/external/clang/test/CodeGenCXX/ |
mangle.cpp | 115 // Expressions 247 namespace Expressions { 801 // Mangling for instantiation-dependent decltype expressions. 808 // Mangling for non-instantiation-dependent sizeof expressions. 815 // Mangling for non-instantiation-dependent sizeof expressions 823 // Mangling for instantiation-dependent sizeof() expressions as
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
const.go | 1579 // Expressions derived from nil, like string([]byte(nil)), while they 1581 // Only called for expressions known to evaluated to compile-time
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
const.go | 1579 // Expressions derived from nil, like string([]byte(nil)), while they 1581 // Only called for expressions known to evaluated to compile-time
|
/prebuilts/go/darwin-x86/src/go/types/ |
expr.go | 5 // This file implements typechecking of expressions. 20 Expressions are checked recursively, top down. Expression checker functions 34 All expressions are checked via rawExpr, which dispatches according 36 constant values for all expressions that have an untyped type (those types 41 Untyped expressions may eventually become fully typed (i.e., not untyped), 382 // The respective sub-expressions got their final types 415 break // see comment for unary expressions 443 // Remove it from the map of yet untyped expressions. 975 // exprInternal contains the core of type checking of expressions. [all...] |