Searched refs:store (Results 1 - 25 of 454) sorted by relevance

1234567891011>>

/external/e2fsprogs/tests/progs/test_data/
H A Dtest.icount11 store 0 0
15 store 20001 0
21 # OK, now let's test fetch and store. We also test the boundary cases
25 store 1 1
27 store 1 2
29 store 1 3
31 store 1 1
33 store 1 0
36 store 20000 0
38 store 2000
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebNavigationData.cpp31 WebNavigationData::WebNavigationData(const WebNavigationDataStore& store) argument
32 : m_store(store)
/external/v8/test/mjsunit/
H A Dstore-dictionary.js28 // 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(
[all...]
H A Dpolymorph-arrays.js110 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_arra
[all...]
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_unittest_helper.cc28 void SafeBrowsingStoreTestEmpty(SafeBrowsingStore* store) { argument
29 EXPECT_TRUE(store->BeginUpdate());
32 store->GetAddChunks(&chunks);
34 store->GetSubChunks(&chunks);
38 EXPECT_FALSE(store->CheckAddChunk(0));
39 EXPECT_FALSE(store->CheckAddChunk(1));
40 EXPECT_FALSE(store->CheckAddChunk(-1));
42 EXPECT_FALSE(store->CheckSubChunk(0));
43 EXPECT_FALSE(store->CheckSubChunk(1));
44 EXPECT_FALSE(store
59 SafeBrowsingStoreTestStorePrefix(SafeBrowsingStore* store) argument
148 SafeBrowsingStoreTestSubKnockout(SafeBrowsingStore* store) argument
221 SafeBrowsingStoreTestDeleteChunks(SafeBrowsingStore* store) argument
320 SafeBrowsingStoreTestDelete(SafeBrowsingStore* store, const FilePath& filename) argument
[all...]
H A Dsafe_browsing_store_unittest_helper.h30 // Test that the empty store looks empty.
31 void SafeBrowsingStoreTestEmpty(SafeBrowsingStore* store);
33 // Write some prefix data to the store and verify that it looks like
35 void SafeBrowsingStoreTestStorePrefix(SafeBrowsingStore* store);
38 void SafeBrowsingStoreTestSubKnockout(SafeBrowsingStore* store);
41 void SafeBrowsingStoreTestDeleteChunks(SafeBrowsingStore* store);
43 // Test that deleting the store deletes the store.
44 void SafeBrowsingStoreTestDelete(SafeBrowsingStore* store,
50 // within the class, as a pointer, and |filename| is that store'
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMMap.cpp93 DOMDataStore& store = getDOMDataStore(); local
100 DOMData::removeObjectsFromWrapperMap<Node>(&store, store.domNodeMap());
104 DOMData::removeObjectsFromWrapperMap<SVGElementInstance>(&store, store.domSvgElementInstanceMap());
109 DOMData::removeObjectsFromWrapperMap<void>(&store, store.domObjectMap());
112 DOMData::removeObjectsFromWrapperMap<void>(&store, store.activeDomObjectMap());
122 DOMDataStore* store local
137 DOMDataStore* store = list[i]; local
152 DOMDataStore* store = list[i]; local
169 DOMDataStore* store = list[i]; local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterMeshConvexHullShape.java34 * @param store
35 * the variable to store with coordinates of randomly selected selected point inside a convex hull
39 public void getRandomPoint(Vector3f store) { argument
40 super.getRandomPoint(store);
43 store.multLocal(FastMath.nextRandomFloat());
50 * @param store
51 * the variable to store with coordinates of randomly selected selected point inside a convex hull
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { argument
58 super.getRandomPointAndNormal(store, normal);
61 store
[all...]
H A DEmitterShape.java45 * @param store
46 * store variable for initial position
48 public void getRandomPoint(Vector3f store); argument
52 * @param store
53 * store variable for initial position
55 * store variable for initial normal
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal); argument
H A DEmitterSphereShape.java75 public void getRandomPoint(Vector3f store) { argument
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) { argument
85 this.getRandomPoint(store);
/external/chromium/chrome/browser/prefs/
H A Dpref_service_mock_builder.cc22 PrefServiceMockBuilder::WithManagedPlatformPrefs(PrefStore* store) { argument
23 managed_platform_prefs_ = store;
28 PrefServiceMockBuilder::WithManagedCloudPrefs(PrefStore* store) { argument
29 managed_cloud_prefs_ = store;
34 PrefServiceMockBuilder::WithExtensionPrefs(PrefStore* store) { argument
35 extension_prefs_ = store;
40 PrefServiceMockBuilder::WithCommandLinePrefs(PrefStore* store) { argument
41 command_line_prefs_ = store;
46 PrefServiceMockBuilder::WithUserPrefs(PersistentPrefStore* store) { argument
47 user_prefs_ = store;
52 WithRecommendedPlatformPrefs(PrefStore* store) argument
58 WithRecommendedCloudPrefs(PrefStore* store) argument
[all...]
H A Dpref_service_mock_builder.h30 // These take ownership of the |store| parameter.
31 PrefServiceMockBuilder& WithManagedPlatformPrefs(PrefStore* store);
32 PrefServiceMockBuilder& WithManagedCloudPrefs(PrefStore* store);
33 PrefServiceMockBuilder& WithExtensionPrefs(PrefStore* store);
34 PrefServiceMockBuilder& WithCommandLinePrefs(PrefStore* store);
35 PrefServiceMockBuilder& WithUserPrefs(PersistentPrefStore* store);
36 PrefServiceMockBuilder& WithRecommendedPlatformPrefs(PrefStore* store);
37 PrefServiceMockBuilder& WithRecommendedCloudPrefs(PrefStore* store);
49 // Specifies to use an actual command-line backed command-line pref store.
52 // Specifies to use an actual file-backed user pref store
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebNavigationDataStore.h43 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebNavigationDataStore& store) argument
45 if (!decoder->decode(store.url))
47 if (!decoder->decode(store.title))
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
31 Store store; member in class:clang::ento::StoreRef
40 return x.store == store;
46 Store getStore() const { return store; }
H A DStore.h55 /// \param[in] store The analysis state.
61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
64 /// \param[in] store The analysis state.
70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V);
74 /// \brief Create a new store with the specified binding removed.
75 /// \param ST the original store, that is the basis for the new store.
79 /// \brief Create a new store that binds a value to a compound literal.
81 /// \param ST The original store whos
167 incrementReferenceCount(Store store) argument
172 decrementReferenceCount(Store store) argument
257 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactQuaternionArray.java86 protected void serialize(int i, Quaternion store) { argument
88 array[j] = store.getX();
89 array[j + 1] = store.getY();
90 array[j + 2] = store.getZ();
91 array[j + 3] = store.getW();
95 protected Quaternion deserialize(int i, Quaternion store) { argument
97 store.set(array[j], array[j + 1], array[j + 2], array[j + 3]);
98 return store;
H A DCompactVector3Array.java86 protected void serialize(int i, Vector3f store) { argument
88 array[j] = store.getX();
89 array[j+1] = store.getY();
90 array[j+2] = store.getZ();
94 protected Vector3f deserialize(int i, Vector3f store) { argument
96 store.set(array[j], array[j+1], array[j+2]);
97 return store;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
H A DGeoMap.java155 * @param store A preallocated FloatBuffer where to store the data (optional), size must be >= getWidth()*getHeight()*3
156 * @returns store, or a new FloatBuffer if store is null
160 public FloatBuffer writeNormalArray(FloatBuffer store, Vector3f scale) { argument
162 if (store!=null){
163 if (store.remaining() < getWidth()*getHeight()*3)
166 store = BufferUtils.createFloatBuffer(getWidth()*getHeight()*3);
168 store.rewind();
214 // store
237 writeVertexArray(FloatBuffer store, Vector3f scale, boolean center) argument
266 getUV(int x, int y, Vector2f store) argument
272 getUV(int i, Vector2f store) argument
276 writeTexCoordArray(FloatBuffer store, Vector2f offset, Vector2f scale) argument
300 writeIndexArray(IntBuffer store) argument
[all...]
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface_unittest.cc14 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);
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollisionResult.java90 public Triangle getTriangle(Triangle store){ argument
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/math/
H A DFastMath.java129 * @param store a vector3f to store the result
132 public static Vector3f interpolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) { argument
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 a
186 extrapolateLinear(float scale, Vector3f startValue, Vector3f endValue, Vector3f store) argument
256 interpolateCatmullRom(float u, float T, Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, Vector3f store) argument
327 interpolateBezier(float u, Vector3f p0, Vector3f p1, Vector3f p2, Vector3f p3, Vector3f store) argument
804 sphericalToCartesian(Vector3f sphereCoords, Vector3f store) argument
819 cartesianToSpherical(Vector3f cartCoords, Vector3f store) argument
840 sphericalToCartesianZ(Vector3f sphereCoords, Vector3f store) argument
855 cartesianZToSpherical(Vector3f cartCoords, Vector3f store) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java144 protected float getHeightAtPostion(ByteBuffer buf, Image image, int position, ColorRGBA store) { argument
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
[all...]
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_editor_gtk_unittest.cc103 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,
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...]
H A Dbookmark_tree_model.h33 // 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/
H A Daccess_token_store_browsertest.cc15 // 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
42 StartTestStepFromClientThread( scoped_refptr<AccessTokenStore>* store, CancelableRequestConsumerBase* consumer, AccessTokenStore::LoadAccessTokensCallbackType* callback) argument
[all...]

Completed in 371 milliseconds

1234567891011>>