/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Library/ |
H A D | DebugLib.h | 104 #define DEBUG_EXPRESSION_STRING(Expression) DEBUG_EXPRESSION_STRING_VALUE argument 106 #define DEBUG_EXPRESSION_STRING(Expression) #Expression argument 344 #define _ASSERT(Expression) UnitTestDebugAssert (__FILE_NAME__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSIO… argument 346 #define _ASSERT(Expression) UnitTestDebugAssert (__FILE__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STR… argument 350 #define _ASSERT(Expression) DebugAssert (__FILE_NAME__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STRING… argument 352 #define _ASSERT(Expression) DebugAssert (__FILE__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STRING (Exp… argument 376 #define _DEBUG(Expression) _DEBUG_PRINT Expression argument 378 #define _DEBUG(Expression) DebugPrint Expression argument 394 #define ASSERT(Expression) \ argument 404 #define ASSERT(Expression) argument [all …]
|
H A D | UnitTestLib.h | 350 #define UT_ASSERT_TRUE(Expression) \ argument 362 #define UT_ASSERT_FALSE(Expression) … argument
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Library/ |
H A D | DebugLib.h | 104 #define DEBUG_EXPRESSION_STRING(Expression) DEBUG_EXPRESSION_STRING_VALUE argument 106 #define DEBUG_EXPRESSION_STRING(Expression) #Expression argument 348 #define _ASSERT(Expression) UnitTestDebugAssert (__FILE_NAME__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSIO… argument 350 #define _ASSERT(Expression) UnitTestDebugAssert (__FILE__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STR… argument 354 #define _ASSERT(Expression) DebugAssert (__FILE_NAME__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STRING… argument 356 #define _ASSERT(Expression) DebugAssert (__FILE__, DEBUG_LINE_NUMBER, DEBUG_EXPRESSION_STRING (Exp… argument 380 #define _DEBUG(Expression) _DEBUG_PRINT Expression argument 382 #define _DEBUG(Expression) DebugPrint Expression argument 398 #define ASSERT(Expression) \ argument 408 #define ASSERT(Expression) argument [all …]
|
H A D | UnitTestLib.h | 350 #define UT_ASSERT_TRUE(Expression) \ argument 362 #define UT_ASSERT_FALSE(Expression) … argument
|
/aosp_15_r20/system/tools/hidl/c2hal/ |
D | Expression.h | 30 struct Expression { struct 31 Expression() {} in Expression() argument 32 virtual ~Expression() {} in ~Expression() argument 34 enum Type { 42 static std::string getTypeDescription(Type type) { in getTypeDescription() 69 static Expression *parenthesize(Expression *inner); argument
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Library/ |
H A D | DebugLib.h | 293 #define _ASSERT(Expression) DebugAssert (__FILE_NAME__, __LINE__, #Expression) argument 295 #define _ASSERT(Expression) DebugAssert (__FILE__, __LINE__, #Expression) argument 319 #define _DEBUG(Expression) _DEBUG_PRINT Expression argument 321 #define _DEBUG(Expression) DebugPrint Expression argument 337 #define ASSERT(Expression) \ argument 347 #define ASSERT(Expression) argument 363 #define DEBUG(Expression) \ argument 370 #define DEBUG(Expression) argument 501 #define DEBUG_CODE(Expression) \ argument
|
H A D | UnitTestLib.h | 353 #define UT_ASSERT_TRUE(Expression) \ argument 365 #define UT_ASSERT_FALSE(Expression) \ argument
|
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Library/ |
H A D | DebugLib.h | 248 #define _ASSERT(Expression) DebugAssert (__FILE__, __LINE__, #Expression) argument 271 #define _DEBUG(Expression) _DEBUG_PRINT Expression argument 273 #define _DEBUG(Expression) DebugPrint Expression argument 289 #define ASSERT(Expression) \ argument 299 #define ASSERT(Expression) argument 315 #define DEBUG(Expression) \ argument 322 #define DEBUG(Expression) argument 453 #define DEBUG_CODE(Expression) \ argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/config/src/path/ |
D | mod.rs | 10 pub enum Expression { enum 16 impl FromStr for Expression { implementation 32 impl Expression { impl
|
D | parser.rs | 34 fn ident(i: &str) -> IResult<&str, Expression> { in ident() argument 38 fn postfix<'a>(expr: Expression) -> impl FnMut(&'a str) -> IResult<&'a str, Expression> { in postfix() argument 51 pub fn from_str(input: &str) -> Result<Expression, ErrorKind> { in from_str()
|
/aosp_15_r20/build/blueprint/parser/ |
H A D | sort.go | 175 func sortListsInValue(value Expression, file *File) { 191 func sortSubList(values []Expression, nextPos scanner.Position, file *File) { 241 func subListIsSorted(values []Expression) bool { 281 func isListOfPrimitives(values []Expression) bool {
|
H A D | ast.go | 141 type Expression interface { interface 170 func ExpressionsAreSame(a Expression, b Expression) (equal bool, err error) { 176 func hackyExpressionsAreSame(a Expression, b Expression) (equal bool, err error) { 189 func hackyFingerprint(expression Expression) (fingerprint []byte, err error) { 284 func evaluateOperator(scope *Scope, operator rune, left, right Expression) (Expression, error) {
|
/aosp_15_r20/system/tools/hidl/test/hidl_test/ |
D | static_test.cpp | 259 struct Expression : public IExpression { struct 260 Return<void> foo1(const hidl_array<int32_t, 1>&) override { return Void(); } in foo1() 261 Return<void> foo2(const hidl_array<int32_t, 13>&) override { return Void(); } in foo2() 262 Return<void> foo3(const hidl_array<int32_t, 20>&) override { return Void(); } in foo3()
|
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/ |
H A D | Expression.java | 30 public abstract class Expression extends Node { class 32 public Expression() { in Expression() method in Expression 35 public Expression(Range range) { in Expression() method in Expression
|
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/ |
H A D | Expression.java | 29 public abstract class Expression extends Node { class 31 public Expression() { in Expression() method in Expression 34 …public Expression(final int beginLine, final int beginColumn, final int endLine, final int endColu… in Expression() method in Expression
|
/aosp_15_r20/external/rust/android-crates-io/crates/config/src/ |
D | builder.rs | 265 defaults: Map<Expression, Value>, in build_internal() 266 overrides: Map<Expression, Value>, in build_internal() 345 defaults: Map<Expression, Value>, in build_internal() 346 overrides: Map<Expression, Value>, in build_internal()
|
/aosp_15_r20/external/stg/ |
H A D | dwarf_wrappers.cc | 106 struct Expression { struct 107 const Dwarf_Op& operator[](size_t i) const { in operator []() 111 Dwarf_Op* atoms = nullptr; 112 size_t length = 0;
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 114 struct llvm::GVN::Expression { struct in llvm::GVN 115 uint32_t opcode; 116 Type *type = nullptr; 117 bool commutative = false; 118 SmallVector<uint32_t, 4> varargs; 120 Expression(uint32_t o = ~2U) : opcode(o) {} in Expression() argument 122 bool operator==(const Expression &other) const { in operator ==()
|
/aosp_15_r20/external/skia/src/sksl/analysis/ |
H A D | SkSLProgramVisitor.h | 16 class Expression; variable 51 using Expression = const SkSL::Expression; member
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 130 struct llvm::GVNPass::Expression { struct in llvm::GVNPass 131 uint32_t opcode; 132 bool commutative = false; 135 Type *type = nullptr; 136 SmallVector<uint32_t, 4> varargs; 138 Expression(uint32_t o = ~2U) : opcode(o) {} in Expression() argument 140 bool operator==(const Expression &other) const { in operator ==()
|
/aosp_15_r20/build/soong/androidmk/androidmk/ |
H A D | android.go | 247 func emptyList(value bpparser.Expression) bool { 254 func splitBpList(val bpparser.Expression, keyFunc listSplitFunc) (lists map[string]bpparser.Express… 322 func classifyLocalOrGlobalPath(value bpparser.Expression) (string, bpparser.Expression, error) {
|
/aosp_15_r20/external/dagger2/java/dagger/internal/codegen/javapoet/ |
H A D | Expression.java | 39 public final class Expression { class 43 private Expression(ExpressionType type, CodeBlock codeBlock) { in Expression() method in Expression
|
/aosp_15_r20/build/soong/partner/bpfix/extensions/ |
H A D | headers.go | 41 func findHeaderLib(e parser.Expression) (*includeDirFix, bool) { 59 func searchThroughOperatorList(mod *parser.Module, e parser.Expression) {
|
/aosp_15_r20/external/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 77 struct llvm::GVN::Expression { struct in llvm::GVN 78 uint32_t opcode; 79 Type *type; 80 SmallVector<uint32_t, 4> varargs; 82 Expression(uint32_t o = ~2U) : opcode(o) {} in Expression() argument 84 bool operator==(const Expression &other) const { in operator ==()
|
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
H A D | Expression.java | 40 public abstract class Expression extends Node { class 43 public Expression() { in Expression() method in Expression 51 public Expression(TokenRange tokenRange) { in Expression() method in Expression
|