Searched defs:store (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-clobbered-fp-regs.js30 function store(a, x, y) { function
49 store([1], 1, 1);
50 store([1], 1.1, 1);
51 store([1], 1.1, 1);
52 %OptimizeFunctionOnNextCall(store);
54 store([1], 1, 1)
H A Dregress-351261.js7 function store(a) { function
14 store(__v_8);
15 store(__v_7);
H A Dregress-crbug-319835.js35 function store(a, index) { function
42 store(training, -0x20000000);
43 store(training, -0x20000000 + 1);
44 store(training, -0x20000000);
45 store(training, -0x20000000 + 1);
46 %OptimizeFunctionOnNextCall(store);
50 store(a, i);
H A Dregress-331416.js41 function store(a, i, x) { function
44 store([1, 2, 3], "length", 3);
45 store(3);
46 store([1, 2, 3], 3, 3);
47 store(0, 0, 1);
48 %OptimizeFunctionOnNextCall(store);
50 store(a, 1, 1);
52 store(0, 0, 1);
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);
H A Dregress-store-heapobject.js9 function store(o, v) { function
13 store(o, undefined);
14 store(o, undefined);
19 store(o, 1);
/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 Dmegamorphic-callbacks.js32 function store(o) { function
46 store(o);
62 // Perform the store checks.
64 assertEquals(200, o.y_mirror, "normal store");
65 store(o);
66 assertEquals(42, o.y_mirror, "ic store");
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/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/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java66 public void setCookieStore(final CookieStore store) { argument
67 this.context.setAttribute(COOKIE_STORE, store);
/external/chromium_org/chrome/browser/chromeos/platform_keys/
H A Dplatform_keys_service_factory.cc45 extensions::StateStore* store = local
47 DCHECK(store);
48 return new PlatformKeysService(context, store);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc44 CloudPolicyStore* store = core->store(); local
45 ASSERT_TRUE(store);
50 new ExternalDataFetcher(store->external_data_manager(),
52 store->SetPolicyMapForTesting(policy_map);
H A Ddevice_local_account_extension_tracker.cc22 CloudPolicyStore* store,
24 : store_(store),
47 CloudPolicyStore* store) {
51 void DeviceLocalAccountExtensionTracker::OnStoreError(CloudPolicyStore* store) { argument
20 DeviceLocalAccountExtensionTracker( const DeviceLocalAccount& account, CloudPolicyStore* store, SchemaRegistry* schema_registry) argument
46 OnStoreLoaded( CloudPolicyStore* store) argument
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory.cc25 History::History(scoped_refptr<HistoryDataStore> store) argument
26 : store_(store),
/external/chromium_org/mojo/services/network/
H A Dcookie_store_impl.cc39 net::CookieStore* store = context_->url_request_context()->cookie_store(); local
40 if (!store) {
44 store->GetCookiesWithOptionsAsync(
54 net::CookieStore* store = context_->url_request_context()->cookie_store(); local
55 if (!store) {
59 store->SetCookieWithOptionsAsync(
H A Dnetwork_service_impl.cc28 void NetworkServiceImpl::GetCookieStore(InterfaceRequest<CookieStore> store) { argument
29 BindToRequest(new CookieStoreImpl(context_, origin_), &store);
/external/chromium_org/net/base/
H A Dkeygen_handler.h42 void set_stores_key(bool store) { stores_key_ = store;} argument
45 // Register the delegate to be used to get the token to store the key in, and
/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_org/third_party/icu/source/test/perf/perldriver/
H A DOutput.pm315 sub store { subroutine
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
/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...]
/external/chromium_org/v8/src/
H A Dhydrogen-store-elimination.cc6 #include "src/hydrogen-store-elimination.h"
41 // Remove any unobserved stores overwritten by this store.
57 void HStoreEliminationPhase::ProcessStore(HStoreNamedField* store) { argument
58 HValue* object = store->object()->ActualValue();
63 prev->CanBeReplacedWith(store)) {
64 // This store is guaranteed to overwrite the previous store.
66 TRACE(("++ Unobserved store S%d overwritten by S%d\n",
67 prev->id(), store->id()));
75 if (!store
[all...]

Completed in 801 milliseconds

1234567891011>>