/external/guava/guava-tests/test/com/google/common/collect/ |
HashMultimapTest.java | 28 @Override protected Multimap<String, Integer> create() { method in class:HashMultimapTest 29 return HashMultimap.create(); 37 HashMultimap<String, Integer> multimap = HashMultimap.create(); 47 HashMultimap<String, Integer> copy = HashMultimap.create(multimap); 53 HashMultimap<String, Integer> multimap = HashMultimap.create(20, 15); 63 HashMultimap.create(-20, 15); 68 HashMultimap.create(20, -15); 74 Multimap<String, Integer> setMultimap = HashMultimap.create(); 75 Multimap<String, Integer> listMultimap = ArrayListMultimap.create();
|
AbstractTableReadTest.java | 48 create(Object... data); method in class:AbstractTableReadTest 56 table = create(); 60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 73 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 81 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 89 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 98 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 112 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 118 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 123 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c') [all...] |
HashBasedTableTest.java | 32 @Override protected Table<String, Integer, Character> create( method in class:HashBasedTableTest 34 Table<String, Integer, Character> table = HashBasedTable.create(); 43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); 47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); 51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); 55 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); 62 HashBasedTable.create(100, -5); 67 HashBasedTable.create(-5, 20); 74 = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 75 Table<String, Integer, Character> copy = HashBasedTable.create(original) [all...] |
InverseBiMapTest.java | 28 @Override protected BiMap<Integer, String> create() { method in class:InverseBiMapTest 29 BiMap<String, Integer> inverse = HashBiMap.create();
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSComputedStyleDeclaration.cpp | 36 return CSSPrimitiveValue::create(0.0f, CSSPrimitiveValue::CSS_DEG); 38 return CSSPrimitiveValue::create(90.0f, CSSPrimitiveValue::CSS_DEG); 40 return CSSPrimitiveValue::create(180.0f, CSSPrimitiveValue::CSS_DEG); 42 return CSSPrimitiveValue::create(270.0f, CSSPrimitiveValue::CSS_DEG); 73 list->append(CSSPrimitiveValue::create(paintOrderType)); 89 values->append(CSSPrimitiveValue::create(url, CSSPrimitiveValue::CSS_URI)); 91 values->append(CSSPrimitiveValue::create(CSSValueNone)); 99 return CSSPrimitiveValue::create(CSSValueNone); 129 return CSSPrimitiveValue::create(svgStyle.clipRule()); 131 return CSSPrimitiveValue::create(svgStyle.floodOpacity(), CSSPrimitiveValue::CSS_NUMBER) [all...] |
/external/smack/src/com/kenai/jbosh/ |
TerminalBindingCondition.java | 45 create("host-gone", "The target domain specified in the 'to' " 50 create("host-unknown", "The target domain specified in the 'to' " 55 create("improper-addressing", "The initialization element lacks a " 60 create("internal-server-error", "The connection manager has " 72 create("other-request", "Another request being processed at the " 82 create("remote-connection-failed", "The connection manager was " 87 create("remote-stream-error", "Encapsulated transport protocol " 91 create("see-other-uri", "The connection manager does not operate " 97 create("system-shutdown", "The connection manager is being shut " 102 create("undefined-condition", "Unknown or undefined error 128 private static TerminalBindingCondition create( method in class:TerminalBindingCondition [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/github_file_system/ |
expected_read.txt | 8 chrome.app.window.create('main.html',
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedRect.h | 41 static PassRefPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName) function in class:blink::SVGAnimatedRect 48 : SVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
|
SVGAnimatedIntegerOptionalInteger.cpp | 39 SVGIntegerOptionalInteger::create(SVGInteger::create(initialFirstValue), SVGInteger::create(initialSecondValue))) 40 , m_firstInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->firstInteger())) 41 , m_secondInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->secondInteger()))
|
SVGAnimatedNumberOptionalNumber.cpp | 28 SVGNumberOptionalNumber::create(SVGNumber::create(initialFirstValue), SVGNumber::create(initialSecondValue))) 29 , m_firstNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->firstNumber())) 30 , m_secondNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->secondNumber()))
|
SVGComponentTransferFunctionElement.cpp | 47 , m_tableValues(SVGAnimatedNumberList::create(this, SVGNames::tableValuesAttr, SVGNumberList::create())) 48 , m_slope(SVGAnimatedNumber::create(this, SVGNames::slopeAttr, SVGNumber::create(1))) 49 , m_intercept(SVGAnimatedNumber::create(this, SVGNames::interceptAttr, SVGNumber::create())) 50 , m_amplitude(SVGAnimatedNumber::create(this, SVGNames::amplitudeAttr, SVGNumber::create(1))) 51 , m_exponent(SVGAnimatedNumber::create(this, SVGNames::exponentAttr, SVGNumber::create(1)) [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
Response.h | 28 static Response* create(ExecutionContext*, Blob*, const Dictionary&, ExceptionState&); 29 static Response* create(ExecutionContext*, const String&, const Dictionary&, ExceptionState&); 30 static Response* create(ExecutionContext*, const ArrayBuffer*, const Dictionary&, ExceptionState&); 31 static Response* create(ExecutionContext*, const ArrayBufferView*, const Dictionary&, ExceptionState&); 32 static Response* create(ExecutionContext*, Blob*, const ResponseInit&, ExceptionState&); 33 static Response* create(ExecutionContext*, FetchResponseData*); 34 static Response* create(ExecutionContext*, const WebServiceWorkerResponse&); 37 static Response* create(const Response&);
|
Request.h | 30 static Request* create(ExecutionContext*, const String&, ExceptionState&); 31 static Request* create(ExecutionContext*, const String&, const Dictionary&, ExceptionState&); 32 static Request* create(ExecutionContext*, Request*, ExceptionState&); 33 static Request* create(ExecutionContext*, Request*, const Dictionary&, ExceptionState&); 34 static Request* create(ExecutionContext*, FetchRequestData*); 35 static Request* create(ExecutionContext*, const WebServiceWorkerRequest&); 38 static Request* create(const Request&);
|
/external/clang/unittests/AST/ |
DeclTest.cpp | 32 Factory->create(), 56 Factory->create(),
|
/external/javassist/src/main/javassist/scopedpool/ |
ScopedClassPoolFactoryImpl.java | 30 public ScopedClassPool create(ClassLoader cl, ClassPool src, method in class:ScopedClassPoolFactoryImpl 38 public ScopedClassPool create(ClassPool src, method in class:ScopedClassPoolFactoryImpl
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
ClassesKey.java | 19 private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS); 28 public static Object create(Object[] array) { method in class:ClassesKey
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/ |
ClassWithNative_Delegate.java | 17 package com.android.tools.layoutlib.create.dataclass; 19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
|
OuterClass.java | 17 package com.android.tools.layoutlib.create.dataclass; 19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
|
OuterClass_Delegate.java | 17 package com.android.tools.layoutlib.create.dataclass; 19 import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
ImageBitmapTest.cpp | 64 m_globalMemoryCache = replaceMemoryCacheForTesting(MemoryCache::create()); 84 RefPtrWillBeRawPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get()); 85 imageElement->setImageResource(new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get())); 87 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapNoCrop = ImageBitmap::create(imageElement.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height())); 88 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapInteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width() / 2, m_bitmap.height() / 2)); 89 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapExteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width() / 2, -m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height())); 90 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapOutsideCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width(), -m_bitmap.height(), m_bitmap.width(), m_bitmap.height())); 104 RefPtrWillBePersistent<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
KeyframeEffectModelTest.cpp | 48 return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get()); 53 return AnimatableLength::create(Length(n, Fixed), 1); 59 keyframes[0] = AnimatableValueKeyframe::create(); 62 keyframes[1] = AnimatableValueKeyframe::create(); 104 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); 116 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); 125 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); 135 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); 145 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes) [all...] |
LengthStyleInterpolationTest.cpp | 41 OwnPtrWillBeRawPtr<InterpolableList> list = InterpolableList::create(10); 42 list->set(0, InterpolableNumber::create(a)); 43 list->set(1, InterpolableNumber::create(b)); 44 list->set(2, InterpolableNumber::create(c)); 45 list->set(3, InterpolableNumber::create(d)); 46 list->set(4, InterpolableNumber::create(e)); 47 list->set(5, InterpolableNumber::create(f)); 48 list->set(6, InterpolableNumber::create(g)); 49 list->set(7, InterpolableNumber::create(h)); 50 list->set(8, InterpolableNumber::create(i)) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
FrameLayoutRuleTest.java | 28 INode layout = TestNode.create("android.widget.FrameLayout").id("@+id/FrameLayout01") 30 TestNode.create("android.widget.Button").id("@+id/Button01").bounds( 32 TestNode.create("android.widget.Button").id("@+id/Button02").bounds( 34 TestNode.create("android.widget.Button").id("@+id/Button03").bounds( 36 TestNode.create("android.widget.Button").id("@+id/Button04").bounds(
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
DragImageTest.cpp | 56 static PassRefPtr<TestImage> create(const IntSize& size) function in class:__anon15860::TestImage 67 m_nativeImage = NativeImageSkia::create(bitmap); 106 EXPECT_FALSE(DragImage::create(0)); 108 RefPtr<TestImage> nullTestImage(TestImage::create(IntSize())); 109 EXPECT_FALSE(DragImage::create(nullTestImage.get())); 114 RefPtr<TestImage> testImage(TestImage::create(IntSize(2, 2))); 115 OwnPtr<DragImage> dragImage = DragImage::create(testImage.get()); 131 RefPtr<TestImage> testImage(TestImage::create(IntSize())); 132 EXPECT_FALSE(DragImage::create(testImage.get())); 137 RefPtr<TestImage> testImage(TestImage::create(IntSize(1, 1))) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MainThreadTaskRunnerTest.cpp | 46 static PassOwnPtr<MarkingBooleanTask> create(bool* toBeMarked) function in class:__anon15674::FINAL 68 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); 71 runner->postTask(MarkingBooleanTask::create(&isMarked)); 80 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); 84 runner->postTask(MarkingBooleanTask::create(&isMarked)); 98 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); 102 runner->postTask(MarkingBooleanTask::create(&isMarked));
|