HomeSort by relevance Sort by last modified time
    Searched defs:combined (Results 1 - 25 of 360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit-params/src/main/java/junitparams/custom/combined/
CombinedParameters.java 1 package junitparams.custom.combined;
CombinedParametersProvider.java 1 package junitparams.custom.combined;
Cartesian.java 1 package junitparams.custom.combined;
  /external/skia/src/gpu/glsl/
GrGLSLPrimitiveProcessor.cpp 17 SkMatrix combined; local
18 combined.setConcat(coordTransform.getMatrix(), localMatrix);
21 combined.postIDiv(coordTransform.texture()->width(), coordTransform.texture()->height());
25 // combined.postScale(1,-1);
26 // combined.postTranslate(0,1);
27 combined.set(SkMatrix::kMSkewY,
28 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
29 combined.set(SkMatrix::kMScaleY,
30 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY])
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
JDKRandomGenerator.java 43 long combined = 0l; local
45 combined = combined * prime + s;
47 setSeed(combined);
AbstractRandomGenerator.java 75 long combined = 0l; local
77 combined = combined * prime + s;
79 setSeed(combined);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ParameterSet.java 68 ImmutableSetMultimap.Builder<String, String> combined = ImmutableSetMultimap.builder(); local
78 combined.putAll(name, values);
83 return combined.orderKeysBy(Ordering.natural()).build();
  /external/junit-params/src/test/java/junitparams/custom/combined/
CartesianTest.java 1 package junitparams.custom.combined;
CombinedParametersProviderTest.java 1 package junitparams.custom.combined;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 52 String[] combined = new String[extraFragments.length + graphicsFragments.length]; local
53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length);
54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
58 currentIndex, combined);
  /cts/
CtsCoverage.mk 34 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html
35 cts-combined-xml-coverage-report := $(coverage_out)/combined-coverage.xml
58 $(cts-combined-coverage-report): PRIVATE_TEST_CASES := $(foreach c, $(cts_verifier_apk) $(COMPATIBILITY_TESTCASES_OUT_cts), $(c))
59 $(cts-combined-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe)
60 $(cts-combined-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe)
61 $(cts-combined-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description)
62 $(cts-combined-coverage-report) : $(android_cts_zip) $(cts_verifier_apk) $(cts_api_coverage_dependencies) | $(ACP)
63 $(call generate-coverage-report,"CTS Combined API Coverage Report",
    [all...]
  /external/skia/src/gpu/gl/
GrGLPathRendering.h 109 SkMatrix combined; local
111 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
115 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
119 combined.preConcat(fViewMatrix);
120 GrGLSLGetMatrix<Size>(destMatrix, combined);
  /external/guava/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java 154 StackTraceElement[] combined = ObjectArrays.concat(cause.getStackTrace(), local
156 cause.setStackTrace(combined);
  /external/guice/core/test/com/google/inject/
ModulesTest.java 33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3)); local
34 Injector injector = Guice.createInjector(combined);
  /external/libchrome/base/trace_event/
trace_sampling_thread.cc 53 const char* const combined = local
57 ExtractCategoryAndName(combined, &category_group, &name);
84 void TraceSamplingThread::ExtractCategoryAndName(const char* combined,
87 *category = combined;
88 *name = &combined[strlen(combined) + 1];
  /system/keymaster/
authorization_set_test.cpp 412 AuthorizationSet combined; local
413 EXPECT_TRUE(combined.push_back(set1));
414 EXPECT_TRUE(combined.push_back(set2));
415 EXPECT_EQ(set1.size() + set2.size(), combined.size());
416 EXPECT_EQ(12U, combined.indirect_size());
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 45 GRAMMAR_TYPES = %w(lexer parser tree combined)
89 elsif combined? then base = name + 'Lexer'
101 elsif combined? then base = name + 'Parser'
116 @type == 'combined' || @type == 'lexer'
120 @type == 'combined' || @type == 'parser'
137 def combined?
138 @type == "combined"
264 @type = $1 || 'combined'
  /external/harfbuzz_ng/src/
gen-indic-table.py 67 combined = {} variable
70 if i == 2 and not u in combined:
72 if not u in combined:
73 combined[u] = list (defaults)
74 combined[u][i] = v
75 combined = {k:v for k,v in combined.items() if k in ALLOWED_SINGLES or v[2] in ALLOWED_BLOCKS} variable
76 data = combined
77 del combined
gen-use-table.py 53 combined = {} variable
56 if i >= 2 and not u in combined:
58 if not u in combined:
59 combined[u] = list (defaults)
60 combined[u][i] = v
61 combined = {k:v for k,v in combined.items() if v[3] not in BLACKLISTED_BLOCKS} variable
62 data = combined
63 del combined
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 93 boolean combined; local
100 combined =
104 if ((mask & GL_DEPTH_BUFFER_BIT) || combined) {
105 /* resolve depth and, if combined and requested, stencil as well */
110 if (combined && (mask & GL_STENCIL_BUFFER_BIT)) {
295 /* Blitting depth and stencil values between combined
  /art/runtime/
class_table.cc 265 ClassSet combined; local
270 combined.Insert(root);
273 const size_t ret = combined.WriteToMemory(ptr);
intern_table.cc 388 UnorderedSet combined; local
390 table_to_write = &combined;
393 combined.Insert(string);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 55 Bitmap combined = delta(bitmapWithoutFilter, bitmapWithFilter); local
56 verifyUnderline(combined);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 126 final String combined; local
127 // We need to show company and title in a combined string. However, if the
131 combined = displayNameIsOrganization ? null : title;
134 combined = displayNameIsOrganization ? null : company;
137 combined = title;
139 combined = context.getString(
146 if (!TextUtils.isEmpty(combined)) {
147 return combined;
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 69 * Collection of {@link NetworkStatsHistory}, stored based on combined key of
198 final NetworkStatsHistory combined = new NetworkStatsHistory( local
202 if (start == end) return combined;
209 combined.recordHistory(value, start, end);
212 return combined;
514 // only migrate combined TAG_NONE history

Completed in 2874 milliseconds

1 2 3 4 5 6 7 8 91011>>