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

1 2 3 4 5 6 7 8 91011>>

  /external/iw/
sections.c 4 SECTION(set); variable
  /external/v8/test/mjsunit/
element-accessor.js 18 var set = 0; variable
22 set:function(v) { set = v; }});
25 assertEquals(1000, set);
primitive-keyed-access.js 6 { set: function(v) { set = v; }});
8 { set: function(v) { set = v; }});
10 { set: function(v) { set = v; }});
12 var set; variable
14 set = 0;
16 assertEquals(100, set);
19 assertEquals(100, set);
    [all...]
object-define-property.js 84 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...]
  /external/v8/test/mjsunit/regress/
regress-1323.js 43 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);
regress-crbug-583257.js 10 function set(object, index, value) { object[index] = value; } function
11 set(s, 10, "value");
12 set(s, 1073741823, "value");
  /external/apache-harmony/support/src/test/java/tests/support/
Support_SetTest.java 20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
30 public Support_SetTest(String p1, Set<Integer> s) {
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", se
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_SetTest.java 20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
30 public Support_SetTest(String p1, Set<Integer> s) {
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", se
    [all...]
  /bionic/libc/bionic/
sigpending.cpp 36 kernel_sigset_t set; local
37 int result = __rt_sigpending(&set, sizeof(set));
39 *bionic_set = set.bionic;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
compat.py 34 set = set variable
37 from sets import Set as set, ImmutableSet as frozenset namespace
  /external/autotest/tko/
machine_load 9 set = { 'machine_group' : group } variable
11 db.update('machines', set, where)
  /external/strace/tests/
sigreturn.c 46 sigset_t set; local
47 sigemptyset(&set);
48 sigaddset(&set, SIGUSR2);
49 sigaddset(&set, SIGCHLD);
50 sigaddset(&set, RT_0 + 2);
51 sigaddset(&set, RT_0 + 3);
52 sigaddset(&set, RT_0 + 4);
53 sigaddset(&set, RT_0 + 26);
54 sigaddset(&set, RT_0 + 27);
55 sigprocmask(SIG_SETMASK, &set, NULL)
    [all...]
  /external/autotest/client/bin/
config.py 37 def set(self, name, value): member in class:config
  /external/parameter-framework/upstream/parameter/
XmlElementSerializingContext.cpp 41 void CXmlElementSerializingContext::set(const CElementLibrary *pElementLibrary, function in class:CXmlElementSerializingContext
  /external/skia/src/pathops/
SkPathOpsLine.h 18 const SkDLine& set(const SkPoint pts[2]) { function in struct:SkDLine
  /frameworks/base/libs/hwui/protos/
ProtoHelpers.h 25 void set(proto::RectF* dest, const Rect& src) { function in namespace:android::uirenderer
32 void set(std::string* dest, const SkPath& src) { function in namespace:android::uirenderer
  /external/v8/test/mjsunit/es6/
reflect-define-property.js 86 set: setter1,
92 set: setter2,
98 set: setter3,
107 var accessorDefault = {set: function(){} };
124 // foo should be undefined as it has no get, set or value
134 assertEquals(desc.set, undefined);
155 assertEquals(desc.set, accessorConfigurable.set);
170 assertEquals(desc.set, accessorNoConfigurable.set);
370 function set(x){this.x=x}; class
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
DirectionalLight.java 26 this.direction.set(directionX, directionY, directionZ);
31 this.direction.set(direction);
35 public DirectionalLight set (final DirectionalLight copyFrom) { method in class:DirectionalLight
36 return set(copyFrom.color, copyFrom.direction);
39 public DirectionalLight set (final Color color, final Vector3 direction) { method in class:DirectionalLight
40 if (color != null) this.color.set(color);
41 if (direction != null) this.direction.set(direction).nor();
45 public DirectionalLight set (final float r, final float g, final float b, final Vector3 direction) { method in class:DirectionalLight
46 this.color.set(r, g, b, 1f);
47 if (direction != null) this.direction.set(direction).nor();
51 public DirectionalLight set (final Color color, final float dirX, final float dirY, final float dirZ) { method in class:DirectionalLight
57 public DirectionalLight set (final float r, final float g, final float b, final float dirX, final float dirY, final float dirZ) { method in class:DirectionalLight
    [all...]
PointLight.java 27 this.position.set(positionX, positionY, positionZ);
32 this.position.set(position);
41 public PointLight set (final PointLight copyFrom) { method in class:PointLight
42 return set(copyFrom.color, copyFrom.position, copyFrom.intensity);
45 public PointLight set (final Color color, final Vector3 position, final float intensity) { method in class:PointLight
46 if (color != null) this.color.set(color);
47 if (position != null) this.position.set(position);
52 public PointLight set (final float r, final float g, final float b, final Vector3 position, final float intensity) { method in class:PointLight
53 this.color.set(r, g, b, 1f);
54 if (position != null) this.position.set(position);
59 public PointLight set (final Color color, final float x, final float y, final float z, final float intensity) { method in class:PointLight
66 public PointLight set (final float r, final float g, final float b, final float x, final float y, final float z, method in class:PointLight
    [all...]
  /bionic/libc/private/
kernel_sigset_t.h 33 set(value);
40 void set(const sigset_t* value) { function in union:kernel_sigset_t
  /external/deqp/framework/delibs/decpp/
deThreadLocal.hpp 42 inline void set (void* value) { deThreadLocal_set(m_var, value); } function in class:de::ThreadLocal
  /external/google-breakpad/src/client/linux/minidump_writer/
cpu_set_unittest.cc 59 CpuSet set; local
60 ASSERT_EQ(0, set.GetCount());
67 CpuSet set; local
68 ASSERT_TRUE(set.ParseSysFile(file.GetFd()));
69 ASSERT_EQ(1, set.GetCount());
76 CpuSet set; local
77 ASSERT_TRUE(set.ParseSysFile(file.GetFd()));
78 ASSERT_EQ(1, set.GetCount());
85 CpuSet set; local
86 ASSERT_TRUE(set.ParseSysFile(file.GetFd()))
94 CpuSet set; local
103 CpuSet set; local
112 CpuSet set; local
    [all...]
  /external/icu/icu4c/source/common/
stringpiece.cpp 44 void StringPiece::set(const char* str) { function in class:StringPiece
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 73 * The set of normalization boundaries returned by these functions may not be
261 * @param decomposition String object which will be set to c's
288 * @param decomposition String object which will be set to c's
434 * Normalizes portions of the text contained in the filter set and leaves
435 * portions not contained in the filter set unchanged.
447 * and a filter set.
450 * The filter set should be frozen; otherwise the performance will suffer greatly.
456 norm2(n2), set(filterSet) {}
524 * @param decomposition String object which will be set to c's
538 * @param decomposition String object which will be set to c'
652 const UnicodeSet &set; member in class:FilteredNormalizer2
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsWithSet.java 10 public SortedSet<Integer> set; field in class:ArgsWithSet

Completed in 1081 milliseconds

1 2 3 4 5 6 7 8 91011>>