Searched refs:in_class (Results 1 – 4 of 4) sorted by relevance
/external/clang/test/Parser/ |
D | cxx-ambig-init-templ.cpp | 83 static const bool in_class = false; variable 87 int f(Bool<true> = X<Y, Bool<in_class> >(0)); 90 int g(Bool<true> = Z<Y, Bool<in_class> = Bool<false>(0)); 92 static const bool in_class = true; member
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 399 def __init__(self, start, end, name, in_class, return_type, parameters, argument 405 self.in_class = in_class 676 def __init__(self, token_stream, filename, in_class='', visibility=None, argument 685 self.in_class = in_class 686 if in_class is None: 689 self.in_class_name_only = in_class.split('::')[-1] 806 if token.name == '~' and self.in_class: 999 if name.name == self.in_class and not modifiers: 1097 return_type, in_class = \ 1099 return Method(indices.start, indices.end, name.name, in_class, [all …]
|
/external/v8/src/ |
D | preparser.h | 489 bool in_class, bool is_static, 1943 bool in_class, bool is_static, bool* ok) { in ParsePropertyDefinition() argument 1958 if (!in_class && !is_generator && peek() == Token::COLON) { in ParsePropertyDefinition() 1975 if (is_generator && in_class && !is_static && this->IsConstructor(name)) { in ParsePropertyDefinition() 1993 } else if (in_class && name_is_static && !is_static) { in ParsePropertyDefinition() 2009 } else if (in_class && !is_static && this->IsConstructor(name)) { in ParsePropertyDefinition() 2065 const bool in_class = false; in ParseObjectLiteral() local 2068 this->ParsePropertyDefinition(&checker, in_class, is_static, CHECK_OK); in ParseObjectLiteral() 2761 const bool in_class = true; in ParseClassLiteral() local 2764 this->ParsePropertyDefinition(&checker, in_class, is_static, CHECK_OK); in ParseClassLiteral()
|
/external/v8/test/cctest/ |
D | test-regexp.cc | 479 bool in_class = false; in TestCharacterClassEscapes() local 480 for (int j = 0; !in_class && j < ranges->length(); j++) { in TestCharacterClassEscapes() 482 in_class = (range.from() <= i && i <= range.to()); in TestCharacterClassEscapes() 484 CHECK_EQ(pred(i), in_class); in TestCharacterClassEscapes()
|