HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 226 - 250 of 7714) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/debug/
set.h 1 // Debugging set implementation -*- C++ -*-
26 /** @file debug/set.h
43 class set class in namespace:std::__debug
44 : public _GLIBCXX_STD_D::set<_Key,_Compare,_Allocator>,
45 public __gnu_debug::_Safe_sequence<set<_Key, _Compare, _Allocator> >
47 typedef _GLIBCXX_STD_D::set<_Key, _Compare, _Allocator> _Base;
48 typedef __gnu_debug::_Safe_sequence<set> _Safe_base;
60 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, set>
62 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator, set>
73 explicit set(const _Compare& __comp = _Compare() function in class:std::__debug::set
78 set(_InputIterator __first, _InputIterator __last, function in class:std::__debug::set
84 set(const set& __x) function in class:std::__debug::set
87 set(const _Base& __x) function in class:std::__debug::set
91 set(set&& __x) function in class:std::__debug::set
95 set(initializer_list<value_type> __l, function in class:std::__debug::set
    [all...]
  /external/skia/samplecode/
SampleOverflow.cpp 27 // set up clipper
29 skclip.set(SkIntToFixed(284), SkIntToFixed(40), SkIntToFixed(1370), SkIntToFixed(708));
34 matrix.set(SkMatrix::kMTransX, SkFloatToFixed(-1153.28));
35 matrix.set(SkMatrix::kMTransY, SkFloatToFixed(1180.50));
37 matrix.set(SkMatrix::kMScaleX, SkFloatToFixed(0.177171));
38 matrix.set(SkMatrix::kMScaleY, SkFloatToFixed(0.177043));
40 matrix.set(SkMatrix::kMSkewX, SkFloatToFixed(0.126968));
41 matrix.set(SkMatrix::kMSkewY, SkFloatToFixed(-0.126876));
43 matrix.set(SkMatrix::kMPersp0, SkFloatToFixed(0.0));
44 matrix.set(SkMatrix::kMPersp1, SkFloatToFixed(0.0))
    [all...]
SamplePathClip.cpp 30 fOval.set(0, 0, SkIntToScalar(200), SkIntToScalar(50));
31 fCenter.set(SkIntToScalar(250), SkIntToScalar(250));
59 r.set(SkIntToScalar(200), SkIntToScalar(200),
68 r.set(SkIntToScalar(150), SkIntToScalar(10),
78 fCenter.set(click->fCurr.fX, click->fCurr.fY);
  /external/webkit/Source/JavaScriptCore/bytecode/
Instruction.h 70 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base) function in struct:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo
73 base.set(globalData, owner, _base);
78 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, Structure* _proto) function in struct:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo
81 base.set(globalData, owner, _base);
82 u.proto.set(globalData, owner, _proto);
86 void set(JSGlobalData& globalData, JSCell* owner, PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, StructureChain* _chain) function in struct:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo
89 base.set(globalData, owner, _base);
90 u.chain.set(globalData, owner, _chain);
97 list[0].set(globalData, owner, stubRoutine, firstBase);
102 list[0].set(globalData, owner, stubRoutine, firstBase, firstProto)
    [all...]
StructureStubInfo.h 65 u.getByIdSelf.baseObjectStructure.set(globalData, owner, baseObjectStructure);
72 u.getByIdProto.baseObjectStructure.set(globalData, owner, baseObjectStructure);
73 u.getByIdProto.prototypeStructure.set(globalData, owner, prototypeStructure);
80 u.getByIdChain.baseObjectStructure.set(globalData, owner, baseObjectStructure);
81 u.getByIdChain.chain.set(globalData, owner, chain);
106 u.putByIdTransition.previousStructure.set(globalData, owner, previousStructure);
107 u.putByIdTransition.structure.set(globalData, owner, structure);
108 u.putByIdTransition.chain.set(globalData, owner, chain);
115 u.putByIdReplace.baseObjectStructure.set(globalData, owner, baseObjectStructure);
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsTest.java 25 import java.util.Set;
47 Set<String> set = new HashSet<String>(); local
48 set.add("foo");
49 set.add("bar");
50 set.add(null);
52 multiset.addAll(set);
53 Multiset<String> multisetView = Multisets.forSet(set);
60 assertEquals(set, multisetView.elementSet());
61 assertEquals(multisetView.elementSet(), set); local
100 Set<String> set = new HashSet<String>(); local
112 TreeMultiset<DerivedComparable> set = TreeMultiset.create(); local
122 TreeMultiset<LegacyComparable> set = TreeMultiset.create(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbum.java 34 for (MediaSet set : mSets) {
35 set.addContentListener(this);
43 for (MediaSet set : mSets) {
44 int size = set.getMediaItemCount();
48 ArrayList<MediaItem> fetchItems = set.getMediaItem(start, fetchCount);
62 for (MediaSet set : mSets) {
63 count += set.getMediaItemCount();
  /sdk/ddms/app/etc/
ddms.bat 19 rem Set up prog to be the path of this script, including following symlinks,
20 rem and set up progdir to be the fully-qualified pathname of its directory.
21 set prog=%~f0
28 for %%i in ("%cd%") do set prog_dir=%%~fsi
31 set java_exe=
35 set jarfile=ddms.jar
36 set frameworkdir=
39 set frameworkdir=lib\
42 set frameworkdir=..\framework\
47 set java_debug=-agentlib:jdwp=transport=dt_socket,server=y,address=8050,suspend=y
    [all...]
  /sdk/hierarchyviewer2/app/etc/
hierarchyviewer.bat 19 rem Set up prog to be the path of this script, including following symlinks,
20 rem and set up progdir to be the fully-qualified pathname of its directory.
21 set prog=%~f0
28 for %%i in ("%cd%") do set prog_dir=%%~fsi
31 set java_exe=
35 set jarfile=hierarchyviewer2.jar
36 set frameworkdir=
37 set libdir=
40 set frameworkdir=lib\
43 set frameworkdir=..\framework\
    [all...]
  /dalvik/dx/etc/
dx.bat 21 REM Set up prog to be the path of this script, including following symlinks,
22 REM and set up progdir to be the fully-qualified pathname of its directory.
23 set prog=%~f0
30 set java_exe=
34 set jarfile=dx.jar
35 set frameworkdir=
38 set frameworkdir=lib\
41 set frameworkdir=..\framework\
45 set jarpath=%frameworkdir%%jarfile%
47 set javaOpts=
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Triangle.java 72 pointa.set(p1);
73 pointb.set(p2);
74 pointc.set(p3);
111 * <code>set</code> sets one of the triangle's points to that specified as
114 * @param point the point to set.
116 public void set(int i, Vector3f point) { method in class:Triangle
119 pointa.set(point);
122 pointb.set(point);
125 pointc.set(point);
132 * <code>set</code> sets one of the triangle's points to that specified as
136 public void set(int i, float x, float y, float z) { method in class:Triangle
162 public void set(Vector3f v1, Vector3f v2, Vector3f v3) { method in class:Triangle
    [all...]
Transform.java 56 this.translation.set(translation);
57 this.rot.set(rot);
62 this.scale.set(scale);
83 this.rot.set(rot);
93 this.translation.set(trans);
111 this.scale.set(scale);
121 this.scale.set(scale, scale, scale);
141 trans.set(this.translation);
153 quat.set(rot);
173 scale.set(this.scale)
284 public Transform set(Transform matrixQuat) { method in class:Transform
    [all...]
  /libcore/luni/src/test/java/libcore/io/
DiskLruCacheTest.java 72 creator.set(0, "ABC");
73 creator.set(1, "DE");
87 creator.set(0, "A");
88 creator.set(1, "B");
102 creator.set(0, "AB");
103 creator.set(1, "C");
112 creator.set(0, "AB");
113 creator.set(1, "C");
128 creator.set(0, "A");
129 creator.set(1, "BC")
781 private void set(String key, String value0, String value1) throws Exception { method in class:DiskLruCacheTest
    [all...]
  /external/skia/tests/
StringTest.cpp 46 a.set("hello");
47 b.set("hellox", 5);
48 c.set(a);
65 b.set("world");
72 f.set("world");
80 a.set("a");
81 a.set("ab");
82 a.set("abc");
83 a.set("abcd");
85 a.set("");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 93 set {
101 set {
120 set {
128 set {
139 set {
146 set {
157 set {
168 set {
179 set {
190 * are set. Walk depth first, visit bottom up. Only updates node
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonToken.cs 44 int charPositionInLine = -1; // set to invalid position
123 set
140 set
152 set
164 set
176 set
188 set
200 set
212 set
224 set
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 101 set
114 set
143 set
156 set
172 set
184 set
200 set
217 set
233 set
247 * are set. Walk depth first, visit bottom up. Only updates node
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
Strong.h 54 set(value);
60 set(handle.get());
69 set(other.get());
78 set(other.get());
98 void set(JSGlobalData& globalData, ExternalType value) function in class:JSC::Strong
102 set(value);
112 set(*HandleHeap::heapFor(other.slot())->globalData(), other.get());
123 set(*HandleHeap::heapFor(other.slot())->globalData(), other.get());
138 void set(ExternalType externalType) function in class:JSC::Strong
  /external/webkit/Source/WebCore/storage/
IDBAny.cpp 122 void IDBAny::set(PassRefPtr<IDBCursorWithValue> value) function in class:WebCore::IDBAny
129 void IDBAny::set(PassRefPtr<IDBCursor> value) function in class:WebCore::IDBAny
136 void IDBAny::set(PassRefPtr<IDBDatabase> value) function in class:WebCore::IDBAny
143 void IDBAny::set(PassRefPtr<IDBFactory> value) function in class:WebCore::IDBAny
150 void IDBAny::set(PassRefPtr<IDBIndex> value) function in class:WebCore::IDBAny
157 void IDBAny::set(PassRefPtr<IDBKey> value) function in class:WebCore::IDBAny
164 void IDBAny::set(PassRefPtr<IDBTransaction> value) function in class:WebCore::IDBAny
171 void IDBAny::set(PassRefPtr<IDBObjectStore> value) function in class:WebCore::IDBAny
178 void IDBAny::set(PassRefPtr<SerializedScriptValue> value) function in class:WebCore::IDBAny
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/debug/
set.h 1 // Debugging set implementation -*- C++ -*-
26 /** @file debug/set.h
41 /// Class std::set with safety/checking/debug instrumentation.
44 class set class in namespace:__debug
45 : public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>,
46 public __gnu_debug::_Safe_sequence<set<_Key, _Compare, _Allocator> >
48 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
49 typedef __gnu_debug::_Safe_sequence<set> _Safe_base;
64 typedef __gnu_debug::_Safe_iterator<_Base_iterator, set>
66 typedef __gnu_debug::_Safe_iterator<_Base_const_iterator, set>
77 explicit set(const _Compare& __comp = _Compare(), function in class:__debug::set
82 set(_InputIterator __first, _InputIterator __last, function in class:__debug::set
90 set(const set& __x) function in class:__debug::set
93 set(const _Base& __x) function in class:__debug::set
97 set(set&& __x) function in class:__debug::set
101 set(initializer_list<value_type> __l, function in class:__debug::set
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/debug/
set.h 1 // Debugging set implementation -*- C++ -*-
26 /** @file debug/set.h
41 /// Class std::set with safety/checking/debug instrumentation.
44 class set class in namespace:__debug
45 : public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>,
46 public __gnu_debug::_Safe_sequence<set<_Key, _Compare, _Allocator> >
48 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
49 typedef __gnu_debug::_Safe_sequence<set> _Safe_base;
64 typedef __gnu_debug::_Safe_iterator<_Base_iterator, set>
66 typedef __gnu_debug::_Safe_iterator<_Base_const_iterator, set>
77 explicit set(const _Compare& __comp = _Compare(), function in class:__debug::set
82 set(_InputIterator __first, _InputIterator __last, function in class:__debug::set
90 set(const set& __x) function in class:__debug::set
93 set(const _Base& __x) function in class:__debug::set
97 set(set&& __x) function in class:__debug::set
101 set(initializer_list<value_type> __l, function in class:__debug::set
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 26 import java.util.Set;
329 Set set = enumSizeMap.entrySet(); local
331 Set set1 = enumSizeMap.entrySet();
332 assertSame("Should be same", set1, set); //$NON-NLS-1$
334 set.add(mockEntry);
340 assertTrue("Returned false for contained object", set//$NON-NLS-1$
343 assertFalse("Returned true for uncontained object", set //$NON-NLS-1$
345 assertFalse("Returned true for uncontained object", set //$NON-NLS-1$
348 assertFalse("Returned true for uncontained object", set //$NON-NLS-1
598 Set set = enumSizeMap.keySet(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
EnumMapTest.java 28 import java.util.Set;
332 Set set = enumSizeMap.entrySet(); local
334 Set set1 = enumSizeMap.entrySet();
335 assertSame("Should be same", set1, set);
337 set.add(mockEntry);
343 assertTrue("Returned false for contained object", set
346 assertFalse("Returned true for uncontained object", set
348 assertFalse("Returned true for uncontained object", set
351 assertFalse("Returned true for uncontained object", set
600 Set set = enumSizeMap.keySet(); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_utils_win.cc 7 #include <set>
17 std::set<std::wstring>* font_names =
18 reinterpret_cast<std::set<std::wstring>*>(lparam);
30 std::set<std::wstring> font_names;
42 std::set<std::wstring>::iterator iter;
  /external/chromium/net/http/
http_stream_factory_impl.h 9 #include <set>
45 typedef std::set<Request*> RequestSet;
81 std::set<HostPortPair> tls_intolerant_servers_;
94 // set. Leftover jobs will be deleted when the factory is destroyed.
95 std::set<const Job*> orphaned_job_set_;
100 std::set<const Job*> preconnect_job_set_;

Completed in 1754 milliseconds

1 2 3 4 5 6 7 8 91011>>