/cts/tests/tests/webkitsecurity/assets/ |
input-box-text-fragment-combine-text-crash.html | 5 input { -webkit-text-combine:horizontal; }
|
/external/webrtc/src/system_wrappers/source/ |
data_log_unittest.cc | 118 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0); 121 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0); 126 DataLog::Combine("a proper table", 1)); 131 DataLog::AddTable(DataLog::Combine("table", 1)); 132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1); 133 DataLog::AddColumn(DataLog::Combine("table", 1), "timestamp", 1); 134 DataLog::AddColumn(DataLog::Combine("table", 1), "size", 5); 137 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", 139 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", 141 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5) [all...] |
data_log_unittest_disabled.cc | 39 std::string table_name = DataLog::Combine("table", 1); 49 // Don't use the table name we would get from Combine on a disabled DataLog.
|
/dalvik/dx/tests/043-dex-two-classes/ |
info.txt | 4 an attempt to combine two classes into a .dex file succeeds.
|
/external/clang/test/SemaCXX/ |
PR9460.cpp | 13 basic_string<char> struct{ // expected-error {{cannot combine with previous 'type-name' declaration specifier}}
|
auto-cxx0x.cpp | 4 int auto b; // expected-error{{cannot combine with previous 'int' declaration specifier}}
|
/external/stlport/test/unit/ |
locale_test.cpp | 236 void LocaleTest::combine() function in class:LocaleTest 244 loc.combine<messages<char> >(loc); 255 loc.combine<dummy_facet>(loc); 287 //We are going to combine money facets as all formats are different. 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2); 291 loc = loc.combine<moneypunct<char, false> >(loc2); 292 loc = loc.combine<money_put<char> >(loc2); 293 loc = loc.combine<money_get<char> >(loc2); 305 //We check that resulting locale has not wrongly acquire loc1 facets that hasn't been combine: 306 locale loc = loc2.combine<numpunct<char> >(loc1) [all...] |
locale_test.h | 55 CPPUNIT_TEST(combine); 74 void combine();
|
/ndk/tests/device/test-gnustl-full/unit/ |
locale_test.cpp | 236 void LocaleTest::combine() function in class:LocaleTest 244 loc.combine<messages<char> >(loc); 255 loc.combine<dummy_facet>(loc); 287 //We are going to combine money facets as all formats are different. 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2); 291 loc = loc.combine<moneypunct<char, false> >(loc2); 292 loc = loc.combine<money_put<char> >(loc2); 293 loc = loc.combine<money_get<char> >(loc2); 305 //We check that resulting locale has not wrongly acquire loc1 facets that hasn't been combine: 306 locale loc = loc2.combine<numpunct<char> >(loc1) [all...] |
locale_test.h | 55 CPPUNIT_TEST(combine); 74 void combine();
|
/ndk/tests/device/test-stlport/unit/ |
locale_test.cpp | 236 void LocaleTest::combine() function in class:LocaleTest 244 loc.combine<messages<char> >(loc); 255 loc.combine<dummy_facet>(loc); 287 //We are going to combine money facets as all formats are different. 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2); 291 loc = loc.combine<moneypunct<char, false> >(loc2); 292 loc = loc.combine<money_put<char> >(loc2); 293 loc = loc.combine<money_get<char> >(loc2); 305 //We check that resulting locale has not wrongly acquire loc1 facets that hasn't been combine: 306 locale loc = loc2.combine<numpunct<char> >(loc1) [all...] |
locale_test.h | 55 CPPUNIT_TEST(combine); 74 void combine();
|
/external/clang/test/Parser/ |
typeof.c | 8 int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration specifier}} 10 int int ttt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
|
check-syntax-1.m | 3 int @interface bla ; // expected-error {{cannot combine with previous 'int' declaration specifier}}
|
/external/skia/src/core/ |
SkFilterProc.cpp | 54 #define COMBINE(lo, hi) (((lo) & ~0xFF00) | (((hi) & ~0xFF00) << 8)) 64 return COMBINE(lo, hi); 69 return COMBINE(lo, hi); 74 return COMBINE(lo, hi); 80 return COMBINE(lo, hi); 85 return COMBINE(lo, hi); 90 return COMBINE(lo, hi); 95 return COMBINE(lo, hi); 101 return COMBINE(lo, hi); 106 return COMBINE(lo, hi) [all...] |
/external/llvm/test/Transforms/CodeExtractor/ |
2004-03-18-InvokeHandling.ll | 11 i32 61, label %combine 12 i32 33, label %combine 13 i32 94, label %combine 14 i32 37, label %combine 15 i32 47, label %combine 16 i32 42, label %combine 17 i32 62, label %combine 18 i32 60, label %combine 19 i32 58, label %combine 20 i32 124, label %combine [all...] |
/external/guava/guava/src/com/google/common/collect/ |
BstCountBasedBalancePolicies.java | 44 * Returns a balance policy that does no balancing or the bare minimum (for {@code combine}). 58 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) { method in class:BstCountBasedBalancePolicies 65 left, left.childOrNull(LEFT), combine(nodeFactory, left.childOrNull(RIGHT), right)); 67 return nodeFactory.createNode(right, combine(nodeFactory, left, right.childOrNull(LEFT)), 77 * combine} takes {@code O(log n)} time. 133 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) { 156 * and performs a full rebalancing as necessary. Both {@code balance} and {@code combine} take 190 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) { 199 N resultLeft = combine(nodeFactory, left, right.childOrNull(LEFT)); 203 N resultRight = combine(nodeFactory, left.childOrNull(RIGHT), right) [all...] |
/external/webkit/Source/WebCore/gyp/ |
streamline-inspector-source.sh | 8 # Combine all script resources in the inspector.html file. 9 "$SRCROOT/../inspector/combine-javascript-resources.pl" --input-html "${SRCROOT}/../inspector/front-end/inspector.html" --generated-scripts-dir ${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore --output-dir "${DERIVED_FILE_DIR}/WebCore" --output-script-name inspector.js
|
/libcore/luni/src/main/java/org/apache/harmony/kernel/vm/ |
StringUtils.java | 31 * Combine a list of strings in an <code>Object[]</code> into a single 34 * @param list non-null; the strings to combine
|
/external/antlr/antlr-3.4/runtime/CSharp2/ |
antlr3.runtime.net.common.inc | 36 value="${path::combine(nant::get-base-directory(), 'lib')}" 40 value="${path::combine(lib.dir,framework::get-family(framework::get-target-framework()))}" 46 value="${path::combine(lib.family.dir, version::to-string(framework::get-version(framework::get-target-framework())))}" 51 value="${path::combine(lib.family.dir, framework::get-version(framework::get-target-framework()))}" 56 value="${path::combine(lib.framework.dir, 'nunit.framework.dll')}" />
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/ |
SubjectDomainCombinerTest.java | 66 * @tests javax.security.auth.SubjectDomainCombiner#combine(ProtectionDomain[], 86 assertNull(combiner.combine(null, null)); 105 pd = combiner.combine(new ProtectionDomain[] { domain }, null); 116 pd = combiner.combine(null, new ProtectionDomain[] { domain }); 120 assertNotNull(new SubjectDomainCombiner(new Subject()).combine(new ProtectionDomain[] {null}, new ProtectionDomain[] {null}));
|
/external/llvm/test/CodeGen/ARM/ |
2011-09-28-CMovCombineBug.ll | 4 ; ARM target specific dag combine created a cycle in DAG.
|
2012-03-13-DAGCombineBug.ll | 4 ; DAG combine incorrectly optimize (i32 vextract (v4i16 load $addr), c) to
|
/external/llvm/test/CodeGen/Hexagon/ |
combine.ll | 3 ; CHECK: combine(r{{[0-9]+}}, r{{[0-9]+}})
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/ |
PropertyCategoryProviders.java | 62 public static PropertyCategoryProvider combine(final PropertyCategoryProvider... providers) { method in class:PropertyCategoryProviders 76 private static final PropertyCategoryProvider DEF = combine(forcedByUser(), fromProperty());
|