HomeSort by relevance Sort by last modified time
    Searched defs:store (Results 1 - 25 of 695) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
transition-elements-kind.js 38 function store(a,x) { function
41 store([1.1], 'a');
42 store([1.1], 1.1);
43 %OptimizeFunctionOnNextCall(store);
47 store(b, 'a');
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...]
megamorphic-callbacks.js 32 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");
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_token_store_unittest.cc 13 CloudPrintTokenStore* store = new CloudPrintTokenStore; local
14 EXPECT_EQ(store, CloudPrintTokenStore::current());
17 delete store;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-polymorphic-store.js 38 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/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);
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
DiscourseLoggerTest.java 125 DiscourseLogger store = new DiscourseLogger(storeSize); local
128 store.addSentCommand((String) o);
131 store.addReceivedByte(b);
137 MoreAsserts.assertEquals(expected, store.getLines());
140 store.logLastDiscourse();
141 assertEquals(0, store.getLines().length);
  /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...]
megamorphic-callbacks.js 32 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");
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 36 private Map<String, MemoryByteCode> store; field in class:SpecialJavaFileManager
40 store = new HashMap<String, MemoryByteCode>();
46 store.put(name, mbc);
51 return new HashSet<MemoryByteCode>(store.values());
55 return store.get(className);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/preferences/
NdkPreferenceInitializer.java 29 IPreferenceStore store = Activator.getDefault().getPreferenceStore(); local
31 store.setDefault(NdkManager.NDK_LOCATION, ""); //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
PreferenceInitializer.java 95 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
97 store.setDefault(ATTR_DEBUG_PORT_BASE, DdmPreferences.DEFAULT_DEBUG_PORT_BASE);
99 store.setDefault(ATTR_SELECTED_DEBUG_PORT, DdmPreferences.DEFAULT_SELECTED_DEBUG_PORT);
101 store.setDefault(ATTR_DEFAULT_THREAD_UPDATE, DdmPreferences.DEFAULT_INITIAL_THREAD_UPDATE);
102 store.setDefault(ATTR_DEFAULT_HEAP_UPDATE,
105 store.setDefault(ATTR_PROFILER_BUFSIZE_MB, DdmPreferences.DEFAULT_PROFILER_BUFFER_SIZE_MB);
107 store.setDefault(ATTR_THREAD_INTERVAL, DdmUiPreferences.DEFAULT_THREAD_REFRESH_INTERVAL);
110 store.setDefault(ATTR_IMAGE_SAVE_DIR, homeDir);
112 store.setDefault(ATTR_LOG_LEVEL, DdmPreferences.DEFAULT_LOG_LEVEL.getStringValue());
114 store.setDefault(ATTR_LOGCAT_FONT
142 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCRLUtil.java 119 X509Store store = (X509Store)obj; local
123 crls.addAll(store.getMatches(crlSelect));
129 "Exception searching in X.509 CRL store.", e);
134 CertStore store = (CertStore)obj; local
138 crls.addAll(store.getCRLs(crlSelect));
144 "Exception searching in X.509 CRL store.", e);
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 35 * to the most recent variable that has been initialized by a store operation.
72 * Sets the Value that will be stored along with all store instructions.
117 producerVariables.store(index, value);
165 public void store(int index, Value value) method in class:TracedVariables
167 // Is this store operation an initialization of the variable?
175 // Store the value itself in the variable.
176 super.store(index, value);
178 // Store the producer value in its producer variable.
179 producerVariables.store(index, producerValue);
184 producerVariables.store(index+1, producerValue)
    [all...]
  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.cc 25 net::CookieStore* store = local
30 std::string cookies = store->GetCookiesWithOptions(url, options);
  /external/chromium_org/rlz/lib/
rlz_lib_clear.cc 21 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->ClearAccessPointRlz(access_points[i]))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_texmat.c 59 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/mesa3d/src/mesa/tnl/
t_vb_texmat.c 59 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...]
  /libcore/luni/src/main/java/java/net/
CookieManager.java 36 * some cookies into a cookie store. Three built-in CookiePolicy is defined:
56 private CookieStore store; field in class:CookieManager
76 * Constructs a new cookie manager using a specified cookie store and a
79 * @param store
86 public CookieManager(CookieStore store, CookiePolicy cookiePolicy) {
87 this.store = store == null ? new CookieStoreImpl() : store;
112 for (HttpCookie cookie : store.get(uri)) {
186 // if the cookie conforms to the policy, add it into the store
    [all...]
  /art/runtime/
atomic_integer.h 32 void store(int32_t desired) { function in class:art::AtomicInteger
37 store(desired);
  /external/chromium/chrome/browser/prefs/
command_line_pref_store_unittest.cc 48 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
52 store->GetValue(prefs::kApplicationLocale, &actual));
62 scoped_refptr<TestCommandLinePrefStore> store = local
65 store->VerifyProxyMode(ProxyPrefs::MODE_DIRECT);
73 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local
76 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
77 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_string, &actual));
87 scoped_refptr<TestCommandLinePrefStore> store = local
91 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_bool, &actual));
92 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(unknown_string, &actual))
115 scoped_refptr<TestCommandLinePrefStore> store = local
    [all...]
  /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
cloud_policy_manager.h 82 CloudPolicyStore* store() { return core_.store(); } function in class:policy::CloudPolicyManager
83 const CloudPolicyStore* store() const { return core_.store(); } function in class:policy::CloudPolicyManager
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm 315 sub store { subroutine
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 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);

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 91011>>