HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 551 - 575 of 3150) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DateTimeStyleSet.java 49 set(field, get(field) | DateFormat.RELATIVE); method
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
UnicodePropertySymbolTable.java 148 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.addAll(prop.getSet(other))
243 public PatternMatcher set(String pattern) { method in class:UnicodePropertySymbolTable.ComparisonMatcher
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 73 Array.set(a, i, values[i].getValue(cl, cp, method));
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 32 public void set(long v) { value = v; } method in class:IntConst
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ScopedHandler.java 113 __outerScope.set(this);
123 __outerScope.set(null);
  /external/jetty/src/java/org/eclipse/jetty/util/statistic/
SampleStatistic.java 53 _max.set(0);
54 _total.set(0);
55 _count.set(0);
56 _totalVariance100.set(0);
59 public void set(final long sample) method in class:SampleStatistic
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
CurveAndSurfaceMath.java 36 store.set(Vector3f.ZERO);
67 store.set(Vector3f.ZERO);
101 knots.set(i, Float.valueOf(value));
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ImageBasedHeightMap.java 148 store.set(byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()));
156 store.set(r,g,b,a);
160 store.set(byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()), 1);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AMultipleCommand.java 87 i.set((PCommand) newChild);
ASequenceExpression.java 87 i.set((PExpression) newChild);
  /external/ksoap2/kobjects/org/ksoap2/kobjects/isodate/
IsoDate.java 80 c.set(
83 c.set(
88 c.set(
93 c.set(Calendar.HOUR_OF_DAY, 0);
94 c.set(Calendar.MINUTE, 0);
95 c.set(Calendar.SECOND, 0);
96 c.set(Calendar.MILLISECOND, 0);
104 c.set(
108 c.set(
111 c.set(
    [all...]
  /external/libxml2/include/libxml/
xlink.h 68 * a set of callback registered at parsing time.
132 * This is the prototype for a extended link set detection callback.
145 * This is the structure containing a set of Links detection callbacks.
155 xlinkExtendedLinkSetFunk set; member in struct:_xlinkHandler
169 * Routines to set/get the default handlers.
  /external/lldb/include/lldb/Utility/
CleanUp.h 23 // - the current value will be cleaned up when a new value is set using
24 // set(T value) as long as the current value hasn't already been cleaned.
121 set (const value_type value) function in class:lldb_utility::CleanUp
125 // Now set the new value and mark our callback as not called
254 set (const value_type value) function in class:lldb_utility::CleanUp2
258 // Now set the new value and mark our callback as not called
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugAranges.cpp 47 void operator() (const DWARFDebugArangeSet& set)
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();
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 35 Column &set(TrimKind Value) { function in struct:__anon15470::Column
40 Column &set(AlignmentKind Value) { function in struct:__anon15470::Column
84 return Column(Str, Width).set(Value);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 26 import java.util.Set;
38 * calling the {@link #set(String, Object)} method will throw an <code>AssertFailedException</code>.
65 * calling the {@link #set(String, Object)} method will throw an
112 public void set(String key, Object value) { method in class:InvocationRecord
131 * Returns a Set view of the keys for the data stored in this object.
132 * Changes to the returned Set have no effect on the data stored within this object
135 * @return the Set of keys for the data stored within this object
137 public Set keySet() {
145 * explicitly set to null for the key. The containsKey operation may be used to
162 * explicitly set to null for the key. The containsKey operation may be used to
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 23 import java.util.Set;
38 * calling the {@link #set(String, Object)} method will throw an <code>AssertFailedException</code>.
65 * calling the {@link #set(String, Object)} method will throw an
112 public void set(String key, Object value) { method in class:InvocationRecord
132 * Returns a Set view of the keys for the data stored in this object.
133 * Changes to the returned Set have no effect on the data stored within this object
135 * @return the Set of keys for the data stored within this object
137 public Set keySet() {
145 * explicitly set to null for the key. The containsKey operation may be used to
163 * explicitly set to null for the key. The containsKey operation may be used to
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
FileRetrCommandHandler.java 40 * An exception is thrown if the <code>file</code> property has not been set or if the specified
80 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
103 * Set the path of the file whose contents should be returned when this command is
PortCommandHandler.java 68 invocationRecord.set(HOST_KEY, host);
69 invocationRecord.set(PORT_KEY, new Integer(port));
  /external/mockito/src/org/mockito/internal/progress/
ThreadSafeMockingProgress.java 23 mockingProgress.set(new MockingProgressImpl());
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
SessionExpires.java 99 this.parameters.set(REFRESHER,refresher);
  /external/nist-sip/java/gov/nist/javax/sip/message/
HeaderIterator.java 73 public void set(Object header) { method in class:HeaderIterator
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTestData.java 51 private void set(String name, String value) { method in class:WebPlatformUrlTestData
105 element.set(nameAndValue[0], unescape(nameAndValue[1]));
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnmodifiableLazyStringList.java 77 public void set(int index, ByteString element) { method in class:UnmodifiableLazyStringList
97 public void set(int index, byte[] element) { method in class:UnmodifiableLazyStringList
147 public void set(String o) { method
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 52 public void set(float current, float target, float acceleration) { method in class:Interpolator

Completed in 227 milliseconds

<<21222324252627282930>>