Home | History | Annotate | Download | only in Dynamic

Lines Matching refs:EXPECT_FALSE

141   EXPECT_FALSE(matches(ClassSnippet, BoolValue));
142 EXPECT_FALSE(matches(BoolSnippet, IsArrowValue));
150 EXPECT_FALSE(matches("int x;", Value));
155 EXPECT_FALSE(matches("void foo(int);", Value));
168 EXPECT_FALSE(matches(code, HasInitializerSimple));
169 EXPECT_FALSE(matches(code, HasInitializerComplex));
173 EXPECT_FALSE(matches(code, HasInitializerComplex));
184 EXPECT_FALSE(matches("void f(int x, int a);", HasParameter));
203 EXPECT_FALSE(matches(Code, CallExpr0));
208 EXPECT_FALSE(matches(Code, CallExpr1));
223 EXPECT_FALSE(matches(Code, NNSL));
226 EXPECT_FALSE(matches(Code, DeclDecl));
239 EXPECT_FALSE(matches("extern int a;", Var));
241 EXPECT_FALSE(matches("class A;", Class));
243 EXPECT_FALSE(matches("void f();", Func));
253 EXPECT_FALSE(matches("int Foo;", RecordDecl));
255 EXPECT_FALSE(matches("void Foo(){};", RecordDecl));
266 EXPECT_FALSE(matches("class Foo { public: Foo(); };", ConstructExpr));
281 EXPECT_FALSE(matches("template<typename T> class A {}; A<char> a;",
290 EXPECT_FALSE(matches("int *a;", M));
297 EXPECT_FALSE(matches("struct A{}; A a[7];;", M));
310 EXPECT_FALSE(matches("struct Foo { Foo() {} int foo; };", CtorDecl));
311 EXPECT_FALSE(matches("struct Foo { Foo() : bar(1) {} int bar; };", CtorDecl));
324 EXPECT_FALSE(matches("class Y { class Z {}; };", D));
335 EXPECT_FALSE(matches("void foo() { for(;;); }", S));
336 EXPECT_FALSE(matches("void foo() { if (int X = 0){} }", S));
342 EXPECT_FALSE(matches("void foo() { if (true) return; }", S));
356 EXPECT_FALSE(matches("int i = 0;", D));
367 EXPECT_FALSE(matches("void foo(){}", D));
369 EXPECT_FALSE(matches("int i = 0;", D));
371 EXPECT_FALSE(matches("class OtherBar{};", D));
381 EXPECT_FALSE(matches("class Bar{ int Foo; };", D));
460 EXPECT_FALSE(hasCompletion(WhileComps, "whileStmt("));
461 EXPECT_FALSE(hasCompletion(WhileComps, "ifStmt("));