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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/glsl/
GrGLSLPrimitiveProcessor.cpp 17 SkMatrix combined; local
20 combined.setConcat(coordTransform.getMatrix(), localMatrix);
22 combined = coordTransform.getMatrix();
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();
  /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) $(CTS_TESTCASES_OUT), $(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 98 SkMatrix combined; local
100 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
104 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
108 combined.preConcat(fViewMatrix);
109 GrGLSLGetMatrix<Size>(destMatrix, combined);
  /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/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 50 const char* const combined = local
54 ExtractCategoryAndName(combined, &category_group, &name);
80 void TraceSamplingThread::ExtractCategoryAndName(const char* combined,
83 *category = combined;
84 *name = &combined[strlen(combined) + 1];
  /art/runtime/
class_table.cc 163 ClassSet combined; local
168 combined.Insert(root);
171 const size_t ret = combined.WriteToMemory(ptr);
intern_table.cc 417 UnorderedSet combined; local
419 table_to_write = &combined;
422 combined.Insert(string);
  /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 45 combined = {} variable
48 if i == 2 and not u in combined:
50 if not u in combined:
51 combined[u] = list (defaults)
52 combined[u][i] = v
53 combined = {k:v for k,v in combined.items() if v[2] not in BLACKLISTED_BLOCKS} variable
54 data = combined
55 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
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 52 Bitmap combined = delta(bitmapWithoutFilter, bitmapWithFilter); local
53 assertUnderline(combined);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 128 final String combined; local
129 // We need to show company and title in a combined string. However, if the
133 combined = displayNameIsOrganization ? null : title;
136 combined = displayNameIsOrganization ? null : company;
139 combined = title;
141 combined = context.getString(
148 if (!TextUtils.isEmpty(combined)) {
149 return combined;
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 63 * Collection of {@link NetworkStatsHistory}, stored based on combined key of
192 final NetworkStatsHistory combined = new NetworkStatsHistory( local
196 if (start == end) return combined;
203 combined.recordHistory(value, start, end);
206 return combined;
507 // only migrate combined TAG_NONE history
  /external/icu/icu4c/source/i18n/
locdspnm.cpp 665 UnicodeString combined; local
672 separatorFormat->format(data, 2, combined, fpos, status);
674 buffer.setTo(combined);
    [all...]
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 334 Object[] combined = (Object[]) Array.newInstance( local
336 System.arraycopy(original, 0, combined, 0, original.length);
337 System.arraycopy(extraElements, 0, combined, original.length, extraElements.length);
338 jlrField.set(instance, combined);
437 IOException[] combined = local
440 suppressedExceptions.toArray(combined);
441 System.arraycopy(dexElementsSuppressedExceptions, 0, combined,
443 dexElementsSuppressedExceptions = combined;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 283 * @return the combined image
288 Image combined = mErrorIcons.get(image); local
289 if (combined != null) {
290 return combined;
296 Image combined = new ErrorImageComposite(image, false).createImage(); local
297 mErrorIcons.put(image, combined);
299 return combined;
308 * @return the combined image
313 Image combined = mWarningIcons.get(image); local
314 if (combined != null)
321 Image combined = new ErrorImageComposite(image, true).createImage(); local
    [all...]
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 242 * to combined output character.
357 * key is a "dead key" that should be combined with another to
485 * @return The combined character, or 0 if the characters cannot be combined.
501 int combined; local
503 combined = sDeadKeyCache.get(combination, -1);
504 if (combined == -1) {
509 combined = result.codePointCount(0, result.length()) == 1
511 sDeadKeyCache.put(combination, combined);
514 return combined;
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jaxb-inheritance-plugin/1/
jaxb-inheritance-plugin-1.jar 

Completed in 2018 milliseconds

1 2 3 4 5 6 7 8 91011>>