Searched defs:id (Results 226 - 250 of 4123) sorted by relevance

1234567891011>>

/external/chromium_org/ash/shelf/
H A Dshelf_util.cc23 void SetShelfIDForWindow(ShelfID id, aura::Window* window) { argument
27 window->SetProperty(kShelfID, id);
/external/chromium_org/base/android/
H A Djni_android_unittest.cc18 jmethodID id = base::android::MethodID::LazyGet< local
25 return env->CallStaticIntMethod(clazz, id, p);
28 int MethodIDCall(JNIEnv* env, jclass clazz, jmethodID id, int p) { argument
29 return env->CallStaticIntMethod(clazz, id, p);
43 jmethodID id = reinterpret_cast<jmethodID>(g_atomic_id); local
46 o += MethodIDCall(env, clazz.obj(), id, i);
/external/chromium_org/base/debug/
H A Dtrace_event_win.h42 const void* id,
49 const void* id,
51 return Trace(name, kUseStrlen, type, id, extra.c_str(), extra.length());
58 const void* id,
60 return Trace(name, kUseStrlen, type, id, extra, kUseStrlen);
72 // Emit a trace of type |type| containing |name|, |id|, and |extra|.
80 const void* id,
117 // The id pointer in the machine bitness.
47 Trace(const char* name, char type, const void* id, const std::string& extra) argument
56 Trace(const char* name, char type, const void* id, const char* extra) argument
/external/chromium_org/base/i18n/
H A Dtimezone.cc601 icu::UnicodeString id; local
602 zone->getID(id);
603 string16 olson_code(id.getBuffer(), id.length());
/external/chromium_org/cc/animation/
H A Danimation_registrar.cc23 AnimationRegistrar::GetAnimationControllerForId(int id) { argument
25 if (!ContainsKey(all_animation_controllers_, id)) {
26 to_return = LayerAnimationController::Create(id);
28 all_animation_controllers_[id] = to_return.get();
30 to_return = all_animation_controllers_[id];
37 active_animation_controllers_[controller->id()] = controller;
42 if (ContainsKey(active_animation_controllers_, controller->id()))
43 active_animation_controllers_.erase(controller->id());
48 all_animation_controllers_[controller->id()] = controller;
53 if (ContainsKey(all_animation_controllers_, controller->id()))
[all...]
/external/chromium_org/cc/debug/
H A Dmicro_benchmark.h32 int id() const { return id_; } function in class:cc::MicroBenchmark
33 void set_id(int id) { id_ = id; } argument
H A Dmicro_benchmark_controller_unittest.cc56 int id = layer_tree_host_->ScheduleMicroBenchmark( local
58 EXPECT_EQ(id, 0);
63 int id = layer_tree_host_->ScheduleMicroBenchmark( local
65 EXPECT_GT(id, 0);
71 int id = layer_tree_host_->ScheduleMicroBenchmark( local
75 EXPECT_GT(id, 0);
86 int id = layer_tree_host_->ScheduleMicroBenchmark( local
90 EXPECT_GT(id, 0);
91 id = layer_tree_host_->ScheduleMicroBenchmark(
95 EXPECT_GT(id,
127 int id = layer_tree_host_->ScheduleMicroBenchmark( local
156 int id = layer_tree_host_->ScheduleMicroBenchmark( local
[all...]
H A Dtraced_value.cc12 void TracedValue::AppendIDRef(const void* id, base::debug::TracedValue* state) { argument
14 state->SetString("id_ref", base::StringPrintf("%p", id));
18 void TracedValue::SetIDRef(const void* id, argument
22 state->SetString("id_ref", base::StringPrintf("%p", id));
28 const void* id) {
29 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id));
36 const void* id) {
38 MakeDictIntoImplicitSnapshot(dict, object_name, id);
46 const void* id) {
26 MakeDictIntoImplicitSnapshot(base::debug::TracedValue* dict, const char* object_name, const void* id) argument
32 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::debug::TracedValue* dict, const char* object_name, const void* id) argument
41 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::debug::TracedValue* dict, const char* object_base_type_name, const char* object_name, const void* id) argument
[all...]
/external/chromium_org/cc/layers/
H A Dio_surface_layer_impl.h19 int id) {
20 return make_scoped_ptr(new IOSurfaceLayerImpl(tree_impl, id));
39 IOSurfaceLayerImpl(LayerTreeImpl* tree_impl, int id);
18 Create(LayerTreeImpl* tree_impl, int id) argument
H A Dnine_patch_layer_impl.h27 int id) {
28 return make_scoped_ptr(new NinePatchLayerImpl(tree_impl, id));
71 NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id);
26 Create(LayerTreeImpl* tree_impl, int id) argument
H A Dpicture_image_layer_impl.cc14 PictureImageLayerImpl::PictureImageLayerImpl(LayerTreeImpl* tree_impl, int id) argument
15 : PictureLayerImpl(tree_impl, id) {
27 return PictureImageLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
H A Dtiled_layer_impl.h20 static scoped_ptr<TiledLayerImpl> Create(LayerTreeImpl* tree_impl, int id) { argument
21 return make_scoped_ptr(new TiledLayerImpl(tree_impl, id));
53 TiledLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dui_resource_layer_impl.h26 int id) {
27 return make_scoped_ptr(new UIResourceLayerImpl(tree_impl, id));
55 UIResourceLayerImpl(LayerTreeImpl* tree_impl, int id);
25 Create(LayerTreeImpl* tree_impl, int id) argument
/external/chromium_org/cc/resources/
H A Dresource.h18 Resource(unsigned id, const gfx::Size& size, ResourceFormat format) argument
19 : id_(id),
23 ResourceProvider::ResourceId id() const { return id_; } function in class:cc::Resource
35 void set_id(ResourceProvider::ResourceId id) { id_ = id; } argument
H A Dshared_bitmap.cc15 const SharedBitmapId& id,
19 id_(id),
25 const SharedBitmapId& id,
27 : memory_(NULL), pixels_(pixels), id_(id), free_callback_(free_callback) {
75 SharedBitmapId id; local
77 base::RandBytes(id.name, sizeof(id.name));
78 return id;
13 SharedBitmap( base::SharedMemory* memory, const SharedBitmapId& id, const base::Callback<void(SharedBitmap* bitmap)>& free_callback) argument
23 SharedBitmap( uint8* pixels, const SharedBitmapId& id, const base::Callback<void(SharedBitmap* bitmap)>& free_callback) argument
H A Dshared_bitmap.h23 const SharedBitmapId& id,
27 const SharedBitmapId& id,
44 SharedBitmapId id() { return id_; } function in class:cc::SharedBitmap
H A Dtransferable_resource.h31 unsigned id; member in struct:cc::TransferableResource
/external/chromium_org/cc/surfaces/
H A Dsurface_id.h14 SurfaceId() : id(0) {}
15 explicit SurfaceId(uint64_t id) : id(id) {} argument
17 bool is_null() const { return id == 0; }
19 uint64_t id; member in struct:cc::SurfaceId
23 return a.id == b.id;
31 return a.id < b.id;
[all...]
H A Dsurface_resource_holder.cc27 ResourceRefs& ref = resource_id_use_count_map_[it->id];
39 resource_id_use_count_map_.find(it->id);
52 ResourceProvider::ResourceId id = it->id; local
53 ResourceIdCountMap::iterator count_it = resource_id_use_count_map_.find(id);
/external/chromium_org/cc/test/
H A Dfake_content_layer_impl.cc9 FakeContentLayerImpl::FakeContentLayerImpl(LayerTreeImpl* tree_impl, int id) argument
10 : TiledLayerImpl(tree_impl, id), lost_output_surface_count_(0) {
17 return FakeContentLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
H A Dfake_content_layer_impl.h16 LayerTreeImpl* tree_impl, int id) {
17 return make_scoped_ptr(new FakeContentLayerImpl(tree_impl, id));
34 explicit FakeContentLayerImpl(LayerTreeImpl* tree_impl, int id);
15 Create( LayerTreeImpl* tree_impl, int id) argument
H A Dfake_ui_resource_layer_tree_host_impl.cc32 ResourceProvider::ResourceId id = ResourceIdForUIResource(uid); local
33 if (id)
H A Dordered_texture_map.cc16 void OrderedTextureMap::Append(GLuint id, argument
19 DCHECK(!ContainsId(id));
21 textures_[id] = texture;
22 ordered_textures_.push_back(id);
25 void OrderedTextureMap::Replace(GLuint id, argument
28 DCHECK(ContainsId(id));
30 textures_[id] = texture;
33 void OrderedTextureMap::Remove(GLuint id) { argument
34 TextureMap::iterator map_it = textures_.find(id);
39 std::find(ordered_textures_.begin(), ordered_textures_.end(), id);
46 ContainsId(GLuint id) argument
50 TextureForId(GLuint id) argument
[all...]
H A Dtest_shared_bitmap_manager.cc26 SharedBitmapId id = SharedBitmap::GenerateId(); local
27 bitmap_map_[id] = memory.get();
29 new SharedBitmap(memory.release(), id, base::Bind(&FreeSharedBitmap)));
34 const SharedBitmapId& id) {
36 if (bitmap_map_.find(id) == bitmap_map_.end())
39 new SharedBitmap(bitmap_map_[id], id, base::Bind(&IgnoreSharedBitmap)));
45 SharedBitmapId id = SharedBitmap::GenerateId(); local
46 bitmap_map_[id] = memory;
48 new SharedBitmap(memory, id, bas
32 GetSharedBitmapFromId( const gfx::Size&, const SharedBitmapId& id) argument
[all...]
/external/chromium_org/chrome/browser/android/enhanced_bookmarks/
H A Denhanced_bookmarks_bridge.cc30 JNIEnv* env, jobject obj, jlong id, jint type) {
35 bookmark_model_, static_cast<int64>(id));
45 jlong id,
52 bookmark_model_, static_cast<int64>(id));
29 GetBookmarkDescription( JNIEnv* env, jobject obj, jlong id, jint type) argument
43 SetBookmarkDescription(JNIEnv* env, jobject obj, jlong id, jint type, jstring description) argument

Completed in 228 milliseconds

1234567891011>>