HomeSort by relevance Sort by last modified time
    Searched defs:Contains (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/encoding/json/
tags.go 24 // Contains reports whether a comma-separated list of options
25 // contains a particular substr flag. substr must be surrounded by a
27 func (o tagOptions) Contains(optionName string) bool {
  /prebuilts/go/linux-x86/src/encoding/json/
tags.go 24 // Contains reports whether a comma-separated list of options
25 // contains a particular substr flag. substr must be surrounded by a
27 func (o tagOptions) Contains(optionName string) bool {
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.cc 17 bool DesktopRect::Contains(const DesktopVector& point) const {
  /prebuilts/go/darwin-x86/src/cmd/go/internal/str/
str.go 89 // Contains reports whether x contains s.
90 func Contains(x []string, s string) bool {
  /prebuilts/go/linux-x86/src/cmd/go/internal/str/
str.go 89 // Contains reports whether x contains s.
90 func Contains(x []string, s string) bool {
  /art/runtime/
linear_alloc.cc 51 bool LinearAlloc::Contains(void* ptr) const {
53 return allocator_.Contains(ptr);
57 return allocator_.Contains(ptr);
handle_scope-inl.h 100 inline bool HandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const {
151 inline bool BaseHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const {
153 ? AsHandleScope()->Contains(handle_scope_entry)
154 : AsVariableSized()->Contains(handle_scope_entry);
226 inline bool VariableSizedHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry)
230 if (cur->Contains(handle_scope_entry)) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld.h 37 bool Contains(SuspendedThreadID thread_id) const {
  /external/dng_sdk/source/
dng_string_list.cpp 118 bool dng_string_list::Contains (const dng_string &s) const
  /external/easymock/src/org/easymock/internal/matchers/
Contains.java 22 public class Contains implements IArgumentMatcher, Serializable {
28 public Contains(String substring) {
38 buffer.append("contains(\"" + substring + "\")");
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Contains.java 13 public class Contains implements ArgumentMatcher<String>, Serializable {
17 public Contains(String substring) {
22 return actual != null && actual.contains(substring);
26 return "contains(\"" + substring + "\")";
  /external/pdfium/testing/
range_set.cpp 14 bool RangeSet::Contains(const Range& range) const {
  /external/tensorflow/tensorflow/core/framework/
dataset_stateful_op_whitelist.h 32 bool Contains(StringPiece op_name) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
enum_set.h 73 bool Contains(EnumType c) const { return ContainsWord(ToWord(c)); }
93 // Returns true if the set contains ANY of the elements of |in_set|,
  /prebuilts/go/darwin-x86/src/go/types/
scope.go 95 // If s already contains an alternative object alt with
121 // Contains returns true if pos is within the scope's extent.
124 func (s *Scope) Contains(pos token.Pos) bool {
144 if s.Contains(pos) {
146 if s.Contains(pos) {
  /prebuilts/go/linux-x86/src/go/types/
scope.go 95 // If s already contains an alternative object alt with
121 // Contains returns true if pos is within the scope's extent.
124 func (s *Scope) Contains(pos token.Pos) bool {
144 if s.Contains(pos) {
146 if s.Contains(pos) {
  /art/libartbase/base/
array_slice.h 132 bool Contains(const T* element) const {
  /art/libdexfile/dex/
dex_file_layout.h 76 bool Contains(uint32_t offset) const {
  /art/runtime/gc/space/
bump_pointer_space.h 129 bool Contains(const mirror::Object* obj) const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 132 static bool Contains(data_type B, key_type K) {
133 return B.contains(K);
162 static bool Contains(data_type L, key_type K) {
163 return L.contains(K);
  /external/libmojo/ui/gfx/range/
range.h 33 // A Range contains two integer values that represent a numeric range, like the
103 // Returns true if this range contains the specified |range|.
104 constexpr bool Contains(const Range& range) const {
range_f.h 72 // Returns true if this range contains the specified |range|.
73 constexpr bool Contains(const RangeF& range) const {
  /external/perf_data_converter/src/quipper/
address_mapper.h 111 // Determines if this range fully contains another range in real space.
113 inline bool Contains(const MappedRange& range) const {
118 // Determines if this range contains the given address |addr|.
124 // Returns an iterator to a MappedRange in |mappings_| that contains
125 // |real_addr|. Returns |mappings_.end()| if no range contains |real_addr|.
  /external/perfetto/src/ftrace_reader/
proto_translation_table.cc 128 bool Contains(const std::string& haystack, const std::string& needle) {
169 if (Contains(type_and_name, "char[] ")) {
173 if (Contains(type_and_name, "char * ")) {
216 if (Contains(type_and_name, "common_pid") && size == 4) {
  /external/perfetto/tools/ftrace_proto_gen/
ftrace_proto_gen.cc 51 bool Contains(const std::string& haystack, const std::string& needle) {
64 if (Contains(field.type_and_name, "char[] "))
66 if (Contains(field.type_and_name, "char * "))
122 if (Contains(field.name, "ino") && !Contains(field.name, "minor"))

Completed in 348 milliseconds

1 2 3 4 5 6 7 8