HomeSort by relevance Sort by last modified time
    Searched full:create (Results 601 - 625 of 31395) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/core/css/
RGBColor.cpp 33 PassRefPtr<RGBColor> RGBColor::create(unsigned rgbColor) function in class:WebCore::RGBColor
41 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
49 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
57 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
65 RefPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventContext.cpp 71 m_touchEventContext = TouchEventContext::create();
75 PassRefPtr<TouchEventContext> TouchEventContext::create() function in class:WebCore::TouchEventContext
81 : m_touches(TouchList::create())
82 , m_targetTouches(TouchList::create())
83 , m_changedTouches(TouchList::create())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLViewSourceDocument.cpp 63 return HTMLViewSourceParser::create(this, m_type);
68 RefPtr<HTMLHtmlElement> html = HTMLHtmlElement::create(*this);
70 RefPtr<HTMLHeadElement> head = HTMLHeadElement::create(*this);
72 RefPtr<HTMLBodyElement> body = HTMLBodyElement::create(*this);
75 // Create a line gutter div that can be used to make sure the gutter extends down the height of the whole
77 RefPtr<HTMLDivElement> div = HTMLDivElement::create(*this);
81 RefPtr<HTMLTableElement> table = HTMLTableElement::create(*this);
83 m_tbody = HTMLTableSectionElement::create(tbodyTag, *this);
185 RefPtr<HTMLSpanElement> span = HTMLSpanElement::create(*this);
193 // Create a table row
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
MediaStreamAudioDestinationNode.cpp 40 PassRefPtr<MediaStreamAudioDestinationNode> MediaStreamAudioDestinationNode::create(AudioContext* context, size_t numberOfChannels) function in class:WebCore::MediaStreamAudioDestinationNode
47 , m_mixBus(AudioBus::create(numberOfChannels, ProcessingSizeInFrames))
52 m_source = MediaStreamSource::create("WebAudio-" + createCanonicalUUIDString(), MediaStreamSource::TypeAudio, "MediaStreamAudioDestinationNode", MediaStreamSource::ReadyStateLive, true);
56 m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(audioSources, videoSources));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLError.h 40 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); } function in class:WebCore::SQLError
41 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode) function in class:WebCore::SQLError
43 return create(code, String::format("%s (%d)", message, sqliteCode));
45 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage) function in class:WebCore::SQLError
47 return create(code, String::format("%s (%d %s)", message, sqliteCode, sqliteMessage));
  /external/chromium_org/third_party/sqlite/src/test/
