HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 751 - 775 of 14488) sorted by null

<<31323334353637383940>>

  /external/chromium/chrome/browser/ui/cocoa/
constrained_window_mac.h 54 ConstrainedWindowMacDelegateSystemSheet(id delegate, SEL didEndSelector);
58 void set_sheet(id sheet);
59 id sheet() { return systemSheet_; }
69 virtual NSArray* GetSheetParameters(id delegate, SEL didEndSelector);
74 scoped_nsobject<id> systemSheet_;
75 scoped_nsobject<id> delegate_;
85 ConstrainedWindowMacDelegateCustomSheet(id delegate, SEL didEndSelector);
90 void init(NSWindow* sheet, id delegate, SEL didEndSelector);
98 scoped_nsobject<id> delegate_;
  /external/chromium_org/chrome/browser/extensions/
subscribe_page_action_browsertest.cc 158 std::string id = extension->id(); local
160 NavigateToFeedAndValidate(test_server(), kValidFeed1, browser(), id, true, local
173 std::string id = extension->id(); local
175 NavigateToFeedAndValidate(test_server(), kValidFeed2, browser(), id, true, local
188 std::string id = extension->id(); local
190 NavigateToFeedAndValidate(test_server(), kValidFeed3, browser(), id, true, local
203 std::string id = extension->id() local
205 NavigateToFeedAndValidate(test_server(), kValidFeed4, browser(), id, true, local
218 std::string id = extension->id(); local
222 NavigateToFeedAndValidate(test_server(), kValidFeed0, browser(), id, true, local
235 std::string id = extension->id(); local
238 NavigateToFeedAndValidate(test_server(), kValidFeed5, browser(), id, true, local
251 std::string id = extension->id(); local
254 NavigateToFeedAndValidate(test_server(), kValidFeed6, browser(), id, true, local
267 std::string id = extension->id(); local
270 NavigateToFeedAndValidate(test_server(), kInvalidFeed1, browser(), id, false, local
283 std::string id = extension->id(); local
286 NavigateToFeedAndValidate(test_server(), kInvalidFeed2, browser(), id, false, local
299 std::string id = extension->id(); local
302 NavigateToFeedAndValidate(test_server(), "foo.xml", browser(), id, false, local
315 std::string id = extension->id(); local
325 test_server(), kFeedTripleEncoded, browser(), id, true, local
338 std::string id = extension->id(); local
342 test_server(), kValidFeedNoLinks, browser(), id, true, local
    [all...]
  /external/chromium_org/chrome/browser/themes/
theme_service_aurax11.cc 24 virtual bool GetColor(int id, SkColor* color) const OVERRIDE;
25 virtual gfx::Image GetImageNamed(int id) OVERRIDE;
26 virtual bool HasCustomImage(int id) const OVERRIDE;
51 bool NativeThemeX11::GetColor(int id, SkColor* color) const {
52 return linux_ui_ && linux_ui_->GetColor(id, color);
55 gfx::Image NativeThemeX11::GetImageNamed(int id) {
56 return linux_ui_ ? linux_ui_->GetThemeImageNamed(id) : gfx::Image();
59 bool NativeThemeX11::HasCustomImage(int id) const {
60 return linux_ui_ && linux_ui_->HasCustomImage(id);
  /external/chromium_org/gpu/command_buffer/common/
id_allocator.h 19 // A resource ID, key to the resource maps.
21 // Invalid resource ID.
28 // Allocates a new resource ID.
31 // Allocates an Id starting at or above desired_id.
35 // Marks an id as used. Returns false if id was already used.
36 virtual bool MarkAsUsed(ResourceId id) = 0;
38 // Frees a resource ID.
39 virtual void FreeID(ResourceId id) = 0;
41 // Checks whether or not a resource ID is in use
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPermissionRequestManager.cpp 55 int id = ++m_lastId; local
56 m_private->m_geolocationIdMap.add(geolocation, id);
57 m_private->m_idGeolocationMap.add(id, geolocation);
58 return id;
61 bool WebGeolocationPermissionRequestManager::remove(const WebKit::WebGeolocationPermissionRequest& permissionRequest, int& id)
67 id = it->value;
69 m_private->m_idGeolocationMap.remove(id);
73 bool WebGeolocationPermissionRequestManager::remove(int id, WebKit::WebGeolocationPermissionRequest& permissionRequest)
75 IdGeolocationMap::iterator it = m_private->m_idGeolocationMap.find(id);
  /external/jsilver/src/com/google/streamhtmlparser/impl/
InternalState.java 51 private final int id; field in class:InternalState
55 * @param id the integer identiifer for this state, guaranteed to be unique
57 private InternalState(String name, int id) {
59 Preconditions.checkArgument(id >= FIRST_ID);
60 Preconditions.checkArgument(id <= MAX_ID);
62 this.id = id;
70 id = 0;
81 * @return {@code int} id of that state.
84 return id;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_syssem.c 32 sem_id id; member in struct:SDL_semaphore
42 sem->id = create_sem(initial_value, "SDL semaphore");
43 if ( sem->id < B_NO_ERROR ) {
58 if ( sem->id >= B_NO_ERROR ) {
59 delete_sem(sem->id);
77 val = acquire_sem(sem->id);
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
121 get_sem_count(sem->id, &count);
137 if ( release_sem(sem->id) != B_NO_ERROR ) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 46 int id[] = {0, 1, 2, 3}; local
47 const unsigned sd = sizeof(id)/sizeof(id[0]);
48 std::reverse(Iter(id), Iter(id+sd));
49 assert(id[0] == 3);
50 assert(id[1] == 2);
51 assert(id[2] == 1);
52 assert(id[3] == 0);
  /external/chromium/chrome/browser/extensions/
extension_info_map.cc 27 extension_info_[extension->id()] = extension;
28 Map::iterator iter = disabled_extension_info_.find(extension->id());
33 void ExtensionInfoMap::RemoveExtension(const std::string& id,
36 Map::iterator iter = extension_info_.find(id);
39 disabled_extension_info_[id] = (*iter).second;
44 disabled_extension_info_.erase(id);
49 // http://code.google.com/p/chromium/issues/detail?id=50582 .
50 NOTREACHED() << id;
55 std::string ExtensionInfoMap::GetNameForExtension(const std::string& id) const {
56 Map::const_iterator iter = extension_info_.find(id);
119 std::string id = url.host(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/
allocators.h 14 explicit A1(int id = 0) : id_(id) {}
18 int id() const {return id_;} function in class:A1
25 A1(const A1& a) : id_(a.id()) {copy_called = true;}
26 A1(A1&& a) : id_(a.id()) {move_called = true;}
29 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
31 A1(A1<U>&& a) : id_(a.id()) {move_called = true;}
56 return x.id() == y.id();
71 explicit A2(int id = 0) : id_(id) {
80 int id() const {return id_;} function in class:A2
126 int id() const {return id_;} function in class:A3
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
allocators.h 14 explicit A1(int id = 0) : id_(id) {}
18 int id() const {return id_;} function in class:A1
25 A1(const A1& a) : id_(a.id()) {copy_called = true;}
26 A1(A1&& a) : id_(a.id()) {move_called = true;}
29 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
31 A1(A1<U>&& a) : id_(a.id()) {move_called = true;}
56 return x.id() == y.id();
71 explicit A2(int id = 0) : id_(id) {
80 int id() const {return id_;} function in class:A2
126 int id() const {return id_;} function in class:A3
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTree.h 33 + (id<ANTLRBaseTree>) newANTLRBaseTree;
34 + (id<ANTLRBaseTree>) newANTLRBaseTree:(id<ANTLRBaseTree>)node;
36 - (id<ANTLRBaseTree>) init;
37 - (id<ANTLRBaseTree>) initWith:(id<ANTLRTree>)node;
39 - (id<ANTLRBaseTree>) getChild:(NSUInteger)i;
42 - (id<ANTLRBaseTree>)getFirstChildWithType:(NSInteger)type;
48 - (void) addChild:(id<ANTLRTree>) tree;
52 - (void) setChild:(NSInteger) i With:(id<ANTLRTree>)t
    [all...]
ANTLRHashMap.h 55 + (id)newANTLRHashMap;
56 + (id)newANTLRHashMapWithLen:(NSInteger)aBuffSize;
57 - (id)init;
58 - (id)initWithLen:(NSInteger)aBuffSize;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
92 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
93 - (id) objectAtIndex:(NSInteger)idx;
94 - (void) setObject:(id)aRule atIndex:(NSInteger)idx;
95 - (void)addObject:(id)anObject
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTree.h 33 + (id<ANTLRBaseTree>) newANTLRBaseTree;
34 + (id<ANTLRBaseTree>) newANTLRBaseTree:(id<ANTLRBaseTree>)node;
36 - (id<ANTLRBaseTree>) init;
37 - (id<ANTLRBaseTree>) initWith:(id<ANTLRTree>)node;
39 - (id<ANTLRBaseTree>) getChild:(NSUInteger)i;
42 - (id<ANTLRBaseTree>)getFirstChildWithType:(NSInteger)type;
48 - (void) addChild:(id<ANTLRTree>) tree;
52 - (void) setChild:(NSInteger) i With:(id<ANTLRTree>)t
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTree.h 33 + (id<ANTLRBaseTree>) newANTLRBaseTree;
34 + (id<ANTLRBaseTree>) newANTLRBaseTree:(id<ANTLRBaseTree>)node;
36 - (id<ANTLRBaseTree>) init;
37 - (id<ANTLRBaseTree>) initWith:(id<ANTLRTree>)node;
39 - (id<ANTLRBaseTree>) getChild:(NSUInteger)i;
42 - (id<ANTLRBaseTree>)getFirstChildWithType:(NSInteger)type;
48 - (void) addChild:(id<ANTLRTree>) tree;
52 - (void) setChild:(NSInteger) i With:(id<ANTLRTree>)t
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTreeNodeStream.h 52 + (id) newANTLRStreamIterator:(ANTLRBufferedTreeNodeStream *) theStream;
54 - (id) initWithStream:(ANTLRBufferedTreeNodeStream *) theStream;
57 - (id) next;
64 id up;
65 id down;
66 id eof;
70 id root; // root
72 id<ANTLRTokenStream> tokens;
81 id currentSymbol;
85 @property (retain, getter=getUp, setter=setUp:) id up
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 45 // Streams are identified by a unique resource id. Multiple streams can be
46 // associated with each resource id, distinguished by an index. When old
62 bool LockResource(const std::string& id);
63 StreamInterface* WriteResource(const std::string& id, size_t index);
64 bool UnlockResource(const std::string& id);
66 StreamInterface* ReadResource(const std::string& id, size_t index) const;
68 bool HasResource(const std::string& id) const;
69 bool HasResourceStream(const std::string& id, size_t index) const;
70 bool DeleteResource(const std::string& id);
92 std::string IdToFilename(const std::string& id, size_t index) const
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
client_test_helper.cc 56 // Get's the Id of the next transfer buffer that will be returned
67 Buffer MockCommandBufferBase::CreateTransferBuffer(size_t size, int32* id) {
68 *id = GetNextFreeTransferBufferId();
69 if (*id >= 0) {
70 int32 ndx = *id - kTransferBufferBaseId;
75 return GetTransferBuffer(*id);
78 void MockCommandBufferBase::DestroyTransferBufferHelper(int32 id) {
79 GPU_DCHECK_GE(id, kTransferBufferBaseId);
80 GPU_DCHECK_LT(id, kTransferBufferBaseId + kMaxTransferBuffers);
81 id -= kTransferBufferBaseId
    [all...]
  /external/chromium_org/sandbox/win/src/
interception.h 83 // the pointer that would have been the first argument (g_originals[id]).
108 InterceptorId id);
116 InterceptorId id);
137 InterceptorId id; // Interceptor id. member in struct:sandbox::InterceptionManager::InterceptionData
235 #define ADD_NT_INTERCEPTION(service, id, num_params) \
238 MAKE_SERVICE_NAME(service, num_params), id)
240 #define INTERCEPT_NT(manager, service, id, num_params) \
242 manager->ADD_NT_INTERCEPTION(service, id, num_params) : false)
244 #define INTERCEPT_EAT(manager, dll, function, id, num_params)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SnippetStorage.js 55 for (var id in this._snippets)
56 savedSnippets.push(this._snippets[id].serializeToObject());
66 for (var id in this._snippets)
67 result.push(this._snippets[id]);
72 * @param {string} id
75 snippetForId: function(id)
77 return this._snippets[id];
105 delete this._snippets[snippet.id];
128 this._snippets[snippet.id] = snippet;
145 * @param {string} id
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache.h 45 // Streams are identified by a unique resource id. Multiple streams can be
46 // associated with each resource id, distinguished by an index. When old
62 bool LockResource(const std::string& id);
63 StreamInterface* WriteResource(const std::string& id, size_t index);
64 bool UnlockResource(const std::string& id);
66 StreamInterface* ReadResource(const std::string& id, size_t index) const;
68 bool HasResource(const std::string& id) const;
69 bool HasResourceStream(const std::string& id, size_t index) const;
70 bool DeleteResource(const std::string& id);
92 std::string IdToFilename(const std::string& id, size_t index) const
    [all...]
win32windowpicker.cc 58 WindowId id(hwnd);
59 WindowDescription desc(id, title);
71 DesktopId id(h_monitor, static_cast<int>(desktop_desc->size()));
73 DesktopDescription desc(id, "");
116 bool Win32WindowPicker::GetDesktopDimensions(const DesktopId& id,
121 if (!GetMonitorInfo(id.id(), &monitor_info)) {
129 bool Win32WindowPicker::IsVisible(const WindowId& id) {
130 return (::IsWindow(id.id()) != FALSE && ::IsWindowVisible(id.id()) != FALSE)
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Settings.java 64 void set(int id, int idFlags, int value) {
65 if (id >= values.length) {
69 int bit = 1 << id;
82 values[id] = value;
85 /** Returns true if a value has been assigned for the setting {@code id}. */
86 boolean isSet(int id) {
87 int bit = 1 << id;
91 /** Returns the value for the setting {@code id}, or 0 if unset. */
92 int get(int id) {
93 return values[id];
    [all...]
  /hardware/libhardware/modules/camera/
CameraHAL.cpp 71 int CameraHAL::getCameraInfo(int id, struct camera_info* info)
73 ALOGV("%s: camera id %d: info=%p", __func__, id, info);
74 if (id < 0 || id >= mNumberOfCameras) {
75 ALOGE("%s: Invalid camera id %d", __func__, id);
79 return mCameras[id]->getInfo(info);
91 int id; local
96 ALOGE("%s: Invalid camera id name is NULL", __func__)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transitions.java 44 mSceneRoot = (ViewGroup) findViewById(R.id.sceneRoot);
62 case R.id.scene1:
65 case R.id.scene2:
68 case R.id.scene3:
71 case R.id.scene4:
76 setNewSize(R.id.view1, 150, 25);
77 setNewSize(R.id.view2, 150, 25);
78 setNewSize(R.id.view3, 150, 25);
79 setNewSize(R.id.view4, 150, 25);
84 private void setNewSize(int id, int width, int height)
    [all...]

Completed in 2182 milliseconds

<<31323334353637383940>>