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

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/
classic_table.pass.cpp 32 mask set = 0; local
34 if ( i < 32 || i > 126 ) set |= F::cntrl;
35 if ( i >= 32 && i <= 126 ) set |= F::print;
37 if (( i >= 9 && i <= 13) || i == 32 ) set |= F::space;
38 if ( i == 9 || i == 32 ) set |= F::blank;
40 if ( i >= 'A' && i <= 'Z' ) set |= F::alpha;
41 if ( i >= 'a' && i <= 'z' ) set |= F::alpha;
42 if ( i >= 'A' && i <= 'Z' ) set |= F::upper;
43 if ( i >= 'a' && i <= 'z' ) set |= F::lower;
45 if ( i >= '0' && i <= '9' ) set |= F::digit
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
PolygonShape.java 45 public void set (Vector2[] vertices) { method in class:PolygonShape
50 shape.set(v, v.length);
55 public void set (float[] vertices) { method in class:PolygonShape
56 set(vertices, 0, vertices.length); method
61 public void set (float[] vertices, int offset, int len) { method in class:PolygonShape
66 shape.set(v, v.length);
84 tmp.set(center.x, center.y);
113 vertex.set(v.x, v.y);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
RayCastOutput.java 42 public void set(final RayCastOutput rco){ method in class:RayCastOutput
43 normal.set(rco.normal);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
RaycastResult.java 32 public RaycastResult set(RaycastResult argOther){ method in class:RaycastResult
34 normal.set( argOther.normal);
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BarcodeRow.cpp 33 void CBC_BarcodeRow::set(int32_t x, uint8_t value) { function in class:CBC_BarcodeRow
36 void CBC_BarcodeRow::set(int32_t x, FX_BOOL black) { function in class:CBC_BarcodeRow
41 set(m_currentLocation++, black);
  /external/proguard/src/proguard/classfile/visitor/
ClassCollector.java 26 import java.util.Set;
38 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)
48 this.set = set;
56 set.add(clazz)
    [all...]
MemberCollector.java 26 import java.util.Set;
38 private final Set set; field in class:MemberCollector
43 * @param set the <code>Set</code> in which all method names/descriptor
46 public MemberCollector(Set set)
48 this.set = set;
57 set.add(member.getName(clazz) + member.getDescriptor(clazz))
    [all...]
  /external/skia/src/gpu/
GrPipelineBuilder.cpp 38 // These have no equivalent in GrPaint, set them to defaults
61 void GrPipelineBuilder::AutoRestoreFragmentProcessorState::set( function in class:GrPipelineBuilder::AutoRestoreFragmentProcessorState
  /external/strace/tests/
net-accept-connect.c 85 sigset_t set; local
86 sigemptyset(&set);
87 sigaddset(&set, SIGUSR1);
89 assert(sigprocmask(SIG_BLOCK, &set, NULL) == 0);
94 assert(sigprocmask(SIG_UNBLOCK, &set, NULL) == 0);
  /external/v8/test/mjsunit/
debug-stepin-accessor-ic.js 11 function set(x) { class
17 Object.defineProperty(o, "set", { set : set });
22 o.set = 1; // Break
get-own-property-descriptor.js 29 // 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/regress/
regress-2346.js 29 // 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);
regress-798.js 79 set: function(val) {
regress-omit-checks.js 41 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);
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
InputSource.cpp 38 * Set the device associated to this source.
47 status_t Element<audio_source_t>::set(audio_devices_t devices) function in class:android::audio_policy::Element
53 ALOGE("%s: trying to set an invalid device 0x%X for input source %s",
Strategy.cpp 39 * Set the device associated to this strategy.
47 status_t Element<routing_strategy>::set<audio_devices_t>(audio_devices_t devices) function in class:android::audio_policy::Element
50 ALOGE("%s: trying to set an invalid device 0x%X for strategy %s",
Stream.cpp 40 * Set the strategy to follow for this stream.
45 * @return NO_ERROR if the strategy is set correctly, error code otherwise.
48 status_t Element<audio_stream_type_t>::set<routing_strategy>(routing_strategy strategy) function in class:android::audio_policy::Element
66 status_t Element<audio_stream_type_t>::set<audio_stream_type_t>(audio_stream_type_t volumeProfile) function in class:android::audio_policy::Element
Usage.cpp 37 status_t Element<audio_usage_t>::set<routing_strategy>(routing_strategy strategy) function in class:android::audio_policy::Element
  /frameworks/base/core/java/android/util/
FloatProperty.java 34 * A type-specific variant of {@link #set(Object, Float)} that is faster when dealing
40 final public void set(T object, Float value) { method in class:FloatProperty
IntProperty.java 34 * A type-specific variant of {@link #set(Object, Integer)} that is faster when dealing
40 final public void set(T object, Integer value) { method in class:IntProperty
  /frameworks/base/core/tests/coretests/src/android/animation/
FutureWaiter.java 23 * {@link com.google.common.util.concurrent.AbstractFuture#set(Object)} method internally. It
33 super.set(true);
39 public void set(boolean result) { method in class:FutureWaiter
40 super.set(result);
  /frameworks/base/libs/hwui/utils/
StringUtils.cpp 23 unordered_string_set set; local
30 set.insert(std::move(s));
34 return set;
  /frameworks/data-binding/integration-tests/IndependentLibrary/app/src/main/java/android/databinding/test/independentlibrary/
LibraryAdapter.java 23 public static void set(View view, String someTag) { method in class:LibraryAdapter
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
PropertyService.java 34 * Set the value for |key|.
38 void set(String key, String val); method in interface:PropertyService
  /frameworks/rs/
rsMatrix2x2.h 32 inline void set(uint32_t col, uint32_t row, float v) { function in struct:android::renderscript::Matrix2x2

Completed in 465 milliseconds

12 3 4 5 6 7 8 91011>>