Searched refs:store (Results 1 - 25 of 767) 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/chromium_org/v8/test/mjsunit/
H A Dtransition-elements-kind.js38 function store(a,x) { function
41 store([1.1], 'a');
42 store([1.1], 1.1);
43 %OptimizeFunctionOnNextCall(store);
47 store(b, 'a');
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...]
H A Domit-constant-mapcheck.js59 function store(v) { function
64 assertEquals(5, store(5));
65 assertEquals(8, store(8));
66 %OptimizeFunctionOnNextCall(store);
67 assertEquals(10, store(10));
69 store(7);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dtest_object_store_test.py11 store = TestObjectStore('namespace')
12 self.assertEqual(None, store.Get('hi').Get())
13 self.assertEqual({}, store.GetMulti(['hi', 'lo']).Get())
16 store = TestObjectStore('namespace')
17 store.Set('hi', 'bye')
18 self.assertEqual('bye', store.Get('hi').Get())
19 self.assertEqual({'hi': 'bye'}, store.GetMulti(['hi', 'lo']).Get())
20 store.Set('hi', 'blah')
21 self.assertEqual('blah', store.Get('hi').Get())
22 self.assertEqual({'hi': 'blah'}, store
[all...]
H A Dobject_store_creator_test.py22 store = self._creator.Create(_FooClass)
25 store.namespace)
26 self.assertFalse(store.start_empty)
29 store = self._creator.Create(_FooClass, category='hi')
32 store.namespace)
33 self.assertFalse(store.start_empty)
36 store = self._creator.Create(_FooClass, app_version=None)
37 self.assertEqual('class=_FooClass', store.namespace)
38 self.assertFalse(store.start_empty)
41 store
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Doptionsfile_unittest.cc60 OptionsFile store(kTestFile);
62 EXPECT_TRUE(store.Save());
64 EXPECT_FALSE(store.GetStringValue(kTestOptionA, &out1));
65 EXPECT_FALSE(store.GetStringValue(kTestOptionB, &out2));
66 EXPECT_TRUE(store.SetStringValue(kTestOptionA, kTestString1));
67 EXPECT_TRUE(store.Save());
68 EXPECT_TRUE(store.Load());
69 EXPECT_TRUE(store.SetStringValue(kTestOptionB, kTestString2));
70 EXPECT_TRUE(store.Save());
71 EXPECT_TRUE(store
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-polymorphic-store.js38 function store(o, v) { function
42 store(o2, 0);
43 store(o1, 0);
44 store(o2, 0);
45 %OptimizeFunctionOnNextCall(store);
46 store(o1, 10);
/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...]
/external/chromium_org/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 base::FilePath& filename) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_normals.c52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
56 if (!store->NormalTransform)
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
71 &store->normal ); /* resulting normals */
74 store->normal.stride = 4 * sizeof(GLfloat);
77 store->normal.stride = 0;
80 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
88 * Examine current GL state and set the store->NormalTransform pointer
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
99 store
152 struct normal_stage_data *store; local
170 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
[all...]
H A Dt_vb_texmat.c59 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
89 struct texmat_stage_data *store; local
92 stage->privatePtr = CALLOC(sizeof(*store));
93 store = TEXMAT_STAGE_DATA(stage);
94 if (!store)
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
106 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
109 if (store) {
[all...]
H A Dt_vb_vertex.c140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local
156 VB->EyePtr = TransformRaw( &store->eye,
161 VB->ClipPtr = TransformRaw( &store->clip,
184 store->ormask = 0;
185 store->andmask = CLIP_FRUSTUM_BITS;
190 &store->proj,
191 store->clipmask,
192 &store->ormask,
193 &store->andmask,
200 store
236 struct vertex_stage_data *store; local
261 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
[all...]
H A Dt_vb_points.c53 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
61 GLfloat (*size)[4] = store->PointSize.data;
72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
83 struct point_stage_data *store; local
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
86 if (!store)
89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
97 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
98 if (store) {
[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...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
56 if (!store->NormalTransform)
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
71 &store->normal ); /* resulting normals */
74 store->normal.stride = 4 * sizeof(GLfloat);
77 store->normal.stride = 0;
80 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
88 * Examine current GL state and set the store->NormalTransform pointer
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
99 store
152 struct normal_stage_data *store; local
170 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
[all...]
H A Dt_vb_texmat.c59 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
89 struct texmat_stage_data *store; local
92 stage->privatePtr = CALLOC(sizeof(*store));
93 store = TEXMAT_STAGE_DATA(stage);
94 if (!store)
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
106 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
109 if (store) {
[all...]
H A Dt_vb_vertex.c140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local
156 VB->EyePtr = TransformRaw( &store->eye,
161 VB->ClipPtr = TransformRaw( &store->clip,
184 store->ormask = 0;
185 store->andmask = CLIP_FRUSTUM_BITS;
190 &store->proj,
191 store->clipmask,
192 &store->ormask,
193 &store->andmask,
200 store
236 struct vertex_stage_data *store; local
261 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
[all...]
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_token_store_unittest.cc13 CloudPrintTokenStore* store = new CloudPrintTokenStore; local
14 EXPECT_EQ(store, CloudPrintTokenStore::current());
17 delete store;
/external/chromium_org/rlz/lib/
H A Drlz_lib_clear.cc21 rlz_lib::RlzValueStore* store = lock.GetStore(); local
22 if (!store || !store->HasAccess(rlz_lib::RlzValueStore::kWriteAccess))
26 result = store->ClearAllProductEvents(product);
27 result &= store->ClearAllStatefulEvents(product);
33 rlz_lib::RlzValueStore* store = lock.GetStore(); local
34 if (!store || !store->HasAccess(rlz_lib::RlzValueStore::kWriteAccess))
39 VERIFY(store->ClearPingTime(product));
44 VERIFY(store
[all...]
/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...]
/external/chromium_org/base/prefs/
H A Dpref_service_builder.cc30 PrefServiceBuilder& PrefServiceBuilder::WithManagedPrefs(PrefStore* store) { argument
31 managed_prefs_ = store;
35 PrefServiceBuilder& PrefServiceBuilder::WithExtensionPrefs(PrefStore* store) { argument
36 extension_prefs_ = store;
40 PrefServiceBuilder& PrefServiceBuilder::WithCommandLinePrefs(PrefStore* store) { argument
41 command_line_prefs_ = store;
46 PersistentPrefStore* store) {
47 user_prefs_ = store;
51 PrefServiceBuilder& PrefServiceBuilder::WithRecommendedPrefs(PrefStore* store) { argument
52 recommended_prefs_ = store;
45 WithUserPrefs( PersistentPrefStore* store) argument
[all...]

Completed in 7817 milliseconds

1234567891011>>