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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_vertex.c 140 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->clipmask
236 struct vertex_stage_data *store; local
261 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
CompactQuaternionArray.java 86 protected void serialize(int i, Quaternion store) {
88 array[j] = store.getX();
89 array[j + 1] = store.getY();
90 array[j + 2] = store.getZ();
91 array[j + 3] = store.getW();
95 protected Quaternion deserialize(int i, Quaternion store) {
97 store.set(array[j], array[j + 1], array[j + 2], array[j + 3]);
98 return store;
CompactVector3Array.java 86 protected void serialize(int i, Vector3f store) {
88 array[j] = store.getX();
89 array[j+1] = store.getY();
90 array[j+2] = store.getZ();
94 protected Vector3f deserialize(int i, Vector3f store) {
96 store.set(array[j], array[j+1], array[j+2]);
97 return store;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
GeoMap.java 155 * @param store A preallocated FloatBuffer where to store the data (optional), size must be >= getWidth()*getHeight()*3
156 * @returns store, or a new FloatBuffer if store is null
160 public FloatBuffer writeNormalArray(FloatBuffer store, Vector3f scale) {
162 if (store!=null){
163 if (store.remaining() < getWidth()*getHeight()*3)
166 store = BufferUtils.createFloatBuffer(getWidth()*getHeight()*3);
168 store.rewind();
214 // store.put(tempNorm.x).put(tempNorm.y).put(tempNorm.z)
    [all...]
  /external/markdown/markdown/
preprocessors.py 52 def store(self, html, safe=False): member in class:HtmlStash
77 """Remove html blocks from the text and store them for later retrieval."""
154 self.markdown.htmlStash.store(block.strip()))
165 self.markdown.htmlStash.store(block.strip()))
180 self.markdown.htmlStash.store('\n\n'.join(items)))
184 new_blocks.append(self.markdown.htmlStash.store('\n\n'.join(items)))
192 """ Remove reference definitions from text and store for later use. """
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 56 uint32_t *store; /**< instruction buffer */ member in struct:ppc_function
161 /** vector store: store vR at mem[vA+vB] */
290 ** scalar load/store
  /external/mesa3d/src/mesa/tnl/
t_vb_points.c 53 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...]
t_vb_vertex.c 140 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->clipmask
236 struct vertex_stage_data *store; local
261 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
    [all...]
  /frameworks/base/tools/aapt/
ResourceIdCache.cpp 86 uint32_t ResourceIdCache::store(const android::String16& package, function in class:android::ResourceIdCache
  /libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateKeyStoreSpi.java 33 private final TrustedCertificateStore store = new TrustedCertificateStore(); field in class:TrustedCertificateKeyStoreSpi
50 return store.getCertificate(alias);
54 return store.getCreationDate(alias);
78 return Collections.enumeration(store.aliases());
82 return store.containsAlias(alias);
86 return store.aliases().size();
101 return store.getCertificateAlias(c);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapMemoryLiteral.java 17 package com.android.email.mail.store.imap;
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapElementTest.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.store.imap.ImapElement;
ImapResponseTest.java 17 package com.android.email.mail.store.imap;
19 import static com.android.email.mail.store.imap.ImapTestUtils.*;
21 import com.android.email.mail.store.imap.ImapConstants;
22 import com.android.email.mail.store.imap.ImapResponse;
23 import com.android.email.mail.store.imap.ImapSimpleString;
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
PdtPlugin.java 68 // this always return a store, even a temp one if an error occurred.
69 IPreferenceStore store = sPlugin.getPreferenceStore(); local
72 String devTree = store.getString(PrefPage.PREFS_DEVTREE_DIR);
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/preferences/
PrefPage.java 36 IPreferenceStore store = PdtPlugin.getDefault().getPreferenceStore(); local
37 setPreferenceStore(store);
  /libcore/crypto/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 192 private TrustedCertificateStore store; field in class:TrustedCertificateStoreTest
204 store = new TrustedCertificateStore(DIR_SYSTEM, DIR_ADDED, DIR_DELETED);
221 store = null;
235 store.deleteCertificateEntry(getAliasSystemCa1());
242 store.deleteCertificateEntry(getAliasSystemCa1());
244 store.deleteCertificateEntry(getAliasSystemCa2());
262 store.getCertificate(null);
266 assertNull(store.getCertificate(""));
269 store.getCreationDate(null);
273 assertNull(store.getCreationDate(""))
    [all...]
  /bionic/libc/kernel/common/linux/
sysdev.h 37 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
40 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
61 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
64 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /external/chromium/chrome/browser/prefs/
pref_value_store.h 84 // indicated pref store, even if that value is currently being overridden by
91 // being controlled by the indicated pref store and not being overridden by
145 void Initialize(PrefValueStore* store,
149 PrefStore* store() { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
150 const PrefStore* store() const { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
163 // Type of the pref store.
181 bool PrefValueInStore(const char* name, PrefStoreType store) const;
186 // overridden by a higher-priority store.
191 // Returns the pref store type identifying the source that controls the
198 // Get a value from the specified store type
    [all...]
  /external/chromium_org/base/prefs/
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_org/chrome/browser/chromeos/contacts/
contact_manager.cc 126 void ContactManager::OnContactsUpdated(ContactStore* store) {
130 if (it->second == store) {
141 NOTREACHED() << "Got update from unknown contact store " << store;
190 ContactStore* store = contact_store_factory_->CreateContactStore(profile); local
191 DCHECK(store);
192 store->AddObserver(this);
193 store->Init();
195 contact_stores_[profile] = store;
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();
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_api.cc 91 ContentSettingsStore* store = extensions::ExtensionSystem::Get(profile_)-> local
93 store->ClearContentSettingsForExtension(extension_id(), scope);
243 ContentSettingsStore* store = extensions::ExtensionSystem::Get(profile_)-> local
245 store->SetExtensionContentSetting(extension_id(), primary_pattern,
  /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/chrome/browser/ui/app_list/
apps_model_builder_unittest.cc 102 // Install a "web store" app.
103 scoped_refptr<extensions::Extension> store = local
108 service_->AddExtension(store.get());
110 // Install an "enterprise web store" app.

Completed in 718 milliseconds

1 23 4 5 6 7 8 91011>>