HomeSort by relevance Sort by last modified time
    Searched defs:System (Results 276 - 300 of 1919) sorted by null

<<11121314151617181920>>

  /external/annotation-tools/asmx/src/org/objectweb/asm/
ByteVector.java 274 System.arraycopy(b, off, data, length, len);
290 System.arraycopy(data, 0, newData, 0, length);
Label.java 209 System.arraycopy(srcAndRefPositions,
297 return "L" + System.identityHashCode(this);
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapType.java 110 sb.append(":L").append(System.identityHashCode(offset));
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 126 System.arraycopy(state.following, 0, this.following, 0, state.following.length);
135 System.arraycopy(state.ruleMemo, 0, this.ruleMemo, 0, state.ruleMemo.length);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeRewriter.java 103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntArrayList.java 94 System.arraycopy(oldData, 0, elements, 0, n);
108 System.arraycopy(elements, 0, a, 0, n);
139 System.arraycopy(this.elements, 0, a.elements, 0, this.elements.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionNewtonForm.java 79 System.arraycopy(a, 0, this.a, 0, a.length);
80 System.arraycopy(c, 0, this.c, 0, c.length);
114 System.arraycopy(a, 0, out, 0, a.length);
127 System.arraycopy(c, 0, out, 0, c.length);
143 System.arraycopy(coefficients, 0, out, 0, coefficients.length);
PolynomialSplineFunction.java 116 System.arraycopy(knots, 0, this.knots, 0, n + 1);
118 System.arraycopy(polynomials, 0, this.polynomials, 0, n);
190 System.arraycopy(polynomials, 0, p, 0, n);
204 System.arraycopy(knots, 0, out, 0, n + 1);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
MersenneTwister.java 108 setSeed(System.currentTimeMillis());
164 setSeed(System.currentTimeMillis());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtDebuggee.java 115 System.out.println("Expected exeception");
121 * {@link System#arraycopy(Object, int, Object, int, int)}.
124 System.arraycopy((Object) null, 0, (Object) null, 0, 0);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DisableCollectionDebuggee.java 54 logWriter.println("--> Debuggee: BEFORE System.gc():");
81 System.gc();
82 logWriter.println("--> Debuggee: AFTER System.gc():");
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 31 private final PrintStream err = System.err;
38 System.setErr(new PrintStream(errSubstituteStream));
42 System.setErr(err);
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 63 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
82 System.arraycopy(b, off, this.buffer, this.len, len);
131 System.arraycopy(this.buffer, 0, b, 0, this.len);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 191 System.arraycopy(m_values, 0, newVector, 0, m_index + 1);
IntVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
263 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
288 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
ObjectStack.java 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
ObjectVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
StringToIntTable.java 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
StringVector.java 103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionChildIterator.java 77 System.arraycopy(tests, 0, m_nodeTests, 0, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
NameConstraints.java 120 System.arraycopy(subtrees, 0, rv, 0, rv.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 41 System.arraycopy(encodedState, 0, xBuf, 0, xBuf.length);
48 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
145 System.arraycopy(xBuf, 0, state, 0, xBufOff);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 105 System.arraycopy(iv, 0, block, 0, iv.length);
106 System.arraycopy(in, inOff, block, iv.length, inLen);
114 System.arraycopy(block, 0, buf, 0, iv.length);
115 System.arraycopy(block, 8 * i, buf, iv.length, 8);
128 System.arraycopy(buf, 0, block, 0, 8);
129 System.arraycopy(buf, 8, block, 8 * i, 8);
158 System.arraycopy(in, inOff, a, 0, iv.length);
159 System.arraycopy(in, inOff + iv.length, block, 0, inLen - iv.length);
169 System.arraycopy(a, 0, buf, 0, iv.length);
170 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8)
    [all...]
RSACoreEngine.java 105 System.arraycopy(in, inOff, block, 0, inLen);
132 System.arraycopy(output, 1, tmp, 0, tmp.length);
141 System.arraycopy(output, 0, tmp, tmp.length - output.length, output.length);
152 System.arraycopy(output, 1, tmp, 0, tmp.length);

Completed in 854 milliseconds

<<11121314151617181920>>