HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 51 - 75 of 2219) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
TypedArrayBase.h 40 bool set(TypedArrayBase<T>* array, unsigned offset) function in class:WTF::TypedArrayBase
106 a->set(i, array[i]);
Uint8ClampedArray.h 51 using TypedArrayBase<unsigned char>::set;
52 inline void set(unsigned index, double value);
95 void Uint8ClampedArray::set(unsigned index, double value) function in class:WTF::Uint8ClampedArray
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-cache-private.hh 56 inline bool set (unsigned int key, unsigned int value) function in struct:hb_cache_t
  /external/chromium_org/third_party/icu/source/common/
uset_props.cpp 35 UnicodeSet* set = new UnicodeSet(pat, *ec); local
37 if(set == 0) {
43 delete set;
44 set = NULL;
46 return (USet*) set;
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); local
57 if(set == 0) {
63 delete set;
64 set = NULL;
66 return (USet*) set;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
csmatch.cpp 27 void CharsetMatch::set(InputText *input, CharsetRecognizer *cr, int32_t conf) function in class:CharsetMatch
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
probslet.h 61 ** 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/src/pathops/
SkPathOpsLine.h 18 void set(const SkPoint pts[2]) { function in struct:SkDLine
25 line.set(a);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
use-after-scope-dtor-order.cc 12 void set(int *val) { val_ = val; } function in struct:IntHolder
23 holder.set(&x);
  /external/guava/guava/src/com/google/common/collect/
UnmodifiableListIterator.java 25 * {@link #set}.
50 @Override public final void set(E e) { method in class:UnmodifiableListIterator
  /external/guava/guava/src/com/google/common/util/concurrent/
SettableFuture.java 22 * A {@link ListenableFuture} whose result may be set by a {@link #set(Object)}
45 * the value was successfully set, or {@code false} if the future has already
46 * been set or cancelled.
49 * @return true if the value was successfully set.
52 public boolean set(@Nullable V value) { method in class:SettableFuture
53 return super.set(value);
60 * successfully set, or {@code false} if the future has already been set or
64 * @return true if the exception was successfully set
    [all...]
  /external/harfbuzz_ng/src/
hb-cache-private.hh 56 inline bool set (unsigned int key, unsigned int value) function in struct:hb_cache_t
  /external/icu4c/i18n/
csmatch.cpp 27 void CharsetMatch::set(InputText *input, const CharsetRecognizer *cr, int32_t conf, function in class:CharsetMatch
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
AbstractTriangle.java 43 public abstract void set(Vector3f v1, Vector3f v2, Vector3f v3); method in class:AbstractTriangle
  /external/markdown/markdown/
blockparser.py 9 a list. Each time a state is set, that state is appended to the end of the
13 Therefore, each time a state is set for a nested block, that state must be
22 def set(self, state): member in class:State
23 """ Set a new state. """
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldCopier.java 13 field.set(to, value);
  /external/oprofile/libutil++/
cached_value.h 23 cached_value() : set(false) {}
29 if (!set)
30 throw op_fatal_error("cached value not set");
35 bool cached() const { return set; }
37 /// set the contained value
40 set = true;
48 bool set; member in class:cached_value
generic_spec.h 38 void set(std::string const &);
78 void generic_spec<T>::set(std::string const & str) function in class:generic_spec
92 /// link error (using generic_spec<string> is problematic because g.set("all")
95 void generic_spec<std::string>::set(std::string const & str);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderResult.java 18 field.set(realResult, uri);
24 field.set(realResult, count);
  /external/skia/src/pathops/
SkPathOpsLine.h 18 void set(const SkPoint pts[2]) { function in struct:SkDLine
25 line.set(a);
  /external/srec/srec/AcousticState/include/
SR_AcousticState.h 85 * @param param_string contains data to set
88 ESR_ReturnCode(*set)(SR_Recognizer* recognizer, const LCHAR *param_string ); member in struct:SR_AcousticState_t
  /external/v8/test/mjsunit/
object-seal.js 103 function set() {}; function
104 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
109 assertEquals(set, desc.set);
125 assertEquals(set, desc.set);
170 // has been set to false on all properties manually and the extensible
171 // flag has also been set to false manually.
  /external/valgrind/main/coregrind/
m_vki.c 57 sets for this platform is right. A signal set consists of some
59 itself has some indexing scheme to set/clear individual bits in the
60 set, we must make sure we use the same layout/scheme: where this
68 vki_sigset_t set; local
69 // Set's size must agree with _VKI_NSIG
70 vg_assert( 8 * sizeof(set) == _VKI_NSIG );
71 // Set's word size must agree with _VKI_NSIG_BPW
72 vg_assert( 8 * sizeof(set.sig[0]) == _VKI_NSIG_BPW );
73 // The set elements are 32- or 64-bit
  /frameworks/base/core/java/com/android/internal/view/
WindowManagerPolicyThread.java 29 public static void set(Thread thread, Looper looper) { method in class:WindowManagerPolicyThread
  /frameworks/base/core/tests/coretests/src/android/os/
SystemPropertiesTest.java 32 SystemProperties.set(KEY, "");
36 SystemProperties.set(KEY, "AAA");
43 SystemProperties.set(KEY, "");
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureRenderTarget.java 61 mField.set(mData, 0, true);

Completed in 281 milliseconds

1 23 4 5 6 7 8 91011>>