/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
TextControlInnerElements.h | 40 static PassRefPtr<TextControlInnerContainer> create(Document&); 48 static PassRefPtr<EditingViewPortElement> create(Document&); 60 static PassRefPtr<TextControlInnerTextElement> create(Document&); 73 static PassRefPtr<SearchFieldDecorationElement> create(Document&); 86 static PassRefPtr<SearchFieldCancelButtonElement> create(Document&); 111 static PassRefPtr<InputFieldSpeechButtonElement> create(Document&);
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
MockPagePopupDriver.cpp | 45 static PassRefPtr<MockPagePopup> create(PagePopupClient*, const IntRect& originBoundsInRootView, Frame*); 64 m_iframe = HTMLIFrameElement::create(*document); 80 PassRefPtr<MockPagePopup> MockPagePopup::create(PagePopupClient* client, const IntRect& originBoundsInRootView, Frame* mainFrame) function in class:WebCore::MockPagePopup 111 PassOwnPtr<MockPagePopupDriver> MockPagePopupDriver::create(Frame* mainFrame) function in class:WebCore::MockPagePopupDriver 127 m_pagePopupController = PagePopupController::create(client); 128 m_mockPagePopup = MockPagePopup::create(client, originBoundsInRootView, m_mainFrame);
|
/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/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
DynamicsCompressorNode.cpp | 50 m_threshold = AudioParam::create(context, "threshold", -24, -100, 0); 51 m_knee = AudioParam::create(context, "knee", 30, 0, 40); 52 m_ratio = AudioParam::create(context, "ratio", 12, 1, 20); 53 m_reduction = AudioParam::create(context, "reduction", 0, -20, 0); 54 m_attack = AudioParam::create(context, "attack", 0.003, 0, 1); 55 m_release = AudioParam::create(context, "release", 0.250, 0, 1);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterOperation.cpp | 78 return BasicColorMatrixFilterOperation::create(result, m_type); 116 return BasicComponentTransferFilterOperation::create(result, m_type); 123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative)); 126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative)); 132 return DropShadowFilterOperation::create( 139 return DropShadowFilterOperation::create(
|
/external/chromium_org/third_party/sqlite/src/test/ |
fts3ad.test | 29 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize porter); 67 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize porter); 75 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= porter); 83 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= simple); 91 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= porter); 99 CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize = porter);
|
fts3comp1.test | 20 # Create a pretend compression system. 49 # Create a table that uses zip/unzip. Check that content inserted into 54 CREATE VIRTUAL TABLE t1 USING fts4( 90 CREATE VIRTUAL TABLE terms USING fts4aux(t1); 109 CREATE VIRTUAL TABLE t2 USING fts4(x, compress=zip) 112 CREATE VIRTUAL TABLE t2 USING fts4(x, uncompress=unzip)
|
tkt2820.test | 49 CREATE TABLE t1(a); 54 CREATE TABLE t1(a); 55 CREATE TABLE t2(b); 60 CREATE TABLE t1(a); 61 CREATE INDEX i1 ON t1(a); 76 CREATE TABLE t1(a INTEGER PRIMARY KEY);
|
trans.test | 20 # Create several tables to work with. 25 CREATE TABLE one(a int PRIMARY KEY, b text); 35 CREATE TABLE two(a int PRIMARY KEY, b text); 256 execsql {CREATE TABLE one(a text, b int)} 277 # Test commits and rollbacks of table CREATE TABLEs, CREATE INDEXs 290 CREATE TABLE t1(a int, b int, c int); 298 CREATE INDEX i1 ON t1(a); 315 CREATE TABLE t2(a int, b int, c int); 316 CREATE INDEX i2a ON t2(a) [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-125148.js | 40 B = Object.create(A); 43 C = Object.create(B); 57 B = Object.create(A); 60 C = Object.create(B); 74 B = Object.create(A); 78 C = Object.create(B);
|
/external/clang/lib/Analysis/ |
BodyFarm.cpp | 50 /// Create a new BinaryOperator representing a simple assignment. 53 /// Create a new BinaryOperator representing a comparison. 57 /// Create a new compound stmt using the provided statements. 60 /// Create a new DeclRefExpr for the referenced variable. 63 /// Create a new UnaryOperator representing a dereference. 66 /// Create an implicit cast for an integer conversion. 69 /// Create an implicit cast to a builtin boolean type. 72 // Create an implicit cast for lvalue-to-rvaluate conversions. 75 /// Create an Objective-C bool literal. 78 /// Create a Return statement [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestsForQueuesInJavaUtil.java | 81 @Override public Queue<String> create(String[] elements) { 99 @Override public Queue<String> create(String[] elements) { 116 @Override public Queue<String> create(String[] elements) { 133 @Override public Queue<String> create(String[] elements) { 155 @Override public Queue<String> create(String[] elements) { 171 @Override public Queue<String> create(String[] elements) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
BiMapMapInterfaceTest.java | 51 return HashBiMap.create(); 79 return HashBiMap.create(); 89 return HashBiMap.<Integer, String>create().inverse(); 99 return Maps.unmodifiableBiMap(HashBiMap.<String, Integer>create()); 102 BiMap<String, Integer> bimap = HashBiMap.create(); 115 return Maps.synchronizedBiMap(HashBiMap.<String, Integer>create());
|
LinkedHashMultisetTest.java | 38 @Override protected <E> Multiset<E> create() { method in class:LinkedHashMultisetTest 39 return LinkedHashMultiset.create(); 43 Multiset<String> multiset = LinkedHashMultiset.create(); 52 Multiset<String> multiset = LinkedHashMultiset.create(50); 62 = LinkedHashMultiset.create(Arrays.asList("foo", "bar", "foo")); 87 Multiset<String> multiset = create();
|
/external/lzma/CPP/Windows/ |
FileDir.h | 109 UINT Create(LPCTSTR dirPath, LPCTSTR prefix, CSysString &resultPath);
110 bool Create(LPCTSTR prefix, CSysString &resultPath);
125 UINT Create(LPCWSTR dirPath, LPCWSTR prefix, UString &resultPath);
126 bool Create(LPCWSTR prefix, UString &resultPath);
141 bool Create(LPCTSTR prefix) ;
163 bool Create(LPCWSTR prefix) ;
|
Synchronization.h | 28 WRes Create(bool manualReset, bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
53 WRes Create(bool initiallyOwn = false)
66 return CBaseEvent::Create(true, initiallyOwn, name);
74 WRes Create()
96 WRes Create(bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
134 WRes Create(UInt32 initiallyCount, UInt32 maxCount)
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_SetVideoMode.3 | 18 Create the video surface in system memory 21 Create the video surface in video memory 39 Create an OpenGL rendering context\&. You should have previously set OpenGL video attributes with \fI\fBSDL_GL_SetAttribute\fP\fR\&. 42 Create an OpenGL rendering context, like above, but allow normal blitting operations\&. The screen (2D) surface may have an alpha channel, and \fI\fBSDL_UpdateRects\fP\fR must be used for updating changes to the screen surface\&. 45 Create a resizable window\&. When the window is resized by the user a \fI\fBSDL_VIDEORESIZE\fP\fR event is generated and \fBSDL_SetVideoMode\fP can be called again with the new size\&. 48 If possible, \fBSDL_NOFRAME\fP causes SDL to create a window with no title bar or frame decoration\&. Fullscreen modes automatically have this flag set\&.
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
main.java | 367 .create("v"); 371 .create("?"); 377 .create("o"); 382 .create("p"); 387 .create("x"); 392 .create("l"); 395 .withDescription("create label names using a sequential numbering scheme per label type, rather than " + 397 .create("s"); 401 .create("b"); 415 .create("r") [all...] |
/frameworks/base/docs/html/training/run-background-service/ |
send-request.jd | 9 <a href="#CreateRequest">Create and Send a Work Request to an IntentService</a> 28 The previous lesson showed you how to create an {@link android.app.IntentService} class. This 35 <h2 id="CreateRequest">Create and Send a Work Request to an IntentService</h2> 37 To create a work request and send it to an {@link android.app.IntentService}, create an 47 Create a new, explicit {@link android.content.Intent} for the
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/ |
FilterFunctionEnvironment.java | 40 * Create a new FilterFunctionEnvironment with the default components. 47 * Create a new FilterFunctionEnvironment with a custom FrameManager. Pass null to auto-create 50 * @param frameManager The FrameManager to use, or null to auto-create one. 57 * Create a new FilterFunction from a specific filter class. The function is initialized with 59 * FilterFactory to create the filter instance.
|
/frameworks/compile/mclinker/include/mcld/Support/ |
MemoryAreaFactory.h | 28 * prevent opening the same file twice, and create redundant MemoryRegions, 29 * mcld::Input should not create MemoryArea directly. Instead, it should ask 48 // produce - create a MemoryArea and open its file. 52 // produce - create a MemoryArea and open its file. 57 // Create a MemoryArea with an universal space. 61 // Create a MemoryArea by the given file handler
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
CachedLater.java | 49 protected abstract void create(); method in class:CachedLater 97 boolean create = false; 101 create = true; 104 if (create) { 105 if (DBG) Log.d(TAG, "not valid, calling create()"); 106 create(); method
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
LocalServices.java | 31 * Create UPnP MediaRenderer local service. 45 * Create Bonjour IPP local service. 57 * Create Bonjour AFP local service.
|
/cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/ |
BaseObjTest.java | 28 Font F = Font.create(mRS, mRes, "sans-serif", S, 8); 39 F = Font.create(mRS, mRes, "serif", S, 8); 50 F = Font.create(mRS, mRes, "mono", S, 8);
|
/external/chromium/chrome/browser/chromeos/notifications/ |
system_notification_factory.cc | 17 Notification SystemNotificationFactory::Create( 28 Notification SystemNotificationFactory::Create( 32 // Create an icon notification with or without a footer link
|