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

1 2 34 5 6 7 8 91011>>

  /external/libffi/man/
Makefile.am 1 ## Process this with automake to create Makefile.in
  /external/skia/
whitespace.txt 1 You can modify this file to create no-op changelists (like this one).
  /frameworks/base/docs/html/training/
building-content-sharing.jd 8 <p>These classes teach you how to create apps that share data between apps and devices.</p>
building-multimedia.jd 9 create rich multimedia apps that behave the way users expect.</p
  /sdk/testapps/javaProjectTest/
README.txt 3 - Create User Library called "USERLIBTEST2"
  /sdk/testapps/userLibTest/
README.txt 3 - Create User Library called "USERLIBTEST"
  /external/chromium_org/third_party/sqlite/src/test/
tkt1644.test 27 # Create two tables T1 and T2 and make V1 point to T1.
30 CREATE TABLE t1(a);
32 CREATE TABLE t2(b);
34 CREATE TEMP VIEW v1 AS SELECT * FROM t1;
46 CREATE TEMP VIEW v1 AS SELECT * FROM t2;
59 # Create a temp table T1. Make sure the cache is invalidated so that
64 CREATE TEMP TABLE t1(x);
74 CREATE TEMP TABLE temp_t1(a, b);
86 CREATE TABLE real_t1(a, b);
87 CREATE TEMP VIEW temp_v1 AS SELECT * FROM real_t1
    [all...]
triggerD.test 30 CREATE TABLE t1(rowid, oid, _rowid_, x);
31 CREATE TABLE log(a,b,c,d,e);
32 CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGIN
35 CREATE TRIGGER r2 AFTER INSERT ON t1 BEGIN
38 CREATE TRIGGER r3 BEFORE UPDATE ON t1 BEGIN
42 CREATE TRIGGER r4 AFTER UPDATE ON t1 BEGIN
46 CREATE TRIGGER r5 BEFORE DELETE ON t1 BEGIN
49 CREATE TRIGGER r6 AFTER DELETE ON t1 BEGIN
81 CREATE TABLE t1(w,x,y,z);
82 CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGI
    [all...]
vtab5.test 24 # statement can be executed immediately after a CREATE or schema reload. The
31 CREATE TABLE treal(a VARCHAR(16), b INTEGER, c FLOAT);
33 CREATE VIRTUAL TABLE techo USING echo(treal);
76 # assigned to virtual table columns via the "CREATE TABLE" statement
81 CREATE TABLE strings(str COLLATE NOCASE);
91 CREATE VIRTUAL TABLE echo_strings USING echo(strings);
101 # Test that it is impossible to create a triggger on a virtual table.
106 CREATE TRIGGER trig INSTEAD OF INSERT ON echo_strings BEGIN
110 } {1 {cannot create triggers on virtual tables}}
113 CREATE TRIGGER trig AFTER INSERT ON echo_strings BEGI
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
HashBasedTableTest.java 32 @Override protected Table<String, Integer, Character> create( method in class:HashBasedTableTest
34 Table<String, Integer, Character> table = HashBasedTable.create();
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20);
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0);
51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20);
55 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0);
62 HashBasedTable.create(100, -5);
67 HashBasedTable.create(-5, 20);
74 = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
75 Table<String, Integer, Character> copy = HashBasedTable.create(original)
    [all...]
