/external/chromium_org/v8/test/mjsunit/regress/ |
regress-clobbered-fp-regs.js | 30 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)
|
regress-crbug-319835.js | 35 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);
|
regress-331416.js | 41 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);
|
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_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/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/chrome/browser/chromeos/policy/ |
cloud_external_data_manager_base_test_util.cc | 44 CloudPolicyStore* store = core->store(); local 45 ASSERT_TRUE(store); 50 new ExternalDataFetcher(store->external_data_manager(), 52 store->SetPolicyMapForTesting(policy_map);
|
/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...] |