/external/chromium_org/content/test/data/indexeddb/ |
cursor_prefetch.js | 21 var store = db.createObjectStore('store'); 22 store.createIndex('index', ''); 27 var trans = db.transaction(['store'], 'readwrite'); 31 var store = trans.objectStore('store'); 32 debug("Storing " + kNumberOfItems + " object in the object store."); 34 var req = store.put(i, i); 44 // Test iterating straight through the object store. 46 var trans = db.transaction(['store'], 'readwrite') [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
AdtPrefs.java | 83 /** default store, provided by eclipse */ 401 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 402 store.setValue(PREFS_LINT_ON_SAVE, on); 411 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 412 store.setValue(PREFS_LINT_ON_EXPORT, on); 433 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 434 store.setValue(PREFS_SHARED_LAYOUT_EDITOR, on); 456 // need to save this new value to the store 457 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 458 store.setValue(PREFS_PALETTE_MODE, palette) 469 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 490 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 496 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 568 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 590 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 614 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local 630 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local [all...] |
/external/chromium/chrome/browser/policy/ |
configuration_policy_store_interface_unittest.cc | 14 MockConfigurationPolicyStore store; local 15 EXPECT_CALL(store, Apply(_, _)).Times(3); 16 ObservingPolicyStoreInterface observer(&store); 26 EXPECT_TRUE(store.Get(kPolicyJavascriptEnabled) != NULL); 27 EXPECT_TRUE(store.Get(kPolicyProxyMode) != NULL); 28 EXPECT_TRUE(store.Get(kPolicyIncognitoEnabled) != NULL); 29 EXPECT_TRUE(store.Get(kPolicyPrintingEnabled) == NULL);
|
configuration_policy_provider.h | 55 // |store| to apply specific policies. Returns true if the policy could be 57 virtual bool Provide(ConfigurationPolicyStoreInterface* store) = 0; 65 // Decodes the value tree and writes the configuration to the given |store|. 67 ConfigurationPolicyStoreInterface* store); 70 // the given |store|. 72 ConfigurationPolicyStoreInterface* store);
|
asynchronous_policy_provider.cc | 25 ConfigurationPolicyStoreInterface* store) { 28 ApplyPolicyValueTree(loader_->policy(), store);
|
mock_configuration_policy_provider.cc | 36 ConfigurationPolicyStoreInterface* store) { 39 store->Apply(current->first, current->second->DeepCopy());
|
/external/chromium_org/v8/test/mjsunit/ |
store-dictionary.js | 28 // Test dictionary store ICs. 31 function store(obj) { obj.x = 42; } function 37 // Make the store ic in the 'store' function go into dictionary store 40 store(o); 48 // Attempt to store using the store ic in the 'store' function. 49 store(o) [all...] |
polymorph-arrays.js | 110 function store(a, i, val) { 124 store(object_array, 1, 256); 125 store(js_array, 1, 256); 126 store(sparse_object_array, 1, 256); 127 store(sparse_js_array, 1, 256); 129 return store; 142 store = make_polymorphic_store_function(); 143 store(object_array, 2, 257); 144 store = make_polymorphic_store_function(); 145 store(js_array, 2, 257) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
CollisionResult.java | 90 public Triangle getTriangle(Triangle store){ 91 if (store == null) 92 store = new Triangle(); 95 m.getTriangle(triangleIndex, store); 96 store.calculateCenter(); 97 store.calculateNormal(); 98 return store;
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterSphereShape.java | 75 public void getRandomPoint(Vector3f store) { 77 store.x = (FastMath.nextRandomFloat() * 2f - 1f) * radius; 78 store.y = (FastMath.nextRandomFloat() * 2f - 1f) * radius; 79 store.z = (FastMath.nextRandomFloat() * 2f - 1f) * radius; 80 } while (store.distance(center) > radius); 84 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { 85 this.getRandomPoint(store);
|
EmitterBoxShape.java | 60 public void getRandomPoint(Vector3f store) { 61 store.x = min.x + len.x * FastMath.nextRandomFloat(); 62 store.y = min.y + len.y * FastMath.nextRandomFloat(); 63 store.z = min.z + len.z * FastMath.nextRandomFloat(); 69 * @param store the variable to store the point data 73 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { 74 this.getRandomPoint(store);
|
/external/v8/test/mjsunit/ |
store-dictionary.js | 28 // Test dictionary store ICs. 31 function store(obj) { obj.x = 42; } function 37 // Make the store ic in the 'store' function go into dictionary store 40 store(o); 48 // Attempt to store using the store ic in the 'store' function. 49 store(o) [all...] |
polymorph-arrays.js | 110 function store(a, i, val) { 124 store(object_array, 1, 256); 125 store(js_array, 1, 256); 126 store(sparse_object_array, 1, 256); 127 store(sparse_js_array, 1, 256); 129 return store; 142 store = make_polymorphic_store_function(); 143 store(object_array, 2, 257); 144 store = make_polymorphic_store_function(); 145 store(js_array, 2, 257) [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
TrustedCertificateKeyStoreSpi.java | 33 private final TrustedCertificateStore store = new TrustedCertificateStore(); field in class:TrustedCertificateKeyStoreSpi 50 return store.getCertificate(alias); 54 return store.getCreationDate(alias); 78 return Collections.enumeration(store.aliases()); 82 return store.containsAlias(alias); 86 return store.aliases().size(); 101 return store.getCertificateAlias(c);
|
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_editor_gtk_unittest.cc | 119 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 121 ASSERT_TRUE(gtk_tree_model_get_iter_first(store, &toplevel)); 123 ASSERT_TRUE(gtk_tree_model_iter_next(store, &toplevel)); 128 ASSERT_TRUE(gtk_tree_model_iter_next(store, &toplevel)); 129 ASSERT_FALSE(gtk_tree_model_iter_next(store, &toplevel)); 131 ASSERT_FALSE(gtk_tree_model_iter_next(store, &toplevel)); 137 ASSERT_EQ(2, gtk_tree_model_iter_n_children(store, &bookmark_bar_node)); 138 ASSERT_TRUE(gtk_tree_model_iter_children(store, &child, &bookmark_bar_node)); 140 ASSERT_EQ("F1", UTF16ToUTF8(GetTitleFromTreeIter(store, &child))); 141 ASSERT_TRUE(gtk_tree_model_iter_next(store, &child)) 166 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 186 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 203 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 225 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 244 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 299 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local [all...] |
bookmark_tree_model.h | 32 // Make a tree store that has two columns: name and id. 40 // node->representation of the node associated with |selected_id| in |store|. 42 // the tree store will effectively be a list). |only_folders| indicates whether 45 GtkTreeStore* store, GtkTreeIter* selected_iter); 50 GtkTreeStore* store, GtkTreeIter* selected_iter, 53 // Makes a tree view for the store. This will take ownership of |store| and the 55 GtkWidget* MakeTreeViewForStore(GtkTreeStore* store);
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
FastMath.java | 129 * @param store a vector3f to store the result 132 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) { 133 if (store == null) { 134 store = new Vector3f(); 136 store.x = interpolateLinear(scale, startValue.x, endValue.x); 137 store.y = interpolateLinear(scale, startValue.y, endValue.y); 138 store.z = interpolateLinear(scale, startValue.z, endValue.z); 139 return store; 183 * @param store an initialized vector to store the return valu [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
ImageBasedHeightMap.java | 144 protected float getHeightAtPostion(ByteBuffer buf, Image image, int position, ColorRGBA store) {
148 store.set(byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()));
149 return calculateHeight(store.r, store.g, store.b);
156 store.set(r,g,b,a);
157 return calculateHeight(store.r, store.g, store.b);
160 store.set(byte2float(buf.get()), byte2float(buf.get()), byte2float(buf.get()), 1); [all...] |
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_editor_gtk_unittest.cc | 103 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 105 ASSERT_TRUE(gtk_tree_model_get_iter_first(store, &toplevel)); 107 ASSERT_TRUE(gtk_tree_model_iter_next(store, &toplevel)); 109 ASSERT_FALSE(gtk_tree_model_iter_next(store, &toplevel)); 114 ASSERT_EQ(2, gtk_tree_model_iter_n_children(store, &bookmark_bar_node)); 115 ASSERT_TRUE(gtk_tree_model_iter_children(store, &child, &bookmark_bar_node)); 117 ASSERT_EQ("F1", UTF16ToUTF8(GetTitleFromTreeIter(store, &child))); 118 ASSERT_TRUE(gtk_tree_model_iter_next(store, &child)); 119 ASSERT_EQ("F2", UTF16ToUTF8(GetTitleFromTreeIter(store, &child))); 120 ASSERT_FALSE(gtk_tree_model_iter_next(store, &child)) 143 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 164 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 182 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 204 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 223 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local 275 GtkTreeModel* store = GTK_TREE_MODEL(editor.tree_store_); local [all...] |
bookmark_tree_model.h | 33 // Make a tree store that has two columns: name and id. 41 // node->representation of the node associated with |selected_id| in |store|. 43 // the tree store will effectively be a list). |only_folders| indicates whether 46 GtkTreeStore* store, GtkTreeIter* selected_iter); 51 GtkTreeStore* store, GtkTreeIter* selected_iter, 54 // Makes a tree view for the store. This will take ownership of |store| and the 56 GtkWidget* MakeTreeViewForStore(GtkTreeStore* store);
|
/external/chromium/chrome/browser/geolocation/ |
access_token_store_browsertest.cc | 15 // The token store factory implementation expects to be used from any well-known 43 scoped_refptr<AccessTokenStore>* store, 47 if (*store == NULL) 48 (*store) = NewChromePrefsAccessTokenStore(); 49 (*store)->LoadAccessTokens(consumer, callback); 60 scoped_refptr<AccessTokenStore> store(NewChromePrefsAccessTokenStore()); 66 store->LoadAccessTokens(&consumer, NewCallback( 70 consumer.GetClientData(store.get(), first_handle); 71 store->CancelRequest(first_handle); 75 store->LoadAccessTokens(&consumer, NewCallback [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_mac.h | 43 virtual void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store) { 44 net_config_watcher_->SetDynamicStoreNotificationKeys(store); 56 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
|
/external/chromium_org/chrome/browser/policy/cloud/ |
cloud_policy_core.h | 33 CloudPolicyStore* store); 39 CloudPolicyStore* store() { return store_; } function in class:policy::CloudPolicyCore 40 const CloudPolicyStore* store() const { return store_; } function in class:policy::CloudPolicyCore
|
user_cloud_policy_manager.cc | 22 scoped_ptr<UserCloudPolicyStore> store) 25 store.get()), 27 store_(store.Pass()) {
|
/external/chromium/chrome/browser/importer/ |
toolbar_importer_utils.cc | 25 net::CookieStore* store = local 30 std::string cookies = store->GetCookiesWithOptions(url, options);
|