HomeSort by relevance Sort by last modified time
    Searched refs:flag_type (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/v8/src/base/
flags.h 25 typedef T flag_type; typedef in class:v8::base::FINAL
29 Flags(flag_type flag) : mask_(flag) {} // NOLINT(runtime/explicit)
49 Flags& operator&=(flag_type flag) { return operator&=(Flags(flag)); }
50 Flags& operator|=(flag_type flag) { return operator|=(Flags(flag)); }
51 Flags& operator^=(flag_type flag) { return operator^=(Flags(flag)); }
53 Flags operator&(flag_type flag) const { return operator&(Flags(flag)); }
54 Flags operator|(flag_type flag) const { return operator|(Flags(flag)); }
55 Flags operator^(flag_type flag) const { return operator^(Flags(flag)); }
68 inline Type operator&(Type::flag_type lhs, \
69 Type::flag_type rhs)ALLOW_UNUSED WARN_UNUSED_RESULT;
    [all...]
  /external/libcxx/test/re/re.regex/
types.pass.cpp 18 // typedef regex_constants::syntax_option_type flag_type;
27 static_assert((std::is_same<std::basic_regex<char>::flag_type,
32 static_assert((std::is_same<std::basic_regex<wchar_t>::flag_type,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/
types.pass.cpp 18 // typedef regex_constants::syntax_option_type flag_type;
27 static_assert((std::is_same<std::basic_regex<char>::flag_type,
32 static_assert((std::is_same<std::basic_regex<wchar_t>::flag_type,
  /external/chromium_org/third_party/closure_linter/closure_linter/
statetracker_test.py 35 return '@%s %s' % (self.flag_type, self.name)
51 def _MakeDocFlagFake(flag_type, name=None):
53 flag.flag_type = flag_type
ecmalintrules.py 182 flag_type = flag.type
183 if flag_type and flag_type is not None and not flag_type.isspace():
184 pieces = self.TYPE_SPLIT.split(flag_type)
185 if len(pieces) == 1 and flag_type.count('|') == 1 and (
186 flag_type.endswith('|null') or flag_type.startswith('null|')):
189 'Prefer "?Type" to "Type|null": "%s"' % flag_type, token)
477 if flag.flag_type == 'bug'
    [all...]
statetracker.py 36 flag_type: param, return, define, type, etc.
175 self.flag_type = flag_token.string.strip().lstrip('@')
181 if self.flag_type in self.HAS_TYPE:
189 elif (self.flag_type in self.TYPE_ONLY and
204 if self.flag_type in self.HAS_NAME:
222 if self.flag_type in self.HAS_DESCRIPTION:
268 if flag.flag_type == 'param' and flag.name:
305 if flag.flag_type != 'suppress':
326 def HasFlag(self, flag_type):
330 flag_type: The type of the flag to check
    [all...]
closurizednamespacesinfo.py 390 flag_type = token.attached_object.flag_type
392 if flag_type == 'implements' or (flag_type == 'extends' and is_interface):
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex.h 342 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
350 static constexpr flag_type icase = regex_constants::icase;
351 static constexpr flag_type nosubs = regex_constants::nosubs;
352 static constexpr flag_type optimize = regex_constants::optimize;
353 static constexpr flag_type collate = regex_constants::collate;
354 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
355 static constexpr flag_type basic = regex_constants::basic;
356 static constexpr flag_type extended = regex_constants::extended;
357 static constexpr flag_type awk = regex_constants::awk;
358 static constexpr flag_type grep = regex_constants::grep
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
statetracker.py 36 flag_type: param, return, define, type, etc.
154 self.flag_type = flag_token.string.strip().lstrip('@')
160 if self.flag_type in self.HAS_TYPE:
168 elif (self.flag_type in self.TYPE_ONLY and
179 if self.flag_type in self.HAS_NAME:
196 if self.flag_type in self.HAS_DESCRIPTION:
278 for flag_type in self.__flags.keys():
279 if flag_type != 'suppress':
289 self.__flags[flag.flag_type] = flag
299 def HasFlag(self, flag_type)
    [all...]
closurizednamespacesinfo.py 357 flag_type = token.attached_object.flag_type
359 if flag_type == 'implements' or (flag_type == 'extends' and is_interface):
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex.h 410 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
418 static constexpr flag_type icase = regex_constants::icase;
419 static constexpr flag_type nosubs = regex_constants::nosubs;
420 static constexpr flag_type optimize = regex_constants::optimize;
421 static constexpr flag_type collate = regex_constants::collate;
422 static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
423 static constexpr flag_type basic = regex_constants::basic;
424 static constexpr flag_type extended = regex_constants::extended;
425 static constexpr flag_type awk = regex_constants::awk;
426 static constexpr flag_type grep = regex_constants::grep
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
regex.h 348 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
402 flag_type __f = regex_constants::ECMAScript)
419 basic_regex(const _Ch_type* __p, std::size_t __len, flag_type __f)
457 flag_type __f = regex_constants::ECMAScript)
478 flag_type __f = regex_constants::ECMAScript)
492 flag_type __f = regex_constants::ECMAScript)
582 flag_type __flags = regex_constants::ECMAScript)
599 assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
616 flag_type __f = regex_constants::ECMAScript)
639 flag_type __flags = regex_constants::ECMAScript
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex.h 348 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
402 flag_type __f = regex_constants::ECMAScript)
419 basic_regex(const _Ch_type* __p, std::size_t __len, flag_type __f)
457 flag_type __f = regex_constants::ECMAScript)
478 flag_type __f = regex_constants::ECMAScript)
492 flag_type __f = regex_constants::ECMAScript)
582 flag_type __flags = regex_constants::ECMAScript)
599 assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
616 flag_type __f = regex_constants::ECMAScript)
639 flag_type __flags = regex_constants::ECMAScript
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex.h 349 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
403 flag_type __f = regex_constants::ECMAScript)
421 basic_regex(const _Ch_type* __p, std::size_t __len, flag_type __f)
459 flag_type __f = regex_constants::ECMAScript)
480 flag_type __f = regex_constants::ECMAScript)
494 flag_type __f = regex_constants::ECMAScript)
584 flag_type __flags = regex_constants::ECMAScript)
601 assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
618 flag_type __flags = regex_constants::ECMAScript)
641 flag_type __flags = regex_constants::ECMAScript
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex.h 348 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
402 flag_type __f = regex_constants::ECMAScript)
419 basic_regex(const _Ch_type* __p, std::size_t __len, flag_type __f)
457 flag_type __f = regex_constants::ECMAScript)
478 flag_type __f = regex_constants::ECMAScript)
492 flag_type __f = regex_constants::ECMAScript)
582 flag_type __flags = regex_constants::ECMAScript)
599 assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
616 flag_type __f = regex_constants::ECMAScript)
639 flag_type __flags = regex_constants::ECMAScript
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex.h 349 typedef regex_constants::syntax_option_type flag_type; typedef in class:basic_regex
403 flag_type __f = regex_constants::ECMAScript)
421 basic_regex(const _Ch_type* __p, std::size_t __len, flag_type __f)
459 flag_type __f = regex_constants::ECMAScript)
480 flag_type __f = regex_constants::ECMAScript)
494 flag_type __f = regex_constants::ECMAScript)
584 flag_type __flags = regex_constants::ECMAScript)
601 assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
618 flag_type __flags = regex_constants::ECMAScript)
641 flag_type __flags = regex_constants::ECMAScript
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon23269
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon23298
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon23635
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon23984
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon24037
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/x86_64-linux-gnu/aarch64-linux-android/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon24066
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/include/
bfdlink.h 229 typedef enum {with_flags, without_flags} flag_type;
234 flag_type with;
227 typedef enum {with_flags, without_flags} flag_type; typedef in typeref:enum:__anon24084

Completed in 546 milliseconds

1 2