HomeSort by relevance Sort by last modified time
    Searched refs:create (Results 251 - 275 of 6558) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammarList.cpp 34 SpeechGrammarList* SpeechGrammarList::create() function in class:blink::SpeechGrammarList
50 m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight));
56 m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight));
SpeechRecognitionError.h 58 static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(ErrorCode, const String&);
59 static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create();
60 static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIConnectionEvent.cpp 52 PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create() function in class:blink::MIDIConnectionEvent
57 PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create(const AtomicString& type, MIDIPort* port) function in class:blink::MIDIConnectionEvent
62 PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create(const AtomicString& type, const MIDIConnectionEventInit& initializer) function in class:blink::MIDIConnectionEvent
MIDIInput.cpp 40 MIDIInput* MIDIInput::create(MIDIAccess* access, const String& id, const String& manufacturer, const String& name, const String& version) function in class:blink::MIDIInput
63 RefPtr<Uint8Array> array = Uint8Array::create(data, length);
64 dispatchEvent(MIDIMessageEvent::create(timeStamp, array));
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
PerspectiveTransformOperation.cpp 41 return PerspectiveTransformOperation::create(clampToPositiveInteger(p));
56 return PerspectiveTransformOperation::create(clampToPositiveInteger(val));
58 return PerspectiveTransformOperation::create(0);
  /external/chromium_org/ui/accessibility/extensions/longdesc/
background.js 28 chrome.contextMenus.create({
62 chrome.tabs.create({url: ariaDescribedAt});
64 chrome.tabs.create({url: longDesc});
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestEnumSetGenerator.java 39 public Set<AnEnum> create(Object... elements) { method in class:TestEnumSetGenerator
45 return create(array);
48 protected abstract Set<AnEnum> create(AnEnum[] elements); method in class:TestEnumSetGenerator
TestStringCollectionGenerator.java 39 public Collection<String> create(Object... elements) { method in class:TestStringCollectionGenerator
45 return create(array);
48 protected abstract Collection<String> create(String[] elements); method in class:TestStringCollectionGenerator
TestStringListGenerator.java 38 public List<String> create(Object... elements) { method in class:TestStringListGenerator
44 return create(array);
49 * method instead of {@link #create(Object...)}.
51 protected abstract List<String> create(String[] elements); method in class:TestStringListGenerator
TestStringQueueGenerator.java 25 * Create queue of strings for tests.
40 public Queue<String> create(Object... elements) { method in class:TestStringQueueGenerator
46 return create(array);
49 protected abstract Queue<String> create(String[] elements); method in class:TestStringQueueGenerator
TestStringSetGenerator.java 25 * Create string sets for collection tests.
39 public Set<String> create(Object... elements) { method in class:TestStringSetGenerator
45 return create(array);
48 protected abstract Set<String> create(String[] elements); method in class:TestStringSetGenerator
TestUnhashableCollectionGenerator.java 40 public T create(Object... elements) { method in class:TestUnhashableCollectionGenerator
46 return create(array);
51 * method instead of {@link #create(Object...)}.
53 protected abstract T create(UnhashableObject[] elements); method in class:TestUnhashableCollectionGenerator
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
TestStringMultisetGenerator.java 27 * Create multisets of strings for tests.
41 public Multiset<String> create(Object... elements) { method in class:TestStringMultisetGenerator
47 return create(array);
50 protected abstract Multiset<String> create(String[] elements); method in class:TestStringMultisetGenerator
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.create/make_unique.single
23 test_name := utilities/memory/unique.ptr/unique.ptr.create/make_unique.array
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/allocate_shared
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
MethodWrapper.java 23 (MethodWrapperKey)KeyFactory.create(MethodWrapperKey.class);
33 public static Object create(Method method) { method in class:MethodWrapper
42 set.add(create((Method)it.next()));
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
ParseTreeBuilder.java 49 ParseTree root = create("<grammar "+grammarName+">");
57 /** What kind of node to create. You might want to override
60 public ParseTree create(Object payload) { method in class:ParseTreeBuilder
65 return create(EPSILON_PAYLOAD);
75 ParseTree ruleNode = create(ruleName);
92 ParseTree elementNode = create(token);
106 ParseTree errorNode = create(e);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.cpp 35 PassOwnPtr<ContentData> ContentData::create(PassRefPtr<StyleImage> image) function in class:blink::ContentData
40 PassOwnPtr<ContentData> ContentData::create(const String& text) function in class:blink::ContentData
45 PassOwnPtr<ContentData> ContentData::create(PassOwnPtr<CounterContent> counter) function in class:blink::ContentData
50 PassOwnPtr<ContentData> ContentData::create(QuoteType quote) function in class:blink::ContentData
74 image->setImageResource(RenderImageResourceStyleImage::create(m_image.get()));
76 image->setImageResource(RenderImageResource::create());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
RadialGradientAttributes.h 28 : m_cx(SVGLength::create(LengthModeWidth))
29 , m_cy(SVGLength::create(LengthModeHeight))
30 , m_r(SVGLength::create(LengthModeOther))
31 , m_fx(SVGLength::create(LengthModeWidth))
32 , m_fy(SVGLength::create(LengthModeHeight))
33 , m_fr(SVGLength::create(LengthModeOther))
SVGCircleElement.cpp 33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths))
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMWindowFileSystem.cpp 61 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR));
67 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR));
71 LocalFileSystem::from(*document)->requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document, fileSystemType));
86 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR));
91 DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::ENCODING_ERR));
95 LocalFileSystem::from(*document)->resolveURL(document, completedURL, ResolveURICallbacks::create(successCallback, errorCallback, document));
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create( method in class:TransposedTableTest
31 Table<Integer, String, Character> original = HashBasedTable.create();
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
51 Table<Integer, String, Character> original = HashBasedTable.create();
58 Table<Integer, String, Character> original = HashBasedTable.create();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
FilterStackDBHelper.java 27 private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
70 StringBuilder create = new StringBuilder(SQL_CREATE_TABLE); local
71 create.append(table).append('(');
75 create.append(',');
79 create.append(val).append(' ');
82 create.append(')');
85 db.execSQL(create.toString());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPoint.java 53 public static LayoutPoint create(LayoutCanvas canvas, MouseEvent event) { method in class:LayoutPoint
57 return ControlPoint.create(canvas, event).toLayout();
72 public static LayoutPoint create(LayoutCanvas canvas, DragSourceEvent event) { method in class:LayoutPoint
75 return ControlPoint.create(canvas, event).toLayout();
87 public static LayoutPoint create(LayoutCanvas canvas, int x, int y) { method in class:LayoutPoint
115 return ControlPoint.create(mCanvas, cx, cy);
  /art/test/085-old-style-inner-class/src/
Main.java 27 private static Runnable create() { method in class:Main
53 infoFor(create().getClass());

Completed in 1173 milliseconds

<<11121314151617181920>>