/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefPtrTest.cpp | 17 string = StringImpl::create("test"); 26 RefPtr<StringImpl> a = StringImpl::create("a"); 27 RefPtr<StringImpl> b = StringImpl::create("b");
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ArrayTableTest.java | 38 @Override protected ArrayTable<String, Integer, Character> create( method in class:ArrayTableTest 43 ArrayTable.create(asList("foo", "bar", "cat"), asList(1, 2, 3)); 63 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 79 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 88 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 97 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 107 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 112 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 113 Table<String, Integer, Character> hashCopy = HashBasedTable.create(); 118 = create("foo", 3, 'c', "foo", 1, 'a', "bar", 1, 'b') [all...] |
/external/icu/icu4c/source/i18n/ |
measunit.cpp | 385 return MeasureUnit::create(0, 0, status); 389 return MeasureUnit::create(1, 0, status); 393 return MeasureUnit::create(1, 1, status); 397 return MeasureUnit::create(1, 2, status); 401 return MeasureUnit::create(2, 0, status); 405 return MeasureUnit::create(2, 1, status); 409 return MeasureUnit::create(2, 2, status); 413 return MeasureUnit::create(2, 3, status); 417 return MeasureUnit::create(2, 4, status); 421 return MeasureUnit::create(2, 5, status) 699 MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) { function in class:MeasureUnit [all...] |
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
FontRenderingTests.java | 64 Typeface tf = Typeface.create("sans-serif", Typeface.NORMAL); 70 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD); 76 Typeface tf = Typeface.create("sans-serif", Typeface.ITALIC); 82 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD | Typeface.ITALIC); 88 Typeface tf = Typeface.create("sans-serif-medium", Typeface.NORMAL); 95 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD); 101 Typeface tf = Typeface.create("sans-serif-medium", Typeface.ITALIC); 107 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD | Typeface.ITALIC); 113 Typeface tf = Typeface.create("sans-serif-light", Typeface.NORMAL); 120 Typeface tf = Typeface.create("sans-serif-light", Typeface.BOLD) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
TimeRangesTest.cpp | 56 ASSERT_RANGE("{ }", TimeRanges::create()); 61 ASSERT_RANGE("{ [1,2) }", TimeRanges::create(1, 2)); 71 ASSERT_RANGE("{ [0,1) [2,3) }", TimeRanges::create(webRanges)); 76 RefPtrWillBeRawPtr<TimeRanges> rangeA = TimeRanges::create(); 77 RefPtrWillBeRawPtr<TimeRanges> rangeB = TimeRanges::create(); 95 RefPtrWillBeRawPtr<TimeRanges> ranges = TimeRanges::create(); 125 RefPtrWillBeRawPtr<TimeRanges> ranges = TimeRanges::create(0, 2); 136 RefPtrWillBeRawPtr<TimeRanges> rangesA = TimeRanges::create(0, 2); 150 RefPtrWillBeRawPtr<TimeRanges> rangesA = TimeRanges::create(0, 2); 151 RefPtrWillBeRawPtr<TimeRanges> rangesB = TimeRanges::create(); [all...] |
ImageData.h | 46 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&); 47 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&, PassRefPtr<Uint8ClampedArray>); 48 static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned height, ExceptionState&); 49 static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned width, unsigned height, ExceptionState&);
|
TextDocument.cpp | 41 return TextDocumentParser::create(*this);
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXARIAGridRow.h | 41 static PassRefPtr<AXARIAGridRow> create(RenderObject*);
|
AXListBox.cpp | 51 PassRefPtr<AXListBox> AXListBox::create(RenderObject* renderer) function in class:blink::AXListBox
|
AXListBox.h | 41 static PassRefPtr<AXListBox> create(RenderObject*);
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSAnimatableValueFactory.h | 44 static PassRefPtrWillBeRawPtr<AnimatableValue> create(CSSPropertyID, const RenderStyle&);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMError.h | 42 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name) function in class:blink::DOMError 46 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message) function in class:blink::DOMError 51 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec) function in class:blink::DOMError 56 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message) function in class:blink::DOMError
|
IncrementLoadEventDelayCount.h | 22 static PassOwnPtr<IncrementLoadEventDelayCount> create(Document&);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementAsyncImportMicrotaskQueue.h | 42 static PassRefPtrWillBeRawPtr<CustomElementAsyncImportMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementAsyncImportMicrotaskQueue()); } function in class:blink::CustomElementAsyncImportMicrotaskQueue
|
CustomElementSyncMicrotaskQueue.h | 14 static PassRefPtrWillBeRawPtr<CustomElementSyncMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementSyncMicrotaskQueue()); } function in class:blink::CustomElementSyncMicrotaskQueue
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
BreakBlockquoteCommand.h | 35 static PassRefPtrWillBeRawPtr<BreakBlockquoteCommand> create(Document& document) function in class:blink::FINAL
|
UnlinkCommand.cpp | 44 removeStyledElement(HTMLAnchorElement::create(document()));
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
ButtonInputType.cpp | 39 PassRefPtrWillBeRawPtr<InputType> ButtonInputType::create(HTMLInputElement& element) function in class:blink::ButtonInputType
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
PluginPlaceholderElement.h | 16 static PassRefPtrWillBeRawPtr<PluginPlaceholderElement> create(Document&);
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
AudioTrackList.h | 16 static PassRefPtrWillBeRawPtr<AudioTrackList> create(HTMLMediaElement&);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
FlowThreadController.h | 43 static PassOwnPtr<FlowThreadController> create();
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedPath.cpp | 39 : SVGAnimatedProperty<SVGPathSegList>(contextElement, attributeName, SVGPathSegList::create(contextElement))
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
RefCountedScriptWrappable.cpp | 19 PassRefPtr<RefCountedScriptWrappable> RefCountedScriptWrappable::create(const String& string) function in class:blink::RefCountedScriptWrappable
|
RefCountedScriptWrappable.h | 18 static PassRefPtr<RefCountedScriptWrappable> create(const String&);
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
AesKeyAlgorithm.h | 43 static AesKeyAlgorithm* create(const WebCryptoKeyAlgorithm&);
|