/external/chromium/chrome/browser/policy/ |
configuration_policy_pref_store_unittest.cc | 263 const ConfigurationPolicyPrefStore& store, 270 store.GetValue(prefs::kProxy, &value)); 308 scoped_refptr<ConfigurationPolicyPrefStore> store( 311 *store, "chromium.org", "", "http://chromium.org/override", 324 scoped_refptr<ConfigurationPolicyPrefStore> store( 327 *store, "chromium.org", "", "http://chromium.org/override", 337 scoped_refptr<ConfigurationPolicyPrefStore> store( 340 EXPECT_EQ(PrefStore::READ_NO_VALUE, store->GetValue(prefs::kProxy, &value)); 349 scoped_refptr<ConfigurationPolicyPrefStore> store( 351 VerifyProxyPrefs(*store, "", "", "", ProxyPrefs::MODE_DIRECT) [all...] |
/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...] |
pref_value_store.cc | 23 PrefValueStore* store, 29 pref_value_store_ = store; 115 << " in store " << i; 129 // If the pref is controlled by a higher-priority store, its effective value 175 PrefValueStore::PrefStoreType store) const { 179 return GetValueFromStore(name, store, &tmp_value); 213 const PrefStore* store = GetPrefStore(static_cast<PrefStoreType>(store_type)); local 214 if (store) { 215 switch (store->GetValue(name, out_value)) { 217 store = GetPrefStore(DEFAULT_STORE) 252 scoped_refptr<PrefStore> store = local [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
password_store_default_unittest.cc | 140 scoped_refptr<PasswordStoreDefault> store( 142 store->Init(); 158 // Build the expected forms vector and add the forms to the store. 163 store->AddLogin(*form); 187 store->GetAutofillableLogins(&consumer); 194 scoped_refptr<PasswordStore> store( 196 store->Init(); 212 helper->Init(store.get()); 221 content::Source<PasswordStore>(store.get()), 226 store->AddLogin(*form) [all...] |
/external/chromium_org/chrome/browser/prefs/ |
command_line_pref_store_unittest.cc | 67 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local 70 EXPECT_TRUE(store->GetValue(prefs::kApplicationLocale, &actual)); 80 scoped_refptr<TestCommandLinePrefStore> store = local 83 store->VerifyProxyMode(ProxyPrefs::MODE_DIRECT); 91 scoped_refptr<CommandLinePrefStore> store = new CommandLinePrefStore(&cl); local 94 EXPECT_FALSE(store->GetValue(unknown_bool, &actual)); 95 EXPECT_FALSE(store->GetValue(unknown_string, &actual)); 105 scoped_refptr<TestCommandLinePrefStore> store = local 109 EXPECT_FALSE(store->GetValue(unknown_bool, &actual)); 110 EXPECT_FALSE(store->GetValue(unknown_string, &actual)) 133 scoped_refptr<TestCommandLinePrefStore> store = local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_fog.c | 147 struct fog_stage_data *store = FOG_STAGE_DATA(stage); local 160 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord; 167 /* Use this to store calculated eye z values: 169 input = &store->fogcoord; 195 input = &store->fogcoord; 218 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord; /* dest data */ 241 struct fog_stage_data *store; local 242 stage->privatePtr = MALLOC(sizeof(*store)); 243 store = FOG_STAGE_DATA(stage); 244 if (!store) 259 struct fog_stage_data *store = FOG_STAGE_DATA(stage); local [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_fog.c | 147 struct fog_stage_data *store = FOG_STAGE_DATA(stage); local 160 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord; 167 /* Use this to store calculated eye z values: 169 input = &store->fogcoord; 195 input = &store->fogcoord; 218 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord; /* dest data */ 241 struct fog_stage_data *store; local 242 stage->privatePtr = MALLOC(sizeof(*store)); 243 store = FOG_STAGE_DATA(stage); 244 if (!store) 259 struct fog_stage_data *store = FOG_STAGE_DATA(stage); local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Matrix4f.java | 351 * @param store
352 * the float array to store the result in. if null, a new one
356 public float[] getColumn(int i, float[] store) {
357 if (store == null) {
358 store = new float[4];
362 store[0] = m00;
363 store[1] = m10;
364 store[2] = m20;
365 store[3] = m30;
368 store[0] = m01; [all...] |
Matrix3f.java | 283 * @param store 284 * the vector object to store the result in. if null, a new one 288 public Vector3f getColumn(int i, Vector3f store) { 289 if (store == null) { 290 store = new Vector3f(); 294 store.x = m00; 295 store.y = m10; 296 store.z = m20; 299 store.x = m01; 300 store.y = m11 [all...] |
Transform.java | 136 * @param trans The store location for this matrix's translation. 148 * @param quat The store location for this matrix's rotation. 168 * @param scale The store location for this matrix's scale. 238 public Vector3f transformVector(final Vector3f in, Vector3f store){ 239 if (store == null) 240 store = new Vector3f(); 244 return rot.mult(store.set(in).multLocal(scale), store).addLocal(translation); 247 public Vector3f transformInverseVector(final Vector3f in, Vector3f store){ 248 if (store == null [all...] |
/external/chromium_org/chrome/browser/geolocation/ |
access_token_store_browsertest.cc | 20 // The token store factory implementation expects to be used from any well-known 49 scoped_refptr<AccessTokenStore>* store, 52 if (store->get() == NULL) 53 (*store) = new ChromeAccessTokenStore(); 54 (*store)->LoadAccessTokens(callback); 99 scoped_refptr<AccessTokenStore> store(new ChromeAccessTokenStore()); 100 store->SaveAccessToken(ref_url_, *token_to_set_);
|
/external/chromium_org/content/test/data/indexeddb/ |
bug_109187.js | 16 var store = db.createObjectStore('storeName'); 17 window.index1 = store.createIndex('index1Name', 'prop1'); 18 window.index2 = store.createIndex(
|
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingVolume.java | 129 * @param store
130 * sphere to store result in
133 public abstract BoundingVolume transform(Transform trans, BoundingVolume store);
135 public abstract BoundingVolume transform(Matrix4f trans, BoundingVolume store);
184 * @param store
185 * where to store the cloned information. if null or wrong class,
186 * a new store is created.
189 public abstract BoundingVolume clone(BoundingVolume store);
195 public final Vector3f getCenter(Vector3f store) {
196 store.set(center); [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/ |
ImapTestUtils.java | 17 package com.android.email.mail.store.imap; 20 import com.android.email.mail.store.imap.ImapElement; 21 import com.android.email.mail.store.imap.ImapList; 22 import com.android.email.mail.store.imap.ImapResponse; 23 import com.android.email.mail.store.imap.ImapSimpleString; 24 import com.android.email.mail.store.imap.ImapString;
|
/external/chromium_org/rlz/lib/ |
rlz_lib.cc | 148 rlz_lib::RlzValueStore* store = lock.GetStore(); local 149 if (!store || !store->HasAccess(rlz_lib::RlzValueStore::kWriteAccess)) 152 // Write the new event to the value store. 163 return store->AddStatefulEvent(product, new_event_value.c_str()); 168 rlz_lib::RlzValueStore* store) { 181 if (!store->ReadProductEvents(product, &events)) 226 RlzValueStore* store = lock.GetStore(); local 227 if (!store || !store->HasAccess(RlzValueStore::kReadAccess) 245 RlzValueStore* store = lock.GetStore(); local 274 RlzValueStore* store = lock.GetStore(); local 303 RlzValueStore* store = lock.GetStore(); local 315 RlzValueStore* store = lock.GetStore(); local 500 rlz_lib::RlzValueStore* store = lock.GetStore(); local 615 RlzValueStore* store = lock.GetStore(); local [all...] |
/external/chromium_org/base/prefs/ |
pref_value_store.cc | 25 PrefValueStore* store, 33 pref_value_store_ = store; 125 // A notification is sent when the pref value in any store changes. If this 126 // store is currently being overridden by a higher-priority store, the 179 PrefValueStore::PrefStoreType store) const { 183 return GetValueFromStore(name, store, &tmp_value); 217 const PrefStore* store = GetPrefStore(static_cast<PrefStoreType>(store_type)); local 218 if (store && store->GetValue(name, out_value) 271 scoped_refptr<PrefStore> store = local [all...] |
pref_value_store.h | 66 // notified of preferences changing in the store. This does not 90 // indicated pref store, even if that value is currently being overridden by 97 // being controlled by the indicated pref store and not being overridden by 148 void Initialize(PrefValueStore* store, 152 PrefStore* store() { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper 153 const PrefStore* store() const { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper 166 // Type of the pref store. 184 bool PrefValueInStore(const char* name, PrefStoreType store) const; 189 // overridden by a higher-priority store. 194 // Returns the pref store type identifying the source that controls th [all...] |
/external/chromium/chrome/browser/password_manager/ |
password_store_default_unittest.cc | 158 scoped_refptr<PasswordStoreDefault> store( 161 store->Init(); 177 // Build the expected forms vector and add the forms to the store. 182 store->AddLogin(*form); 204 store->GetAutofillableLogins(&consumer); 288 scoped_refptr<PasswordStore> store( 291 store->Init(); 319 store->GetAutofillableLogins(&consumer); 329 store->GetBlacklistLogins(&consumer); 368 store->Shutdown() [all...] |
/external/chromium_org/ui/base/clipboard/ |
clipboard_util_win.cc | 86 STGMEDIUM store; local 87 if (GetData(data_object, Clipboard::GetFilenameWFormatType(), &store)) { 91 base::win::ScopedHGlobal<wchar_t> data(store.hGlobal); 104 ReleaseStgMedium(&store); 109 if (GetData(data_object, Clipboard::GetFilenameFormatType(), &store)) { 113 base::win::ScopedHGlobal<char> data(store.hGlobal); 126 ReleaseStgMedium(&store); 173 STGMEDIUM store; 177 if (GetData(data_object, Clipboard::GetMozUrlFormatType(), &store) || 178 GetData(data_object, Clipboard::GetUrlWFormatType(), &store)) { 272 STGMEDIUM store; local [all...] |
/art/runtime/ |
atomic_integer.h | 32 void store(int32_t desired) { function in class:art::AtomicInteger 37 store(desired);
|
/dalvik/vm/mterp/x86/ |
binflop.S | 13 $store (rFP,rINST,4) # %st to vAA
|
binflop2addr.S | 15 $store (rFP,%ecx,4) # %st to vA
|
fpcvt.S | 1 %default {"instr":"","load":"","store":""} 11 $store (rFP,%ecx,4) # vA<- %st0
|
/external/apache-http/src/org/apache/http/client/protocol/ |
ClientContextConfigurer.java | 60 public void setCookieStore(final CookieStore store) { 61 this.context.setAttribute(COOKIE_STORE, store);
|
/external/chromium_org/chrome/browser/chromeos/contacts/ |
contact_manager_unittest.cc | 103 FakeContactStore* store = store_factory_->GetContactStoreForProfile(profile); local 104 ASSERT_TRUE(store); 105 store->NotifyObserversAboutContactsUpdate(); 108 store->NotifyObserversAboutContactsUpdate(); 116 // Create two contacts and tell the store to return them. 128 FakeContactStore* store = store_factory_->GetContactStoreForProfile(profile); local 129 ASSERT_TRUE(store); 134 store->SetContacts(store_contacts); 135 store->NotifyObserversAboutContactsUpdate();
|