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

1 2 3 4

  /external/chromium_org/components/policy/core/common/
schema_registry_unittest.cc 131 CombinedSchemaRegistry combined; local
132 EXPECT_TRUE(combined.IsReady());
137 TEST(SchemaRegistryTest, Combined) {
145 CombinedSchemaRegistry combined; local
146 combined.AddObserver(&observer);
156 combined.Track(registry1.get());
161 combined.Track(registry2.get());
164 // Adding the same component to the combined registry itself triggers
167 combined.RegisterComponent(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "abc"),
177 // If the same component is published in 2 sub-registries then the combined
    [all...]
  /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 36 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html
59 $(cts-combined-coverage-report): PRIVATE_TEST_CASES_APKS := $(cts_coverage_test_cases_dependencies)
60 $(cts-combined-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe)
61 $(cts-combined-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe)
62 $(cts-combined-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description)
63 $(cts-combined-coverage-report) : $(cts_coverage_test_cases_dependencies) $(cts_api_coverage_dependencies) | $(ACP)
64 $(call generate-coverage-report,"CTS Combined API Coverage Report",\
73 .PHONY: cts-combined-coverage
74 cts-combined-coverage : $(cts-combined-coverage-report
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java 154 StackTraceElement[] combined = ObjectArrays.concat(cause.getStackTrace(), local
156 cause.setStackTrace(combined);
  /system/keymaster/
authorization_set_test.cpp 426 AuthorizationSet combined; local
427 EXPECT_TRUE(combined.push_back(set1));
428 EXPECT_TRUE(combined.push_back(set2));
429 EXPECT_EQ(array_length(params) * 2, combined.size());
430 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/chromium_org/third_party/mesa/src/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
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.h 115 SkMatrix combined; local
117 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
121 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
125 combined.preConcat(fViewMatrix);
126 GrGLGetMatrix<Size>(destMatrix, combined);
GrGLProgramEffects.cpp 29 SkMatrix combined; local
35 combined.setConcat(coordTransform.getMatrix(), ccm);
37 combined = coordTransform.getMatrix();
40 // combined.postScale(1,-1);
41 // combined.postTranslate(0,1);
42 combined.set(SkMatrix::kMSkewY,
43 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
44 combined.set(SkMatrix::kMScaleY,
45 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY])
    [all...]
  /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
  /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
  /external/skia/src/gpu/gl/
GrGLProgram.h 118 SkMatrix combined; local
120 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
124 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
128 combined.preConcat(fViewMatrix);
129 GrGLGetMatrix<Size>(destMatrix, combined);
GrGLProgramEffects.cpp 119 SkMatrix combined; local
122 combined.setConcat(coordTransform.getMatrix(), drawEffect.getCoordChangeMatrix());
124 combined = coordTransform.getMatrix();
127 // combined.postScale(1,-1);
128 // combined.postTranslate(0,1);
129 combined.set(SkMatrix::kMSkewY,
130 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
131 combined.set(SkMatrix::kMScaleY,
132 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY])
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 52 Bitmap combined = delta(bitmapWithoutFilter, bitmapWithFilter); local
53 assertUnderline(combined);
  /external/chromium_org/ui/gfx/
transform_util.cc 265 Transform combined = snapped * original_inv; local
267 return CheckViewportPointMapsWithinOnePixel(viewport.origin(), combined) &&
268 CheckViewportPointMapsWithinOnePixel(viewport.top_right(), combined) &&
270 combined) &&
272 combined);
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 204 String combined = base.substring(0, base.lastIndexOf('/') + 1) + path; local
205 return UrlUtils.canonicalizePath(combined, true);
  /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 60 * Collection of {@link NetworkStatsHistory}, stored based on combined key of
149 final NetworkStatsHistory combined = new NetworkStatsHistory( local
157 combined.recordHistory(value, start, end);
160 return combined;
448 // only migrate combined TAG_NONE history
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 117 ScriptField_TestScripts_s.Item[] combined; local
118 combined = new ScriptField_TestScripts_s.Item[newTests.length + mIndividualTests.length];
119 System.arraycopy(mIndividualTests, 0, combined, 0, mIndividualTests.length);
120 System.arraycopy(newTests, 0, combined, mIndividualTests.length, newTests.length);
121 mIndividualTests = combined;
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 333 Object[] combined = (Object[]) Array.newInstance( local
335 System.arraycopy(original, 0, combined, 0, original.length);
336 System.arraycopy(extraElements, 0, combined, original.length, extraElements.length);
337 jlrField.set(instance, combined);
400 IOException[] combined = local
403 suppressedExceptions.toArray(combined);
404 System.arraycopy(dexElementsSuppressedExceptions, 0, combined,
406 dexElementsSuppressedExceptions = combined;
  /external/chromium_org/third_party/icu/source/i18n/
locdspnm.cpp 671 UnicodeString combined; local
678 separatorFormat->format(data, 2, combined, fpos, status);
680 buffer.setTo(combined);
    [all...]
  /external/icu/icu4c/source/i18n/
locdspnm.cpp 651 UnicodeString combined; local
658 separatorFormat->format(data, 2, combined, fpos, status);
660 buffer.setTo(combined);
    [all...]
  /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/sdk/current/support/multidex/library/libs/
android-support-multidex.jar 

Completed in 1645 milliseconds

1 2 3 4