HomeSort by relevance Sort by last modified time
    Searched refs:precomputed (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
CachedSupplier.java 105 public synchronized void precomputed(T t) { method in class:CachedSupplier
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 110 reallyTestEmpty(matcher.precomputed());
158 reallyTestNoMatches(matcher.precomputed(), s);
159 reallyTestAllMatches(matcher.negate().precomputed(), s);
160 reallyTestAllMatches(matcher.precomputed().negate(), s);
185 reallyTestAllMatches(matcher.precomputed(), s);
186 reallyTestNoMatches(matcher.negate().precomputed(), s);
187 reallyTestNoMatches(matcher.precomputed().negate(), s);
260 reallyTestOneCharMatch(matcher.precomputed(), s);
261 reallyTestOneCharNoMatch(matcher.negate().precomputed(), s);
262 reallyTestOneCharNoMatch(matcher.precomputed().negate(), s)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 173 reallyTestEmpty(matcher.precomputed());
227 reallyTestNoMatches(matcher.precomputed(), s);
228 reallyTestAllMatches(matcher.negate().precomputed(), s);
229 reallyTestAllMatches(matcher.precomputed().negate(), s);
254 reallyTestAllMatches(matcher.precomputed(), s);
255 reallyTestNoMatches(matcher.negate().precomputed(), s);
256 reallyTestNoMatches(matcher.precomputed().negate(), s);
329 reallyTestOneCharMatch(matcher.precomputed(), s);
330 reallyTestOneCharNoMatch(matcher.negate().precomputed(), s);
331 reallyTestOneCharNoMatch(matcher.precomputed().negate(), s)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 252 PrecomputedText precomputed = local
264 mTextView.setText(precomputed);
268 mTextView.setText(precomputed);
277 PrecomputedText precomputed = local
290 mTextView.setText(precomputed, BufferType.SPANNABLE);
294 mTextView.setText(precomputed, BufferType.SPANNABLE);
303 PrecomputedText precomputed = local
315 mTextView.setText(precomputed, BufferType.EDITABLE);
319 mTextView.setText(precomputed, BufferType.EDITABLE);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 238 anyOf(" \r\n\t\u3000\u00A0\u2007\u202F").precomputed();
303 @Override public CharMatcher precomputed() {
369 @Override public CharMatcher precomputed() {
401 @Override public CharMatcher precomputed() { method in class:CharMatcher
452 @Override public CharMatcher precomputed() {
504 @Override public CharMatcher precomputed() {
635 * precomputed matcher is queried many thousands of times.
638 * it's unclear whether a precomputed matcher is faster, but it certainly
642 public CharMatcher precomputed() {
647 * This is the actual implementation of {@link #precomputed}, but we bounc
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/base/
CharMatcherBenchmark.java 51 // Whether to use a precomputed CharMatcher
52 @Param("true") boolean precomputed; field in class:CharMatcherBenchmark
73 this.matcher = precomputed ? config.matcher.precomputed() : config.matcher;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
lca.go 12 // in O(n lg n) precomputed space and O(1) time per query.
113 // on the tour from p1 to p2. We've precomputed minimum
115 // Combine the right two precomputed values to get the answer.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
lca.go 12 // in O(n lg n) precomputed space and O(1) time per query.
113 // on the tour from p1 to p2. We've precomputed minimum
115 // Combine the right two precomputed values to get the answer.
  /external/jemalloc/include/jemalloc/internal/
smoothstep.sh 65 * This header defines a precomputed table based on the smoothstep family of
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/utils/
CachedSupplierTest.java 52 cs.precomputed("bar");
  /frameworks/support/compat/src/main/java/androidx/core/text/
PrecomputedTextCompat.java 402 * @param params parameters that define how text will be precomputed
465 private PrecomputedTextCompat(@NonNull PrecomputedText precomputed, @NonNull Params params) {
466 mText = precomputed;
469 mWrapped = precomputed;
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
ManifestGenerationExtension.java 192 this.manifestBytes.precomputed(manifestBytes);
  /prebuilts/go/darwin-x86/src/encoding/json/
example_test.go 222 // This example uses RawMessage to use a precomputed JSON during marshal.
224 h := json.RawMessage(`{"precomputed": true}`)
240 // "precomputed": true
  /prebuilts/go/linux-x86/src/encoding/json/
example_test.go 222 // This example uses RawMessage to use a precomputed JSON during marshal.
224 h := json.RawMessage(`{"precomputed": true}`)
240 // "precomputed": true
  /cts/tests/tests/text/src/android/text/cts/
BoringLayoutTest.java 440 final PrecomputedText precomputed = measuredTextParam.getPrecomputedText(text); local
442 precomputed, layoutPaint);
444 precomputed, layoutPaint, metricsWithPrecomputed.width, Alignment.ALIGN_NORMAL,
  /external/boringssl/src/ssl/test/runner/ed25519/internal/edwards25519/
const.go 30 // bi contains precomputed multiples of the base-point. See the Ed25519 paper
75 // base contains precomputed multiples of the base-point. See the Ed25519 paper
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 493 // TODO(user): is it potentially worth just going ahead and building a precomputed matcher?
758 * worthwhile only if the precomputed matcher is queried many thousands of times.
761 * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
764 public CharMatcher precomputed() {
781 * This is the actual implementation of {@link #precomputed}, but we bounce calls through a
823 public final CharMatcher precomputed() {
843 public final CharMatcher precomputed() {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 478 // TODO(user): is it potentially worth just going ahead and building a precomputed matcher?
697 * worthwhile only if the precomputed matcher is queried many thousands of times.
700 * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
703 public CharMatcher precomputed() {
732 public final CharMatcher precomputed() {
752 public final CharMatcher precomputed() {
    [all...]
  /frameworks/base/core/java/android/text/
StaticLayout.java 657 PrecomputedText precomputed = (PrecomputedText) source;
658 if (precomputed.canUseMeasuredResult(bufStart, bufEnd, textDir, paint,
661 paragraphInfo = precomputed.getParagraphInfo();
    [all...]
DynamicLayout.java 708 PrecomputedText precomputed = (PrecomputedText) text; local
709 precomputed.getBounds(start, end, mTempRect);
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p256_amd64.go 124 // table will store precomputed powers of x. The four words at index
520 // precomp is a table of precomputed points that stores powers of p
p256_s390x.go 121 // table will store precomputed powers of x. The 32 bytes at index
463 // precomp is a table of precomputed points that stores powers of p
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p256_amd64.go 124 // table will store precomputed powers of x. The four words at index
520 // precomp is a table of precomputed points that stores powers of p
p256_s390x.go 121 // table will store precomputed powers of x. The 32 bytes at index
463 // precomp is a table of precomputed points that stores powers of p
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_amd64.go 106 // Combining the results requires precomputed tables, so we must choose a

Completed in 1228 milliseconds

1 2 3 4 5 6 7 8 9