Lines Matching defs:Snippet
54 StringRef Snippet = "int target = 0;"; in TEST() local
220 StringRef Snippet = "int ((target)) = 0;"; in TEST() local
238 StringRef Snippet = "int target[][1] = {{1}, {2}, {3}};"; in TEST() local
251 StringRef Snippet = "int ((target))[][1] = {{1}, {2}, {3}};"; in TEST() local
264 StringRef Snippet = "int x; int* target[] = {&x, &x, &x};"; in TEST() local
277 StringRef Snippet = "int* x = nullptr; int** target[] = {&x, &x, &x};"; in TEST() local
290 StringRef Snippet = "int x; int* (target)[] = {&x, &x, &x};"; in TEST() local
308 StringRef Snippet = "int x = 42; int& target = x;"; in TEST() local
321 StringRef Snippet = "int&& target = 42;"; in TEST() local
333 StringRef Snippet = "int* p; int *& target = p;"; in TEST() local
345 StringRef Snippet = "int x = 42; int ((& target)) = x;"; in TEST() local
359 StringRef Snippet = "int (&target)[4] = a;"; in TEST() local
393 StringRef Snippet = "int* target = nullptr;"; in TEST() local
406 StringRef Snippet = "int** target = nullptr;"; in TEST() local
420 StringRef Snippet = "int (*target)[4] = &a;"; in TEST() local
434 StringRef Snippet = "int ((**target)) = nullptr;"; in TEST() local