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

<<21222324252627282930>>

  /external/chromium_org/third_party/sqlite/src/test/
trigger4.test 24 create table test1(id integer primary key,a);
25 create table test2(id integer,b);
26 create view test as
29 create trigger I_test instead of insert on test
59 create trigger U_test instead of update on test
112 create table test2(id,b);
138 create table tbl(a integer primary key, b integer);
139 create view vw as select * from tbl;
140 create trigger t_del_tbl instead of delete on vw for each row begin
143 create trigger t_upd_tbl instead of update on vw for each row begi
    [all...]
createtab.test 12 # focus of this file is testing that it is OK to create new tables
33 # Create a table that spans multiple pages. It is important
40 CREATE TABLE t1(x INTEGER PRIMARY KEY, y);
68 # While still reading the table, create a new table.
72 CREATE TABLE t2(a,b);
95 CREATE TABLE t3(a,b);
114 CREATE TABLE t4(a,b);
recover1.test 25 CREATE TABLE types (rowtype TEXT, value);
36 CREATE TABLE types2 (id INTEGER PRIMARY KEY, rowtype TEXT, value);
50 CREATE VIRTUAL TABLE temp.types_recover USING recover(
63 CREATE VIRTUAL TABLE temp.types_recover USING recover(
76 CREATE VIRTUAL TABLE temp.types_recover USING recover(
89 CREATE VIRTUAL TABLE temp.types_recover USING recover(
102 CREATE VIRTUAL TABLE temp.types_recover USING recover(
115 CREATE VIRTUAL TABLE temp.types_recover USING recover(
128 CREATE VIRTUAL TABLE temp.types_recover USING recover(
141 CREATE VIRTUAL TABLE temp.types_recover USING recover
    [all...]
tkt1435.test 32 CREATE TABLE Instances(
50 CREATE TABLE Versions(versionId INTEGER PRIMARY KEY,version STR UNIQUE);
54 CREATE TABLE Flavors(flavorId integer primary key, flavor str unique);
58 CREATE TEMPORARY TABLE tlList (
90 # Create a indices, analyze and rerun the query.
95 CREATE INDEX InstancesNameIdx ON Instances(troveName);
96 CREATE UNIQUE INDEX InstancesIdx
  /external/chromium_org/v8/test/mjsunit/
readonly.js 30 // Different ways to create an object.
41 return Object.create(Object.prototype);
52 return function() { return Object.create(proto); }
83 // Create a fresh constructor.
118 var p = Object.create(o.__proto__);
124 var p = Proxy.create({
167 f(function(strict, create, readonly) {
174 var o = create();
184 var o = create();
203 TestAllCreates(function(create) {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DataContext.java 46 * @param name the name of the local variable to fetch or create.
56 * @param name the name of the local variable to fetch or create.
69 * requiring loops create a full Data tree.
71 * @param name the name of the local variable to fetch or create.
83 * {@code null}, if it does not exist. If {@link #findVariable} is called with {@code create ==
86 * @param name the name of the local variable to fetch or create.
93 * the root Data object. If not found then and create is {@code true}, then a new node is created
99 * @param name the name of the variable to find and/or create.
100 * @param create if {@link true} then a new node will be created if an existing Data node with the
104 * exists and {@code create} is {@code false}
    [all...]
  /external/llvm/include/llvm/
DIBuilder.h 111 /// createFile - Create a file descriptor to hold debugging information
115 /// createEnumerator - Create a single enumerator value.
118 /// \brief Create a DWARF unspecified type.
121 /// \brief Create C++11 nullptr type.
124 /// createBasicType - Create debugging information entry for a basic
133 /// createQualifiedType - Create debugging information entry for a qualified
139 /// createPointerType - Create debugging information entry for a pointer.
148 /// \brief Create debugging information entry for a pointer to member.
153 /// createReferenceType - Create debugging information entry for a c++
157 /// createTypedef - Create debugging information entry for a typedef
    [all...]
  /external/smack/src/com/kenai/jbosh/
TerminalBindingCondition.java 45 create("host-gone", "The target domain specified in the 'to' "
50 create("host-unknown", "The target domain specified in the 'to' "
55 create("improper-addressing", "The initialization element lacks a "
60 create("internal-server-error", "The connection manager has "
72 create("other-request", "Another request being processed at the "
82 create("remote-connection-failed", "The connection manager was "
87 create("remote-stream-error", "Encapsulated transport protocol "
91 create("see-other-uri", "The connection manager does not operate "
97 create("system-shutdown", "The connection manager is being shut "
102 create("undefined-condition", "Unknown or undefined error
128 private static TerminalBindingCondition create( method in class:TerminalBindingCondition
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_program_store.java 57 ditherEnable = b.setDitherEnabled(true).create();
60 colorRWriteEnable = b.setColorMaskEnabled(true, false, false, false).create();
63 colorGWriteEnable = b.setColorMaskEnabled(false, true, false, false).create();
66 colorBWriteEnable = b.setColorMaskEnabled(false, false, true, false).create();
69 colorAWriteEnable = b.setColorMaskEnabled(false, false, false, true).create();
73 ProgramStore.BlendDstFunc.ZERO).create();
77 ProgramStore.BlendDstFunc.DST_ALPHA).create();
80 depthWriteEnable = b.setDepthMaskEnabled(true).create();
83 depthFunc = b.setDepthFunc(ProgramStore.DepthFunc.GREATER).create();
143 ProgramStore ps = pb.create();
    [all...]
  /frameworks/wilhelm/tests/sandbox/
engine.c 59 printf("Create an engine and request all available interfaces\n");
62 printf("Create engine with numSupportedInterfaces > 0 but NULL pointers\n");
71 printf("Create engine with no place to return the new engine object\n");
75 printf("Create engine with NULL interface pointer\n");
82 printf("Create an engine with numOptions > 0 but NULL pointer\n");
90 printf("Create engine with non-sensical option\n");
95 printf("Create an engine and require non-sensical volume interface\n");
103 printf("Create an engine and politely request a non-sensical interface with options\n");
129 printf("Create engine again\n");
155 printf("Create too many engines\n")
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 31 * Used in PhotoProvider to create and access the database containing
39 private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
137 StringBuilder create = new StringBuilder(SQL_CREATE_TABLE); local
138 create.append(table).append('(');
142 create.append(',');
146 create.append(val).append(' ');
149 create.append(')');
152 db.execSQL(create.toString());
166 ArrayList<String[]> create = new ArrayList<String[]>(createTable.length); local
168 create.add(line)
    [all...]
  /dalvik/vm/
UtfString.h 63 * Create a java.lang.String[] from a vector of C++ strings.
73 * Create a java/lang/String from a C string.
82 * Create a java/lang/String from a C++ string.
91 * Create a java/lang/String from a C string, given its UTF-16 length
114 * Create a java/lang/String from a Unicode string.
121 * Create a UTF-8 C string from a java/lang/String. Caller must free
129 * Create a UTF-8 C string from a region of a java/lang/String. (Used by
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
ParseTreeBuilder.cs 50 ParseTree root = Create("<grammar " + grammarName + ">");
61 * What kind of node to create. You might want to override
65 public virtual ParseTree Create(object payload) {
70 return Create(EPSILON_PAYLOAD);
85 ParseTree ruleNode = Create(ruleName);
104 ParseTree elementNode = Create(token);
120 ParseTree errorNode = Create(e);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 53 ParseTree root = Create( "<grammar " + grammarName + ">" );
66 * What kind of node to create. You might want to override
70 public virtual ParseTree Create( object payload )
77 return Create( EPSILON_PAYLOAD );
95 ParseTree ruleNode = Create( ruleName );
117 ParseTree elementNode = Create( token );
135 ParseTree errorNode = Create( e );
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 49 Stream := TANTLRStringStream.Create('One'#13#10'Two');
109 Stream := TANTLRStringStream.Create('One'#13#10'Two');
144 S1 := TANTLRStringStream.Create('lexer'#13#10);
147 S2 := TANTLRStringStream.Create(GRAMMARSTR);
150 S3 := TANTLRStringStream.Create('grammar P;');
158 S1 := TANTLRStringStream.Create('');
167 Stream := TANTLRStringStream.Create('One'#13#10'Two'#13#10'Three');
  /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/chrome/browser/ui/views/status_icons/
status_icon_win.cc 23 // create the icon for some reason (for example, at startup).
25 LOG(WARNING) << "Unable to create status tray icon.";
36 // Create the icon.
63 LOG(WARNING) << "Unable to re-create status tray icon.";
72 // Create the icon.
93 LOG(WARNING) << "Unable to create status tray balloon.";
103 // Create context menu with the new contents.
  /external/chromium/chrome/common/extensions/docs/static/
bookmarks.html 5 Use the <code>chrome.bookmarks</code> module to create, organize,
8 which you can use to create a custom Bookmark Manager page.
44 <a href="#method-create"><code>create()</code></a>,
60 The first argument to <code>create()</code> specifies properties
67 chrome.bookmarks.create({'parentId': bookmarkBar.id,
82 chrome.bookmarks.create({'parentId': extensionsFolderId,
  /external/chromium/net/base/
network_change_notifier.h 61 // monitored), but if you do create it, you must do so before any other
64 static NetworkChangeNotifier* Create();
75 // Like Create(), but for use in tests. The mock object doesn't monitor any
81 // called back with notifications. This is safe to call if Create() has not
82 // been called (as long as it doesn't race the Create() call on another
89 // this is safe to call if Create() has not been called (as long as it doesn't
90 // race the Create() call on another thread), in which case it will simply do
  /external/chromium_org/cc/layers/
ui_resource_layer.cc 22 static scoped_ptr<ScopedUIResourceHolder> Create(LayerTreeHost* host,
30 resource_ = ScopedUIResource::Create(host, UIResourceBitmap(skbitmap));
38 static scoped_ptr<SharedUIResourceHolder> Create(UIResourceId id) {
54 scoped_refptr<UIResourceLayer> UIResourceLayer::Create() {
72 return UIResourceLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
119 ScopedUIResourceHolder::Create(layer_tree_host(), bitmap_);
134 ui_resource_holder_ = SharedUIResourceHolder::Create(resource_id);
  /external/chromium_org/chrome/app/test_data/
cert_maker.bat 7 REM Create a Cert Authority.
12 REM Create a second Cert Authority (used to test cert pinning).
18 REM Create a self-signed cert.
28 REM Create a signing cert from our first CA, with proper company name.
39 REM Create a signing cert from our first CA, with wrong company name.
50 REM Create a signing cert from the other CA.
62 REM Create an expired signing cert from our first CA.
  /external/chromium_org/remoting/host/
ipc_util_win.cc 37 // Create a security descriptor that will be used to protect the named pipe in
47 // Create the server end of the channel.
69 // Create the client end of the channel. This code should match the code in
94 // Create security descriptor for the channel.
98 "Failed to create a security descriptor for the Chromoting IPC channel";
111 // Create the server end of the pipe. This code should match the code in
125 "Failed to create the server end of the Chromoting IPC channel";
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementWrapperFactory.cpp.tmpl 26 typedef v8::Handle<v8::Object> (*Create{{namespace}}ElementWrapperFunction)({{namespace}}Element*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
28 static v8::Handle<v8::Object> create{{namespace}}ElementWrapper({{namespace}}Element*, v8::Handle<v8::Object>, v8::Isolate*)
35 static v8::Handle<v8::Object> create{{js_interface}}Wrapper({{namespace}}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
51 typedef HashMap<StringImpl*, Create{{namespace}}ElementWrapperFunction> FunctionMap;
55 map.set({{tag|symbol}}Tag.localName().impl(), create{{tag.js_interface}}Wrapper);
59 Create{{namespace}}ElementWrapperFunction createWrapperFunction = map.get(element->localName().impl());
60 if (createWrapperFunction == create{{namespace}}ElementWrapper)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunnerTest.cpp 77 static PassOwnPtr<MarkingBooleanTask> create(bool* toBeMarked) function in class:__anon10644::FINAL
99 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
102 runner->postTask(MarkingBooleanTask::create(&isMarked));
111 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
115 runner->postTask(MarkingBooleanTask::create(&isMarked));
129 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
133 runner->postTask(MarkingBooleanTask::create(&isMarked));
  /external/chromium_org/third_party/WebKit/Source/core/events/
FocusEvent.h 44 static PassRefPtr<FocusEvent> create() function in class:WebCore::FocusEvent
49 static PassRefPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget) function in class:WebCore::FocusEvent
54 static PassRefPtr<FocusEvent> create(const AtomicString& type, const FocusEventInit& initializer) function in class:WebCore::FocusEvent
78 static PassRefPtr<FocusEventDispatchMediator> create(PassRefPtr<FocusEvent>);
87 static PassRefPtr<BlurEventDispatchMediator> create(PassRefPtr<FocusEvent>);
96 static PassRefPtr<FocusInEventDispatchMediator> create(PassRefPtr<FocusEvent>);
105 static PassRefPtr<FocusOutEventDispatchMediator> create(PassRefPtr<FocusEvent>);

Completed in 497 milliseconds

<<21222324252627282930>>