MultimapCollectionTest.java 175 static <K, V> PopulatableMapAsMultimap<K, V> create() { method in class:MultimapCollectionTest.PopulatableMapAsMultimap
221 public Collection<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntriesGenerator
249 @Override public List<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntriesListGenerator
250 return (List<Entry<String, Integer>>) super.create(elements);
258 @Override public Set<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntrySetGenerator
259 return (Set<Entry<String, Integer>>) super.create(elements);
281 @Override protected Set<String> create(String[] elements) {
282 SetMultimap<Integer, String> multimap = HashMultimap.create();
292 @Override protected Set<String> create(String[] elements) {
294 = LinkedHashMultimap.create();
    [all...]
AbstractTableReadTest.java 48 create(Object... data); method in class:AbstractTableReadTest
56 table = create();
60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
73 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
81 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
89 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
98 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
112 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
118 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
123 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c')
    [all...]
  /device/lge/mako/sepolicy/
mediaserver.te 8 # Permit mediaserver to create sockets
9 allow mediaserver self:socket create;
  /external/chromium_org/ui/base/touch/
touch_editing_controller.cc 13 TouchSelectionController* TouchSelectionController::create( function in class:ui::TouchSelectionController
16 return g_shared_instance->create(client_view);
  /external/clang/bindings/python/tests/cindex/
test_index.py 7 index = Index.create()
12 index = Index.create()
  /external/wpa_supplicant_8/hostapd/
hostapd.eap_user_sqlite 0 CREATE TABLE users(
8 CREATE TABLE wildcards(
  /external/chromium_org/chrome/renderer/
content_settings_observer_unittest.cc 24 WebSecurityOrigin::create(chrome_ui_url),
30 WebSecurityOrigin::create(chrome_dev_tools_url),
36 WebSecurityOrigin::create(extension_url),
41 WebSecurityOrigin::create(file_url),
44 WebSecurityOrigin::create(file_url),
50 WebSecurityOrigin::create(http_url),
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 12 // Create one test item for each context type.
18 var id = chrome.contextMenus.create({"title": title, "contexts":[context],
24 // Create a parent item and two children.
25 var parent = chrome.contextMenus.create({"title": "Test parent item"});
26 var child1 = chrome.contextMenus.create(
28 var child2 = chrome.contextMenus.create(
33 // Create some radio items.
39 var radio1 = chrome.contextMenus.create({"title": "Radio 1", "type": "radio",
41 var radio2 = chrome.contextMenus.create({"title": "Radio 2", "type": "radio",
46 // Create some checkbox items.
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
manage_profile_overlay.css 21 #create-profile-name-input-container,
26 #create-profile-name,
31 #create-profile-name:invalid,
36 #create-profile-error-bubble,
51 #create-profile-error-bubble[hidden],
58 #create-profile-icon-grid,
64 :-webkit-any(#create-profile-content, #manage-profile-content) >
69 :-webkit-any(#create-profile-content, #manage-profile-content) >
74 :-webkit-any(#create-profile-content, #manage-profile-content) >
79 :-webkit-any(#create-profile-content, #manage-profile-content)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 12 // Create one test item for each context type.
18 var id = chrome.contextMenus.create({"title": title, "contexts":[context],
24 // Create a parent item and two children.
25 var parent = chrome.contextMenus.create({"title": "Test parent item"});
26 var child1 = chrome.contextMenus.create(
28 var child2 = chrome.contextMenus.create(
33 // Create some radio items.
39 var radio1 = chrome.contextMenus.create({"title": "Radio 1", "type": "radio",
41 var radio2 = chrome.contextMenus.create({"title": "Radio 2", "type": "radio",
46 // Create some checkbox items
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/
sample.js 28 // Create one test item for each context type.
34 var id = chrome.contextMenus.create({"title": title, "contexts":[context],
39 // Create a parent item and two children.
40 chrome.contextMenus.create({"title": "Test parent item", "id": "parent"});
41 chrome.contextMenus.create(
43 chrome.contextMenus.create(
47 // Create some radio items.
48 chrome.contextMenus.create({"title": "Radio 1", "type": "radio",
50 chrome.contextMenus.create({"title": "Radio 2", "type": "radio",
54 // Create some checkbox items
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmapTest.cpp 66 // Create the test memory cache instance and hook it in.
88 RefPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get());
89 imageElement->setImageResource(new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()));
91 RefPtr<ImageBitmap> imageBitmapNoCrop = ImageBitmap::create(imageElement.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height()));
92 RefPtr<ImageBitmap> imageBitmapInteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width() / 2, m_bitmap.height() / 2));
93 RefPtr<ImageBitmap> imageBitmapExteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width() / 2, -m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height()));
94 RefPtr<ImageBitmap> imageBitmapOutsideCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width(), -m_bitmap.height(), m_bitmap.width(), m_bitmap.height()));
108 RefPtr<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtilTest.cpp 94 RefPtr<CSSAnimationData> animation = CSSAnimationData::create();
106 operations1.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATURATE));
110 operations2.operations().append(BasicColorMatrixFilterOperation::create(1.0, FilterOperation::SATURATE));
113 RefPtr<CSSAnimationData> animation = CSSAnimationData::create();
125 operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
129 operations2.operations().append(TranslateTransformOperation::create(Length(4, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
132 RefPtr<CSSAnimationData> animation = CSSAnimationData::create();
144 operations1.operations().append(RotateTransformOperation::create(0, TransformOperation::Rotate));
148 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
151 RefPtr<CSSAnimationData> animation = CSSAnimationData::create();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValueTest.cpp 56 RefPtr<RenderStyle> style = RenderStyle::create();
60 expected = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true);
65 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true),
66 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(20, CSSPrimitiveValue::CSS_PX), true),
69 Length(CalculationValue::create(
79 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(30, CSSPrimitiveValue::CSS_PX), true),
80 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(40, CSSPrimitiveValue::CSS_NUMBER), true),
83 Length(CalculationValue::create(
94 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(50, CSSPrimitiveValue::CSS_PX), true),
95 CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(0.25, CSSPrimitiveValue::CSS_NUMBER), false)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/sound/
automaticallychosensoundsystem_unittest.cc 41 static SoundSystemInterface *Create() {
54 static SoundSystemInterface *Create() {
71 static SoundSystemInterface *Create() {
86 static SoundSystemInterface *Create() {
101 static SoundSystemInterface *Create() {
116 static SoundSystemInterface *Create() {
126 &NeverFailsToFailSoundSystem::Create,
137 &NullSoundSystem::Create,
149 &NeverFailsToFailSoundSystem::Create,
150 &NullSoundSystem::Create,
    [all...]

Completed in 1807 milliseconds

1 2 34 5 6 7 8 91011>>