Searched defs:set (Results 351 - 375 of 1028) sorted by relevance

<<11121314151617181920>>

/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h35 // ID (of type I) of each unique set. The IDs are allocated starting
76 I id_; // Iterator set node id
77 Node node_; // Iterator set node
83 // Lookups integer ID from ordered multi-set. If it doesn't exist
85 I FindId(const vector<T> &set, bool insert = true) { argument
87 for (ssize_t i = set.size() - 1; i >= 0; --i) {
88 Node node(node_id, set[i]);
95 // Finds ordered (multi-)set given integer ID. Returns set iterator
/external/openssl/crypto/x509/
H A Dx509name.c153 /* else we need to fixup the set field */
155 set_prev=(sk_X509_NAME_ENTRY_value(sk,loc-1))->set;
157 set_prev=ret->set-1;
158 set_next=sk_X509_NAME_ENTRY_value(sk,loc)->set;
160 /* set_prev is the previous set
161 * set is the current set
164 * set 1 1 2 2
170 sk_X509_NAME_ENTRY_value(sk,i)->set--;
175 unsigned char *bytes, int len, int loc, int set)
174 X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set) argument
186 X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set) argument
198 X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set) argument
212 X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc, int set) argument
[all...]
/external/proguard/src/proguard/ant/
H A DClassSpecificationElement.java56 // Get the referenced file set, or else this one.
201 private int requiredAccessFlags(boolean set, argument
215 if (token.startsWith("!") ^ set)
239 if (type != null && (type.startsWith("!") ^ set))
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java427 private void checkEqualsIsConsistent(UnknownFieldSet set) { argument
429 assertEquals(set, set);
432 UnknownFieldSet copy = UnknownFieldSet.newBuilder(set).build();
433 assertEquals(set, copy);
434 assertEquals(copy, set);
435 assertEquals(set.hashCode(), copy.hashCode());
/external/qemu/android/base/
H A DStringView.h99 void set(const char* data, size_t len) { function in class:android::base::StringView
104 void set(const char* str) { function in class:android::base::StringView
109 void set(const StringView& other) { function in class:android::base::StringView
118 set(other);
/external/replicaisland/src/com/replica/replicaisland/
H A DFixedSizeArray.java27 * (the current number of objects inserted into the array). Operations such as set() and remove()
78 * ignoreComparator is set to true, a linear search of object references will be performed.
79 * Otherwise, the comparator set on this array (if any) will be used to find the object.
139 public void set(int index, T object) { method in class:FixedSizeArray
188 * Note that if ignoreComparator is set to true, a linear search of object references will be
189 * performed. Otherwise, the comparator set on this array (if any) will be used to find the
239 * the forceResort parameter is set to true. If a comparator has been specified with
242 * @param forceResort If set to true, the array will be resorted even if the order of the
H A DRenderSystem.java56 element.set(object, position, priority, cameraRelative);
104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) { method in class:RenderSystem.RenderElement
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContext.java76 AttributeSet set, int[] attrs) {
77 return getTheme().obtainStyledAttributes(set, attrs, 0, 0);
82 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
84 set, attrs, defStyleAttr, defStyleRes);
75 obtainStyledAttributes( AttributeSet set, int[] attrs) argument
81 obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument
H A DShadowRect.java29 public void set(Rect rect) { method in class:ShadowRect
30 set(rect.left, rect.top, rect.right, rect.bottom);
34 public void set(int left, int top, int right, int bottom) { method in class:ShadowRect
/external/skia/include/core/
H A DSkTDict.h26 bool set(const char name[], const T& value) { function in class:SkTDict
27 return set(name, strlen(name), value);
30 bool set(const char name[], size_t len, const T& value) { function in class:SkTDict
H A DSkTLazy.h50 * previous instance had been initialized (either from init() or set()) it
68 T* set(const T& src) { function in class:SkTLazy
78 * Destroy the lazy object (if it was created via init() or set())
171 fLazy.set(*fObj);
/external/skia/include/utils/
H A DSkRTConf.h44 void set(const T& value) { fValue = value; } function in class:SkRTConf
56 skRTConfRegistry().set(confname, value, true)
61 skRTConfRegistry().set(confname, value, false)
84 template <typename T> void set(const char *confname,
/external/skia/src/core/
H A DSkRecord.h82 return fRecords[fCount++].set(this->allocCommand<T>());
96 return fRecords[i].set(this->allocCommand<T>());
110 return fRecords[i].set(this->allocCommand<T>());
184 T* set(T* ptr) { function in struct:SkRecord::Record
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp38 static void set(char* array[256], int index, SkStream& s, int data) function
96 set(rec.fNames, rec.fNextName++, s, data);
98 set(rec.fValues, rec.fNextValue++, s, 31);
102 set(rec.fNames, rec.fNextName++, s, data);
108 set(rec.fValues, rec.fNextValue++, s, 31);
131 set(rec.fElems, rec.fNextElem++, s, data);
/external/skia/tools/lua/
H A Dskia.lua66 function Sk.Rect:set(l, t, r, b)
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DPrivateCredentialPermission.java64 // owners set
65 private transient CredOwner[] set; field in class:PrivateCredentialPermission
88 * class and set of principals.
93 * the set of principals.
99 set = new CredOwner[principals.size()];
105 if (set[ii].equals(element)) {
111 set[offset++] = element;
161 // populate principal set with instances of CredOwner class
165 set = new CredOwner[count];
177 if (set[i
[all...]
/external/stlport/src/
H A Dmessages.cpp139 int set, int p_id, const string& dfault) const {
142 set, p_id, dfault.c_str()))
150 int set, int p_id, const wstring& dfault) const {
154 const char* str = _Locale_catgets(_M_message_obj, _STLP_MUTABLE(_Messages_impl, _M_cat)[thecat], set, p_id, "");
160 const char* str2 = _Locale_catgets(_M_message_obj, _STLP_MUTABLE(_Messages_impl, _M_cat)[thecat], set, p_id, "*");
205 messages_byname<char>::do_get(catalog cat, int set, int p_id, argument
207 { return _M_impl->do_get(cat, set, p_id, dfault); }
235 int set, int p_id, const wstring& dfault) const
236 { return _M_impl->do_get(thecat, set, p_id, dfault); }
138 do_get(catalog cat, int set, int p_id, const string& dfault) const argument
149 do_get(catalog thecat, int set, int p_id, const wstring& dfault) const argument
234 do_get(catalog thecat, int set, int p_id, const wstring& dfault) const argument
/external/svox/pico/lib/
H A Dpicokdt.h118 picoos_uint8 set; /* TRUE if class set, FALSE otherwise */ member in struct:__anon31413
127 picoos_uint8 nr; /* 0 if no class set, nr of values set otherwise */
290 set to 0 otherwise
292 set to 0 otherwise
/external/valgrind/main/coregrind/m_gdbserver/
H A Dvalgrind-low-amd64.c144 dlog(1, "set pc to %p\n", C2v (newpc));
146 dlog(1, "set pc not changed %p\n", C2v (newpc));
156 int set = abs_regno / dyn_num_regs; local
160 VexGuestAMD64State* amd64 = (VexGuestAMD64State*) get_arch (set, tst);
185 /* we can only retrieve the real flags (set 0)
187 if (set == 0)
/external/valgrind/main/drd/tests/
H A Dmonitor_example.cpp189 void set(const int state) function in class:StateVariable
214 s_sv.set(2);
216 s_sv.set(4);
224 s_sv.set(1);
226 s_sv.set(3);
/external/valgrind/main/none/tests/ppc32/
H A Dpower5+_round.c57 /* This set is disabled until fprf is implemented. */
59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan }; local
64 : "f"(set[i]), "f"(set[j])
77 printf("fcmpu\t%.1f\t%.1f\t%x\t%s\n", set[i], set[j],
84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan }; local
110 DO_TEST(frin, set, frin, fprf);
112 DO_TEST(friz, set, friz, fprf);
114 DO_TEST(frip, set, fri
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js810 Hash.set(this, key, value);
831 set: function(key, value){
851 results.set(key, fn.call(bind, value, key, this));
859 if (fn.call(bind, value, key, this)) results.set(key, value);
1312 return $(tag).set(props);
1410 return $.element(this.createElement(tag)).set(props);
1607 set: function(prop, value){
1610 for (var p in prop) this.set(p, prop[p]);
1614 (property && property.set) ? property.set
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h88 pANTLR3_UINT8 (*set) (struct ANTLR3_STRING_struct * string, const char * chars); member in struct:ANTLR3_STRING_struct
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLabel.java35 * label such as a token or character. A label can be a set of char or
52 /** label is a set of tokens or char */
120 /** A set of token types or character codes if label==SET */
128 /** Make a set label */
219 // convert single element to a set if they ask for it.
225 public void setSet(IntSet set) { argument
227 labelSet = set;
244 public boolean matches(IntSet set) { argument
246 return set.member(getAtom());
250 return !getSet().and(set)
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBitSet.java40 * Primary differences are that most set operators return new sets
45 * Consider defining set degree. Without access to the bits, I must
48 * Also seems like or() from util is wrong when size of incoming set is bigger
84 /** or this element into this set (grow as necessary to accommodate) */
96 public void addAll(IntSet set) { argument
97 if ( set instanceof BitSet ) {
98 this.orInPlace((BitSet)set);
100 else if ( set instanceof IntervalSet ) {
101 IntervalSet other = (IntervalSet)set;
102 // walk set an
293 complement(IntSet set) argument
341 of(IntSet set) argument
[all...]

Completed in 666 milliseconds

<<11121314151617181920>>