colmeta.test 28 CREATE TABLE abc(a, b, c);
29 CREATE TABLE abc2(a PRIMARY KEY COLLATE NOCASE, b VARCHAR(32), c);
30 CREATE TABLE abc3(a NOT NULL, b INTEGER PRIMARY KEY, c);
34 CREATE TABLE abc4(a, b INTEGER PRIMARY KEY AUTOINCREMENT, c);
39 CREATE VIEW v1 AS SELECT * FROM abc2;
fts3fault2.test 22 CREATE VIRTUAL TABLE t1 USING fts4(x);
25 CREATE VIRTUAL TABLE terms USING fts4aux(t1);
34 execsql "CREATE VIRTUAL TABLE terms2 USING fts4aux(t1)"
69 CREATE VIRTUAL TABLE tx USING fts4(a, b);
71 CREATE VIRTUAL TABLE terms2 USING fts4aux(tx);
mallocF.test 32 CREATE TABLE t1(x,y);
43 CREATE TABLE t1(x PRIMARY KEY,y UNIQUE);
56 CREATE TABLE t1(x PRIMARY KEY,y UNIQUE);
67 CREATE TABLE t1(x);
68 CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGIN
utf16align.test 29 # Create a database with a UTF16 encoding. Put in lots of string
37 CREATE TABLE t1(
66 CREATE INDEX t1i1 ON t1(spacer, b);
72 # Create another index that uses the aligned collation. This time
78 CREATE INDEX t1i2 ON t1(spacer, a);
autovacuum.test 69 CREATE TABLE av1(a);
70 CREATE INDEX av1_idx ON av1(a);
134 # autovacuum-2.2.*: Create some tables. Ensure that data pages can be
157 # Create a table and put some data in it.
160 CREATE TABLE av1(x);
175 # Create another table. Check it is located immediately after the first.
179 CREATE TABLE av2(x);
187 # Create another table. Check it is located immediately after the second.
191 CREATE TABLE av3(x);
199 # Create another table. Check it is located immediately after the second
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-242502.js 39 var o1 = %ToFastProperties(Object.create({ foo:1 }, { '': { value:f }}));
40 var o2 = %ToFastProperties(Object.create({ bar:1 }, { '': { value:f }}));
41 var o3 = %ToFastProperties(Object.create({ baz:1 }, { '': { value:f }}));
42 var o4 = %ToFastProperties(Object.create({ qux:1 }, { '': { value:f }}));
43 var o5 = %ToFastProperties(Object.create({ loo:1 }, { '': { value:f }}));
  /external/icu4c/samples/translit/answers/
main_3.cpp 39 // Create a calendar in the Greek locale
43 // Create a formatter
47 // Create a default formatter
51 // Create a Greek-Latin Transliterator
58 // Create a custom Transliterator
  /external/oprofile/libutil/
op_file.h 40 * create_dir - create a directory
41 * @param dir the directory name to create
49 * create_path - create a path
50 * @param path the path to create
52 * create directory for each dir components in path
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_sysmutex.c 37 /* Create a mutex */
47 /* Create the mutex, with initial value signaled */
48 ulrc = DosCreateMutexSem(NULL, // Create unnamed semaphore
50 0L, // Flags: create it private (not shared)
54 SDL_SetError("Couldn't create mutex");
  /frameworks/base/docs/html/tools/help/
mksdcard.jd 6 <p>The <code>mksdcard</code> tool lets you quickly create a FAT32 disk image that you can load in the
8 card while creating an AVD in the AVD Manager, you usually use that feature to create an SD card.
29 <td>A volume label for the disk image to create.</td>
35 <td>An integer that specifies the size (in bytes) of disk image to create. You can also
43 <td>The path/filename of the disk image to create.</td>
  /frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboRS.java 49 Mesh sm = smb.create();
57 mProgramFragment = pfb.create();
65 mTextureProgramFragment = pfb.create();
68 /* Create the allocation for the color buffer */
71 mColorBuffer = Allocation.createTyped(mRS, colorBuilder.create(),
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_alloc.java 40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_alloc.java 40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_alloc.java 40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create());
59 RenderScript pRS = RenderScript.create(mCtx);
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerConfigurationException.java 28 * Create a new <code>TransformerConfigurationException</code> with no
36 * Create a new <code>TransformerConfigurationException</code> with
46 * Create a new <code>TransformerConfigurationException</code> with a
57 * Create a new <code>TransformerConfigurationException</code> with the
69 * Create a new TransformerConfigurationException from a message and a Locator.
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
CachedLaterTest.java 52 mHarness.getLater(mTrap); // trigger create()
59 mHarness.getLater(mTrap); // trigger create()
67 mHarness.getLater(mTrap); // trigger create()
84 mHarness.getLater(mTrap); // trigger create()
96 protected void create() { method in class:CachedLaterTest.Harness
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
MoreDatabaseUtils.java 27 * Builds a CREATE INDEX ddl statement for a given table and field.
31 * @return The create index sql statement.
34 return "CREATE INDEX " + buildIndexName(table, field) + " ON " + table
41 * @param table The table name that was originally used to create the index.
42 * @param field The field that was originally used to create the index.
  /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/antlr/antlr-3.4/runtime/Python/unittests/
testtreewizard.py 285 t = wiz.create("ID")
293 t = wiz.create("ID[foo]")
301 t = wiz.create("(A)")
309 t = wiz.create("(A B C D)")
317 t = wiz.create("(nil A B C)")
325 t = wiz.create("A B C")
331 t = wiz.create("(A (B C) (B D) E)")
345 tree = wiz.create("ID")
354 tree = wiz.create("(A B C D)")
363 tree = wiz.create("(A B (A C B) B D D)"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 85 RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::createNull(), 0);
88 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage));
92 blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
121 RefPtr<IDBDatabaseCallbacks> databaseCallbacks = IDBDatabaseCallbacks::create();
123 RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(context, databaseCallbacks, transactionId, version);
126 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage));
130 blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
155 RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(context, 0, 0, IDBDatabaseMetadata::DefaultIntVersion);
158 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage))
    [all...]

Completed in 1072 milliseconds

<<21222324252627282930>>