Searched defs:combined (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/components/policy/core/common/
H A Dschema_registry_unittest.cc131 CombinedSchemaRegistry combined; local
132 EXPECT_TRUE(combined.IsReady());
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
184 ASSERT_EQ(1u, combined
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_sspi_win_unittest.cc16 void MatchDomainUserAfterSplit(const std::wstring& combined, argument
21 SplitDomainAndUser(combined, &actual_domain, &actual_user);
H A Dhttp_auth_sspi_win.cc392 void SplitDomainAndUser(const base::string16& combined, argument
395 // |combined| may be in the form "user" or "DOMAIN\user".
398 size_t backslash_idx = combined.find(L'\\');
401 *user = combined;
403 *domain = combined.substr(0, backslash_idx);
404 *user = combined.substr(backslash_idx + 1);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb45 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/skia/src/gpu/gl/
H A DGrGLProgram.h115 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);
H A DGrGLProgramEffects.cpp29 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[SkMatri
[all...]
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py45 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/skia/src/gpu/gl/
H A DGrGLProgram.h118 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);
H A DGrGLProgramEffects.cpp119 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[SkMatri
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_blit.c93 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/mesa3d/src/mesa/state_tracker/
H A Dst_cb_blit.c93 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/ui/gfx/
H A Dtransform_util.cc265 Transform combined = snapped * original_inv; local
267 return CheckViewportPointMapsWithinOnePixel(viewport.origin(), combined) &&
268 CheckViewportPointMapsWithinOnePixel(viewport.top_right(), combined) &&
270 combined) &&
272 combined);
/external/chromium_org/third_party/icu/source/i18n/
H A Dlocdspnm.cpp671 UnicodeString combined; local
678 separatorFormat->format(data, 2, combined, fpos, status);
680 buffer.setTo(combined);
/external/icu/icu4c/source/i18n/
H A Dlocdspnm.cpp651 UnicodeString combined; local
658 separatorFormat->format(data, 2, combined, fpos, status);
660 buffer.setTo(combined);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-parse.c3475 token_t *combined = NULL; local
3485 /* A very few single-character punctuators can be combined
3490 combined = _token_create_ival (token, LEFT_SHIFT, LEFT_SHIFT);
3492 combined = _token_create_ival (token, LESS_OR_EQUAL, LESS_OR_EQUAL);
3496 combined = _token_create_ival (token, RIGHT_SHIFT, RIGHT_SHIFT);
3498 combined = _token_create_ival (token, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
3502 combined = _token_create_ival (token, EQUAL, EQUAL);
3506 combined = _token_create_ival (token, NOT_EQUAL, NOT_EQUAL);
3510 combined = _token_create_ival (token, AND, AND);
3514 combined
[all...]
/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 615 milliseconds

12