Searched defs:Set (Results 1 - 25 of 104) sorted by relevance

12345

/external/google-breakpad/src/testing/gtest/samples/
H A Dsample2.cc51 void MyString::Set(const char* a_c_string) { function in class:MyString
/external/protobuf/gtest/samples/
H A Dsample2.cc51 void MyString::Set(const char* a_c_string) { function in class:MyString
/external/protobuf/python/
H A Dstubout.py25 stubs.Set(os.path, 'exists', lambda x: 1)
53 stubbed. Note that the method Set() does not do that: if obj is
109 def Set(self, parent, child_name, new_child): member in class:StubOutForTesting
129 """Reverses all the Set() calls, restoring things to their original
131 no effect if no Set() calls have been made.
134 # Undo calls to Set() in reverse order, in case Set() was called on the
/external/regex-re2/re2/
H A Dset.h16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set { class in class:re2::RE2
20 Set(const RE2::Options& options, RE2::Anchor anchor);
21 ~Set();
32 // Compile prepares the Set for matching.
48 //DISALLOW_EVIL_CONSTRUCTORS(Set);
49 Set(const Set&);
50 void operator=(const Set&);
H A Dset.cc15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) { function in class:RE2::Set
22 RE2::Set::~Set() {
28 int RE2::Set::Add(const StringPiece& pattern, string* error) {
30 LOG(DFATAL) << "RE2::Set::Add after Compile";
69 bool RE2::Set::Compile() {
71 LOG(DFATAL) << "RE2::Set::Compile multiple times";
94 bool RE2::Set::Match(const StringPiece& text, vector<int>* v) const {
96 LOG(DFATAL) << "RE2::Set
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/
H A Dposition.py52 def Set(self, target, source): member in class:Position
/external/clang/test/Modules/Inputs/
H A Dtemplates-right.h15 template<typename T> class Set { class in namespace:N
H A Dtemplates-left.h13 template<typename T> class Set;
16 template<typename T> class Set { class in namespace:N
/external/compiler-rt/make/
H A Dutil.mk31 # Function: Set variable value
33 # Set the given make variable to the given value.
34 Set = $(eval $(1) := $(2)) macro
76 $(call Set,$(2),$($(1))))
98 $(call Set,varname,$(firstword $(subst =, ,$(arg)))) \
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
73 Set(rhs);
77 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
69 Set(rhs);
73 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/external/llvm/unittests/ADT/
H A DSparseMultiSetTest.cpp21 USet Set; local
22 EXPECT_TRUE(Set.empty());
23 EXPECT_EQ(0u, Set.size());
25 Set.setUniverse(10);
28 EXPECT_TRUE(Set.find(0) == Set.end());
29 EXPECT_TRUE(Set.find(9) == Set.end());
32 const USet &CSet = Set;
42 USet Set; local
82 USet Set; local
163 USet Set; local
216 ASet Set; local
[all...]
H A DSparseSetTest.cpp21 USet Set; local
22 EXPECT_TRUE(Set.empty());
23 EXPECT_TRUE(Set.begin() == Set.end());
24 EXPECT_EQ(0u, Set.size());
26 Set.setUniverse(10);
29 EXPECT_TRUE(Set.find(0) == Set.end());
30 EXPECT_TRUE(Set.find(9) == Set
44 USet Set; local
81 USet Set; local
169 ASet Set; local
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
73 Set(rhs);
77 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
73 Set(rhs);
77 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
73 Set(rhs);
77 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/external/v8/src/compiler/
H A Dnode-aux-data-inl.h22 void NodeAuxData<T>::Set(Node* node, const T& data) { function in class:v8::internal::compiler::NodeAuxData
/external/webrtc/src/system_wrappers/source/
H A Devent_win.cc30 bool EventWindows::Set() function in class:webrtc::EventWindows
/external/ceres-solver/examples/
H A Dpgm_image.h57 void Set(double constant);
107 void PGMImage<Real>::Set(double constant) { function in class:ceres::examples::PGMImage
/external/google-breakpad/src/common/
H A Dmemory_range.h53 Set(data, length);
58 // Set() guarantees that |length_| is zero if |data_| is NULL.
69 void Set(const void* data, size_t length) { function in class:google_breakpad::MemoryRange
/external/llvm/include/llvm/ADT/
H A DSmallSet.h37 std::set<T, C> Set; member in class:llvm::SmallSet
45 return Vector.empty() && Set.empty();
49 return isSmall() ? Vector.size() : Set.size();
58 return Set.count(V);
71 return std::make_pair(None, Set.insert(V).second);
83 Set.insert(Vector.back());
86 Set.insert(V);
98 return Set.erase(V);
109 Set.clear();
112 bool isSmall() const { return Set
[all...]
/external/skia/tests/
H A DGrOrderedSetTest.cpp14 typedef GrOrderedSet<int> Set; typedef
18 Set set;
28 Set::Iter xi = set.insert(x);
50 for (Set::Iter a = set.begin(); set.end() != a; ++a) {
51 Set::Iter b = a;
96 for (Set::Iter a = set.begin(); set.end() != a; ++a) {
97 Set::Iter b = a;
/external/v8/test/cctest/compiler/
H A Dc-signature.h86 void Set(int index, MachineType type) { function in class:v8::internal::compiler::CSignatureOf
103 this->Set(0, MachineTypeForC<P1>());
111 this->Set(0, MachineTypeForC<P1>());
112 this->Set(1, MachineTypeForC<P2>());
120 this->Set(0, MachineTypeForC<P1>());
121 this->Set(1, MachineTypeForC<P2>());
122 this->Set(2, MachineTypeForC<P3>());
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
H A Djavascriptlintrules.py28 from sets import Set namespace
54 self._declared_private_members = Set()
55 self._used_private_members = Set()
480 self._declared_private_members = Set()
481 self._used_private_members = Set()
/external/guava/guava/src/com/google/common/reflect/
H A DMutableTypeToInstanceMap.java31 import java.util.Set;
82 @Override public Set<Entry<TypeToken<? extends B>, B>> entrySet() {
106 static <K, V> Set<Entry<K, V>> transformEntries(final Set<Entry<K, V>> entries) { argument
108 @Override protected Set<Entry<K, V>> delegate() {

Completed in 935 milliseconds

12345