Searched defs:set (Results 1 - 25 of 882) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1323.js43 function set(a, index, value) { function
46 for (var i = 0; i < 5; i++) set(a, 0, 4.5);
47 %OptimizeFunctionOnNextCall(set);
48 set(a, 0, 4.5);
H A Dregress-2346.js29 // configurable, enumerable, and writable set to true.
36 function set(x) { this.x = x; } class
40 obj.__defineSetter__("accessor", set);
54 assertTrue(descIsAccessor.set == set);
116 Object.defineProperty(global, '239', {get: el_getter, set: el_setter});
123 assertEquals(el_setter, descAccessorElement.set);
H A Dregress-798.js79 set: function(val) {
H A Dregress-omit-checks.js41 function set(b) { function
46 set(b1);
47 set(b2);
48 %OptimizeFunctionOnNextCall(set);
49 set(b3);
52 Object.defineProperty(a, "z", {set:function(v) { called = true; }});
53 set(b4);
/external/v8/test/mjsunit/regress/
H A Dregress-1323.js43 function set(a, index, value) { function
46 for (var i = 0; i < 5; i++) set(a, 0, 4.5);
47 %OptimizeFunctionOnNextCall(set);
48 set(a, 0, 4.5);
H A Dregress-798.js79 set: function(val) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dcompat.py34 set = set variable
37 from sets import Set as set, ImmutableSet as frozenset namespace
/external/oprofile/libutil++/
H A Dcverb.h57 * as a verbose object, the set state can be intialized through
70 bool set; member in class:verbose
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dlast_error.js11 // 1. For backwards compatibility we need to set chrome.extension.lastError,
13 // 2. When calling across contexts, the global object that gets lastError set
21 function set(name, message, stack, targetChrome) { function
27 throw new Error('No chrome object to set error: ' + errorMessage);
28 clear(targetChrome); // in case somebody has set a sneaky getter/setter
67 * Runs |callback(args)| with last error args as in set().
74 set(name, message, stack, targetChrome);
83 exports.set = set;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitArray.h42 void set(unsigned index) function in class:WTF::BitArray
H A DIntegralTypedArrayBase.h42 void set(unsigned index, double value) function in class:WTF::IntegralTypedArrayBase
/external/chromium_org/v8/test/mjsunit/
H A Dobject-define-property.js84 set: setter1,
90 set: setter2,
96 set: setter3,
105 var accessorDefault = {set: function(){} };
126 // foo should be undefined as it has no get, set or value
136 assertEquals(desc.set, undefined);
161 assertEquals(desc.set, accessorConfigurable.set);
176 assertEquals(desc.set, accessorNoConfigurable.set);
396 function set(x){this.x=x}; class
[all...]
H A Dget-own-property-descriptor.js29 // configurable, enumerable, and writable set to true.
34 function set(x) { this.x = x; } class
38 obj.__defineSetter__("accessor", set);
52 assertTrue(descIsAccessor.set == set);
114 Object.defineProperty(global, '239', {get: el_getter, set: el_setter});
121 assertEquals(el_setter, descAccessorElement.set);
/external/v8/test/mjsunit/
H A Dobject-define-property.js84 set: setter1,
90 set: setter2,
96 set: setter3,
105 var accessorDefault = {set: function(){} };
126 // foo should be undefined as it has no get, set or value
136 assertEquals(desc.set, undefined);
161 assertEquals(desc.set, accessorConfigurable.set);
176 assertEquals(desc.set, accessorNoConfigurable.set);
396 function set(x){this.x=x}; class
[all...]
H A Dget-own-property-descriptor.js29 // configurable, enumerable, and writable set to true.
34 function set(x) { this.x = x; } class
38 obj.__defineSetter__("accessor", set);
52 assertTrue(descIsAccessor.set == set);
114 Object.defineProperty(global, '239', {get: el_getter, set: el_setter});
121 assertEquals(el_setter, descAccessorElement.set);
H A Dobject-freeze.js94 obj.x = { get: function() {return 43}, set: function() {} };
100 function set() {}; function
101 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
106 assertEquals(set, desc.set);
118 assertEquals(set, desc.set);
159 // Test that isFrozen return the correct value even if configurable has been set
160 // to false on all properties manually and the extensible flag has also been set
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_SetTest.java24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
32 set = s;
38 assertTrue("Set Test - Adding a duplicate element changed the set",
39 !set.add(new Integer(50)));
40 assertTrue("Set Test - Removing an element did not change the set", set
44 !set.contains(new Integer(50)));
45 set.add(new Integer(50));
46 new Support_CollectionTest("", set).runTest();
/external/chromium_org/base/
H A Dstl_util_unittest.cc7 #include <set>
16 std::set<int> set; local
17 set.insert(24);
18 set.insert(1);
19 set.insert(12);
20 EXPECT_TRUE(STLIsSorted(set));
37 std::set<int> a1;
43 std::set<int> a2;
51 std::set<in
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DClassCollector.java38 private final Set set; field in class:ClassCollector
43 * @param set the <code>Set</code> in which all class names will be
46 public ClassCollector(Set set) argument
48 this.set = set;
56 set.add(clazz);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSVariablesMap.cpp58 void CSSVariablesMap::set(const AtomicString& name, const String& value, ExceptionState& es) const function in class:WebCore::CSSVariablesMap
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIdTargetObserverRegistry.cpp57 ObserverSet* set = iter->value.get(); local
58 set->remove(observer);
59 if (set->isEmpty() && set != m_notifyingObserversInSet)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadList.cpp37 void GamepadList::set(unsigned index, PassRefPtr<Gamepad> gamepad) function in class:WebCore::GamepadList
/external/chromium_org/third_party/angle_dx11/src/common/
H A DRefCountObject.cpp41 void RefCountObjectBindingPointer::set(RefCountObject *newObject) function in class:RefCountObjectBindingPointer
/external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
H A Dprobslet.h61 ** Override PR_MAX_SELECT_DESC if you need more space in the select set.
89 ** with its own maximum number of elements in the set.
92 ** A set describing the io descriptors for which ready for reading
96 ** A set describing the io descriptors for which ready for writing
100 ** A set describing the io descriptors for which exception pending
113 ** A set describing the io descriptors which are ready for reading.
116 ** A set describing the io descriptors which are ready for writing.
119 ** A set describing the io descriptors which have pending exception.
137 ** PR_FD_ZERO(&fdset) initializes a descriptor set fdset to the null set
150 NSPR_API(void) PR_FD_ZERO(PR_fd_set *set); variable
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrPoint.h24 void set(intptr_t x, intptr_t y) { function in struct:GrIPoint16

Completed in 1350 milliseconds

1234567891011>>