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

<<21222324252627282930>>

  /external/chromium_org/third_party/sqlite/src/test/
collate3.test 35 CREATE TABLE collate3t1(c1);
45 CREATE TABLE collate3t2(c1 collate garbage);
50 CREATE INDEX collate3i1 ON collate3t1(c1 COLLATE garbage);
59 # Create a table with a default collation sequence, then close
66 # * a CREATE TABLE statement
67 # * a CREATE INDEX statement that uses a default collation sequence
76 CREATE TABLE collate3t1(c1 COLLATE string_compare, c2);
99 CREATE TABLE collate3t2(c1 COLLATE string_compare);
104 CREATE INDEX collate3t1_i1 ON collate3t1(c1);
182 # Create an index that uses a collation sequence then close an
    [all...]
e_fkey.test 42 CREATE TABLE p(i PRIMARY KEY);
43 CREATE TABLE c(j REFERENCES p ON UPDATE CASCADE);
78 CREATE TABLE p(i PRIMARY KEY);
79 CREATE TABLE c(j REFERENCES p ON UPDATE CASCADE);
108 execsql { CREATE TABLE p(i PRIMARY KEY) }
109 catchsql { CREATE TABLE c(j REFERENCES p ON UPDATE CASCADE) }
114 execsql { CREATE TABLE c(j REFERENCES p) }
145 CREATE TABLE p(i PRIMARY KEY);
146 CREATE TABLE c(j REFERENCES p ON UPDATE CASCADE);
204 CREATE TABLE t1(a UNIQUE, b)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AlertDialogTest.java 36 AlertDialog alert = builder.create();
61 AlertDialog dialog = builder.create();
71 AlertDialog dialog = builder.create();
80 AlertDialog alert = builder.create();
97 AlertDialog alert = builder.create();
109 AlertDialog alert = builder.create();
120 AlertDialog alert = builder.create();
127 .setPositiveButton("Positive", null).create();
142 .setNegativeButton("Negative", null).create();
157 .setNegativeButton("Neutral", null).create();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFileSystemAgent.cpp 87 static PassOwnPtr<CallbackDispatcher> create(PassRefPtr<Handler> handler, HandlingMethod handlingMethod) function in class:WebCore::__anon10686::CallbackDispatcher
110 static PassOwnPtr<CallbackDispatcher<BaseCallback, Handler, Argument> > create(Handler* handler, bool (Handler::*handlingMethod)(Argument)) function in class:WebCore::__anon10686::CallbackDispatcherFactory
112 return CallbackDispatcher<BaseCallback, Handler, Argument>::create(PassRefPtr<Handler>(handler), handlingMethod);
119 static PassRefPtr<FileSystemRootRequest> create(PassRefPtr<RequestFileSystemRootCallback> requestCallback, const String& type) function in class:WebCore::__anon10686::FileSystemRootRequest
152 OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &FileSystemRootRequest::didHitError);
156 errorCallback->handleEvent(FileError::create(FileError::SYNTAX_ERR).get());
162 errorCallback->handleEvent(FileError::create(FileError::SYNTAX_ERR).get());
166 OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &FileSystemRootRequest::didGetEntry);
167 OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext);
173 RefPtr<TypeBuilder::FileSystem::Entry> result = TypeBuilder::FileSystem::Entry::create()
184 static PassRefPtr<DirectoryContentRequest> create(PassRefPtr<RequestDirectoryContentCallback> requestCallback, const String& url) function in class:WebCore::__anon10686::DirectoryContentRequest
305 static PassRefPtr<MetadataRequest> create(PassRefPtr<RequestMetadataCallback> requestCallback, const String& url) function in class:WebCore::__anon10686::MetadataRequest
378 static PassRefPtr<FileContentRequest> create(PassRefPtr<RequestFileContentCallback> requestCallback, const String& url, bool readAsText, long long start, long long end, const String& charset) function in class:WebCore::__anon10686::FileContentRequest
501 static PassRefPtr<DeleteEntryRequest> create(PassRefPtr<DeleteEntryCallback> requestCallback, const KURL& url) function in class:WebCore::__anon10686::DeleteEntryRequest
599 PassOwnPtr<InspectorFileSystemAgent> InspectorFileSystemAgent::create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state) function in class:WebCore::InspectorFileSystemAgent
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.cpp 85 RefPtr<RTCConfiguration> rtcConfiguration = RTCConfiguration::create();
110 rtcConfiguration->appendServer(RTCIceServer::create(url, username, credential));
116 PassRefPtr<RTCPeerConnection> RTCPeerConnection::create(ExecutionContext* context, const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState& exceptionState) function in class:WebCore::RTCPeerConnection
122 RefPtr<MediaConstraints> constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState);
150 m_peerHandler = RTCPeerConnectionHandler::create(this);
181 RefPtr<MediaConstraints> constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState);
185 RefPtr<RTCSessionDescriptionRequestImpl> request = RTCSessionDescriptionRequestImpl::create(executionContext(), successCallback, errorCallback);
201 RefPtr<MediaConstraints> constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState);
205 RefPtr<RTCSessionDescriptionRequestImpl> request = RTCSessionDescriptionRequestImpl::create(executionContext(), successCallback, errorCallback);
222 RefPtr<RTCVoidRequestImpl> request = RTCVoidRequestImpl::create(executionContext(), successCallback, errorCallback)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 46 * cannot be tracked as they might not use the adaptor to create foo, bar.
61 public virtual object Create(IToken payload) {
64 return Create(payload.Type, payload.Text);
66 object node = adaptor.Create(payload);
82 // walk the tree and emit create and add child events
89 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
135 object n = this.Create(child);
140 object n = this.Create(newRoot);
146 public virtual object Create(int tokenType, IToken fromToken)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 42 * cannot be tracked as they might not use the adaptor to create foo, bar.
56 public Object create(Token payload) { method in class:DebugTreeAdaptor
59 return create(payload.getType(), payload.getText());
61 Object node = adaptor.create(payload);
78 // walk the tree and emit create and add child events
85 /** ^(A B C): emit create A, create B, add child, ...*/
131 Object n = this.create(child);
136 Object n = this.create(newRoot);
142 public Object create(int tokenType, Token fromToken) method in class:DebugTreeAdaptor
148 public Object create(int tokenType, Token fromToken, String text) { method in class:DebugTreeAdaptor
154 public Object create(int tokenType, String text) { method in class:DebugTreeAdaptor
    [all...]
  /external/chromium/chrome/common/extensions/docs/static/
whats_new.html 31 <li> The <a href="windows.html#method-create">chrome.windows.create()</a>
34 now you can create windows without interrupting the user's typing.
39 the <a href="windows.html#method-create">chrome.windows.create()</a>
47 <a href="contextMenus.html#method-create">create()</a> and
101 <li> The <a href="windows.html#method-create">chrome.windows.create()</a>
131 you can <a href="tabs.html#method-create">create</a
    [all...]
  /external/chromium_org/chrome/installer/util/
work_item.h 66 // Create a CallbackWorkItem that invokes a callback.
70 // Create a CopyRegKeyWorkItem that recursively copies a given registry key.
77 // Create a CopyTreeWorkItem that recursively copies a file system hierarchy
90 // Create a CreateDirWorkItem that creates a directory at the given path.
93 // Create a CreateRegKeyWorkItem that creates a registry key at the given
98 // Create a DeleteRegKeyWorkItem that deletes a registry key at the given
103 // Create a DeleteRegValueWorkItem that deletes a registry value
109 // Create a DeleteTreeWorkItem that recursively deletes a file system
117 // Create a MoveTreeWorkItem that recursively moves a file system hierarchy
125 // Create a SetRegValueWorkItem that sets a registry value with REG_SZ typ
    [all...]
  /external/chromium_org/media/audio/
audio_output_controller_unittest.cc 107 void Create(int samples_per_packet) {
122 controller_ = AudioOutputController::Create(
198 scoped_ptr<AudioBus> dest = AudioBus::Create(params_);
277 Create(kSamplesPerPacket);
282 Create(kSamplesPerPacket * 1000);
286 Create(kSamplesPerPacket);
295 Create(kSamplesPerPacket);
306 Create(kSamplesPerPacket);
319 Create(kSamplesPerPacket);
331 Create(kSamplesPerPacket)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
idl_schemas_unittest.cc 41 scoped_ptr<Function2::Params> f2_params = Function2::Params::Create(list);
54 scoped_ptr<Function3::Params> f3_params = Function3::Params::Create(list);
60 scoped_ptr<ListValue> f4_results = Function4::Results::Create();
64 scoped_ptr<ListValue> f5_results(Function5::Results::Create(13));
69 scoped_ptr<ListValue> f6_results(Function6::Results::Create(a));
82 scoped_ptr<Function7::Params> f7_params = Function7::Params::Create(list);
85 f7_params = Function7::Params::Create(list);
92 scoped_ptr<Function8::Params> f8_params = Function8::Params::Create(list);
96 f8_params = Function8::Params::Create(list);
102 scoped_ptr<Function9::Params> f9_params = Function9::Params::Create(list)
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 120 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
270 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) {
271 return MCSymbolRefExpr::Create(Symbol, VK_None, Ctx);
274 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, VariantKind Kind,
276 static const MCSymbolRefExpr *Create(StringRef Name, VariantKind Kind,
323 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
326 return Create(LNot, Expr, Ctx);
329 return Create(Minus, Expr, Ctx);
332 return Create(Not, Expr, Ctx);
335 return Create(Plus, Expr, Ctx)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java 31 RenderScript mRS = RenderScript.create(getContext());
43 RenderScript mRS = RenderScript.create(null);
48 RenderScript mRS = RenderScript.create(getContext());
74 * Create a base RSMessageHandler object and run() it.
84 * Create a base RSErrorHandler object and run() it.
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RS3DLUTTest.java 44 RenderScript mRS = RenderScript.create(getContext());
58 Allocation rsInput = Allocation.createTyped(mRS, build.create());
59 Allocation rsOutput = Allocation.createTyped(mRS, build.create());
66 Allocation cube = Allocation.createTyped(mRS, build.create());
68 ScriptIntrinsic3DLUT lut = ScriptIntrinsic3DLUT.create(mRS, Element.RGBA_8888(mRS));
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenPlugin.groovy 52 project.extensions.create("samplegen", SampleGenProperties)
55 project.task('create') {
56 if (project.gradle.startParameter.taskNames.contains('create')) {
86 project.create.dependsOn(project.bootstrap)
92 project.create << {println "Project creation finished."}
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMConfigurationException.java 32 * Create a new <code>DTMConfigurationException</code> with no
40 * Create a new <code>DTMConfigurationException</code> with
50 * Create a new <code>DTMConfigurationException</code> with a
61 * Create a new <code>DTMConfigurationException</code> with the
72 * Create a new DTMConfigurationException from a message and a Locator.
  /external/chromium/base/
environment_unittest.cc 14 scoped_ptr<base::Environment> env(base::Environment::Create());
21 scoped_ptr<base::Environment> env(base::Environment::Create());
50 scoped_ptr<base::Environment> env(base::Environment::Create());
55 scoped_ptr<base::Environment> env(base::Environment::Create());
70 scoped_ptr<base::Environment> env(base::Environment::Create());
  /external/chromium/base/threading/
platform_thread_unittest.cc 11 // Trivial tests that thread runs and doesn't crash on create and join ---------
34 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
46 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
82 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
97 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
create_directory_operation_unittest.cc 41 // Create a new directory, not recursively.
57 // Create a new directory recursively.
77 // Try to create an existing directory.
94 // Try to create a directory with a path for an existing file.
103 // Try to create a directory under a file.
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_api.cc 98 results_ = serial::GetDevices::Results::Create(devices);
106 params_ = serial::Connect::Params::Create(*args_);
169 results_ = serial::Connect::Results::Create(info);
189 params_ = serial::Update::Params::Create(*args_);
202 results_ = serial::Update::Results::Create(success);
210 params_ = serial::Disconnect::Params::Create(*args_);
224 results_ = serial::Disconnect::Results::Create(true);
232 params_ = serial::Send::Params::Create(*args_);
258 results_ = serial::Send::Results::Create(send_info);
267 params_ = serial::Flush::Params::Create(*args_)
    [all...]
  /external/chromium_org/crypto/
rsa_private_key_nss_unittest.cc 34 scoped_ptr<crypto::RSAPrivateKey> key_pair(RSAPrivateKey::Create(256));
55 // Create a keypair, which will put the keys in the user's NSSDB.
56 scoped_ptr<crypto::RSAPrivateKey> key_pair(RSAPrivateKey::Create(256));
68 // Create a keypair, which will put the keys in the user's NSSDB.
69 scoped_ptr<crypto::RSAPrivateKey> key_pair(RSAPrivateKey::Create(256));
  /external/chromium_org/ppapi/generators/test_thunk/
simple_thunk.cc 21 PP_Resource Create(PP_Instance instance) {
22 VLOG(4) << "PPB_Simple::Create()";
84 &Create,
93 &Create,
102 &Create,
  /external/chromium_org/skia/ext/
bitmap_platform_device_skia.cc 10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
28 BitmapPlatformDevice* device = Create(width, height, is_opaque);
34 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
60 return BitmapPlatformDevice::Create(width, height, isOpaque);
80 BitmapPlatformDevice::Create(width, height, is_opaque, data));
  /external/chromium_org/sync/test/engine/
test_id_factory.h 5 // A tool making it easier to create IDs for unit testing.
28 // If the number is positive, create a server ID based on the value. If
29 // the number is negative, create a local ID based on the value. This
40 // Create a local ID from a name.
45 // Create a server ID from a string name.
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementFactory.cpp.tmpl 46 return {{fallback_interface}}::create({{tag|symbol}}Tag, document);
50 return {{fallback_interface}}::create({{tag|symbol}}Tag, document);
52 return {{tag.interface}}::create(
75 PassRefPtr<{{namespace}}Element> {{namespace}}ElementFactory::create{{namespace}}Element(
94 return {{fallback_interface}}::create(QualifiedName(nullAtom, localName, {{namespace_prefix}}NamespaceURI), document);

Completed in 907 milliseconds

<<21222324252627282930>>