Searched defs:set (Results 251 - 275 of 843) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DFilteredNormalizer2.java15 * Normalizes portions of the text contained in the filter set and leaves
16 * portions not contained in the filter set unchanged.
27 * and a filter set.
30 * The filter set should be frozen; otherwise the performance will suffer greatly.
37 set=filterSet;
89 return set.contains(c) ? norm2.getDecomposition(c) : null;
98 return set.contains(c) ? norm2.getRawDecomposition(c) : null;
107 return (set.contains(a) && set.contains(b)) ? norm2.composePair(a, b) : -1;
116 return set
301 private UnicodeSet set; field in class:FilteredNormalizer2
[all...]
H A DPluralRanges.java59 void set(StandardPluralCategories start, StandardPluralCategories end, StandardPluralCategories result) { method in class:PluralRanges.Matrix
65 * Internal method for setting; throws exception if already set.
71 throw new IllegalArgumentException("Previously set value for <" + start + ", " + end + ", "
267 * @return true if set
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUTS46Test.java121 private void set(String[] data) { method in class:UTS46Test.TestCase
485 testCase.set(testCases[i]);
499 // ToUnicode does not set length-overflow errors.
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DFieldsSet.java52 public void set(int field, int amount) { method in class:FieldsSet
78 * @param other "expected" set to match against
79 * @return a formatted string listing which fields are set in this, with the
153 * @param inheritFrom the set inheriting from - may be null.
156 * @param status error status - set to error for failure.
175 * @param inheritFrom the set inheriting from - may be null.
178 * @param status error status - set to error for failure.
190 * set(field,...) on successful parse.
201 throw new InternalError("Trying to inherit from field " + field + " but inheritFrom["+field+"] is not set");
203 set(fiel
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DUnicodePropertySymbolTable.java148 patternMatcher = new UnicodeProperty.RegexMatcher().set(fixedRegex);
161 UnicodeSet set;
163 set = new UnicodeSet();
166 set.add(i);
170 set = new UnicodeSet();
175 set.add(i);
185 set = prop.getSet(new ComparisonMatcher(propertyValue, Relation.geq));
187 set = prop.getSet(propertyValue);
190 set = new UnicodeSet();
196 set
243 public PatternMatcher set(String pattern) { method in class:UnicodePropertySymbolTable.ComparisonMatcher
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DAttributeInfo.java161 public void set(byte[] newinfo) { info = newinfo; } method in class:AttributeInfo
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DIPAccessHandler.java163 set(entries, _white);
174 set(entries, _black);
186 // Get the real remote IP (not the one set by the forwarded headers (which may be forged))
261 protected void set(String[] entries, IPAddressMap<PathMap> patternMap) method in class:IPAccessHandler
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DCGI.java49 * The cgi bin directory can be set with the "cgibinResourceBase" init parameter or it will default to the resource base of the context. If the
50 * "cgibinResourceBaseIsRelative" init parameter is set the resource base is relative to the webapp. For example "WEB-INF/cgi" would work.
54 * The "commandPrefix" init parameter may be used to set a prefix to all commands passed to exec. This can be used on systems that need assistance to execute a
55 * particular file type. For example on windows this can be set to "perl" so that perl scripts are executed.
59 * Any initParameter that starts with ENV_ is used to set an environment variable with the name stripped of the leading ENV_ and using the init parameter value.
135 _env.set("PATH",_path);
143 _env.set(n.substring(4),getInitParameter(n));
150 _env.set("SystemRoot","C:\\WINDOWS");
247 env.set("AUTH_TYPE", req.getAuthType());
250 env.set("CONTENT_LENGT
486 public void set(String name, String value) method in class:CGI.EnvList
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DArrayQueue.java288 public E set(int index, E element) method in class:ArrayQueue
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactArray.java118 public final void set(int index, T value) { method in class:CompactArray
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLineSegment.java92 public void set(LineSegment ls) { method in class:LineSegment
H A DRay.java249 store.set(origin).addLocal(direction.x * t,
260 store.set(t, w1, w2);
380 loc.set(direction).multLocal(ratio).addLocal(origin);
415 tempVb.set(origin);
441 this.origin.set(origin);
480 this.direction.set(direction);
489 public void set(Ray source) { method in class:Ray
490 origin.set(source.getOrigin());
491 direction.set(source.getDirection());
H A DTransform.java56 this.translation.set(translation);
57 this.rot.set(rot);
62 this.scale.set(scale);
83 this.rot.set(rot);
93 this.translation.set(trans);
111 this.scale.set(scale);
121 this.scale.set(scale, scale, scale);
141 trans.set(this.translation);
153 quat.set(rot);
173 scale.set(thi
284 public Transform set(Transform matrixQuat) { method in class:Transform
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp47 void operator() (const DWARFDebugArangeSet& set) argument
49 count += set.NumDescriptors();
65 DWARFDebugArangeSet set; local
67 while (set.Extract(debug_aranges_data, &offset))
69 const uint32_t num_descriptors = set.NumDescriptors();
72 const dw_offset_t cu_offset = set.GetCompileUnitDIEOffset();
76 const DWARFDebugArangeSet::Descriptor &descriptor = set.GetDescriptorRef(i);
80 set.Clear();
H A DDWARFDebugPubnames.cpp45 DWARFDebugPubnamesSet set; local
48 if (set.Extract(data, &offset))
50 m_sets.push_back(set);
51 offset = set.GetOffsetOfNextEntry();
/external/llvm/tools/llvm-cov/
H A DCoverageReport.cpp35 Column &set(TrimKind Value) { function in struct:__anon11154::Column
40 Column &set(AlignmentKind Value) { function in struct:__anon11154::Column
84 return Column(Str, Width).set(Value);
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java103 public void set(NameValue nv) { method in class:DuplicateNameValueList
110 public void set(String name, Object value) { method in class:DuplicateNameValueList
193 retval.set((NameValue) ((NameValue) it.next()).clone());
/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/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/main/java/com/google/protobuf/
H A DLazyStringArrayList.java95 list.set(index, s);
102 list.set(index, s);
114 public String set(int index, String s) { method in class:LazyStringArrayList
115 Object o = list.set(index, s);
189 list.set(index, b);
199 list.set(index, b);
205 public void set(int index, ByteString s) { method in class:LazyStringArrayList
206 list.set(index, s);
210 public void set(int index, byte[] s) { method in class:LazyStringArrayList
211 list.set(inde
288 public byte[] set(int index, byte[] s) { method in class:LazyStringArrayList.ByteArrayListView
337 public ByteString set(int index, ByteString s) { method in class:LazyStringArrayList.ByteStringListView
[all...]
/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/selinux/libsemanage/src/
H A Ddatabase.h64 * In add/set/modify, the data is also property of the caller */
83 int (*set) (struct semanage_handle * handle, member in struct:dbase_table

Completed in 634 milliseconds

<<11121314151617181920>>