Searched refs:id (Results 351 - 375 of 9147) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/remoting/webapp/
H A Devent_handlers.js69 /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */
71 { event: 'click', id: 'access-mode-button', fn: goEnterAccessCode },
72 { event: 'submit', id: 'access-code-form', fn: sendAccessCode },
73 { event: 'click', id: 'cancel-access-code-button', fn: cancelAccessCode},
74 { event: 'click', id: 'cancel-share-button', fn: remoting.cancelShare },
75 { event: 'click', id: 'client-finished-it2me-button', fn: goHome },
76 { event: 'click', id: 'get-started-it2me',
78 { event: 'click', id: 'host-finished-button', fn: goHome },
79 { event: 'click', id: 'share-button', fn: remoting.tryShare }
81 /** @type {Array.<{event: string, id
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseMapElement.h41 + (id) newANTLRBaseMapElement;
42 + (id) newANTLRBaseMapElementWithIndex:(NSNumber *)anIdx;
43 - (id) init;
44 - (id) initWithAnIndex:(NSNumber *)anIdx;
46 - (id) copyWithZone:(NSZone *)aZone;
H A DANTLRParseTree.h37 id<ANTLRToken> payload;
45 + (ANTLRParseTree *)newANTLRParseTree:(id<ANTLRToken>)label;
46 - (id)initWithLabel:(id<ANTLRToken>)label;
48 - (id<ANTLRTree>)dupNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseMapElement.h41 + (id) newANTLRBaseMapElement;
42 + (id) newANTLRBaseMapElementWithIndex:(NSNumber *)anIdx;
43 - (id) init;
44 - (id) initWithAnIndex:(NSNumber *)anIdx;
46 - (id) copyWithZone:(NSZone *)aZone;
H A DANTLRParseTree.h37 id<ANTLRToken> payload;
45 + (ANTLRParseTree *)newANTLRParseTree:(id<ANTLRToken>)label;
46 - (id)initWithLabel:(id<ANTLRToken>)label;
48 - (id<ANTLRTree>)dupNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseMapElement.h41 + (id) newANTLRBaseMapElement;
42 + (id) newANTLRBaseMapElementWithIndex:(NSNumber *)anIdx;
43 - (id) init;
44 - (id) initWithAnIndex:(NSNumber *)anIdx;
46 - (id) copyWithZone:(NSZone *)aZone;
H A DANTLRParseTree.h37 id<ANTLRToken> payload;
45 + (ANTLRParseTree *)newANTLRParseTree:(id<ANTLRToken>)label;
46 - (id)initWithLabel:(id<ANTLRToken>)label;
48 - (id<ANTLRTree>)dupNode;
/external/chromium_org/cc/debug/
H A Dtraced_value.h18 static void AppendIDRef(const void* id, base::debug::TracedValue* array);
19 static void SetIDRef(const void* id,
24 const void* id);
29 const void* id);
35 const void* id);
/external/chromium_org/cc/test/
H A Dordered_texture_map.h23 void Append(GLuint id, scoped_refptr<TestTexture> texture);
24 void Replace(GLuint id, scoped_refptr<TestTexture> texture);
25 void Remove(GLuint id);
29 bool ContainsId(GLuint id);
31 scoped_refptr<TestTexture> TextureForId(GLuint id);
/external/chromium_org/chrome/browser/themes/
H A Dcustom_theme_supplier.cc20 bool CustomThemeSupplier::GetTint(int id, color_utils::HSL* hsl) const { argument
24 bool CustomThemeSupplier::GetColor(int id, SkColor* color) const { argument
28 bool CustomThemeSupplier::GetDisplayProperty(int id, int* result) const { argument
32 gfx::Image CustomThemeSupplier::GetImageNamed(int id) { argument
42 bool CustomThemeSupplier::HasCustomImage(int id) const {
/external/chromium_org/media/cast/net/rtp/
H A Dmock_rtp_feedback.h22 MOCK_METHOD1(OnPacketTimeout, void(const int32 id));
24 void(const int32 id, const RtpRtcpPacketField packet_type));
26 void(const int32 id, const RTPAliveType alive));
27 MOCK_METHOD2(OnIncomingSSRCChanged, void(const int32 id, const uint32 ssrc));
29 void(const int32 id, const uint32 csrc, const bool added));
/external/chromium_org/sync/test/fake_server/
H A Dtombstone_entity.cc23 FakeServerEntity* TombstoneEntity::Create(const string& id) { argument
24 return new TombstoneEntity(id, GetModelTypeFromId(id));
27 TombstoneEntity::TombstoneEntity(const string& id, argument
29 : FakeServerEntity(id, model_type, 0, string()) { }
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dmacdeviceinfo.cc35 if (device.id.size() < 2 * id_size) {
39 // The last characters of device id is a concatenation of VID and then PID.
40 const size_t vid_location = device.id.size() - 2 * id_size;
41 std::string id_vendor = device.id.substr(vid_location, id_size);
42 const size_t pid_location = device.id.size() - id_size;
43 std::string id_product = device.id.substr(pid_location, id_size);
/external/chromium_org/ui/webui/resources/js/
H A Dlocal_strings.js59 * Gets a localized string by its id.
60 * @param {string} id The ID of the string we want.
63 getString: function(id) {
66 var str = templateData[id];
69 console.warn('Missing string for id: ' + id);
76 * @param {string} id The ID of the string we want.
81 getStringF: function(id, var_args) {
82 return replaceArgs(this.getString(id), arguments);
/external/clang/test/SemaCXX/
H A Dgeneric-selection.cpp6 id = _Generic(T(), // expected-error {{controlling expression type 'char' not compatible with any generic association type}} enumerator in enum:A::__anon19319
13 static_assert(A<int>::id == 1, "fail");
14 static_assert(A<float>::id == 2, "fail");
15 static_assert(A<double, double>::id == 3, "fail");
23 id = _Generic(T(), enumerator in enum:B::__anon19320
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DByteArrayFetcher.java9 * A simple resource fetcher to convert byte arrays into input stream. Requires an id to be passed in to identify the
10 * data in the byte array because there is no cheap/simple way to obtain a useful id from the data itself.
14 private final String id; field in class:ByteArrayFetcher
16 public ByteArrayFetcher(byte[] bytes, String id) { argument
18 this.id = id;
33 return id;
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
H A DStreamByteArrayLoader.java11 * no simple/quick way to generate an id from the bytes themselves, so subclass must include an id.
14 private String id; field in class:StreamByteArrayLoader
20 public StreamByteArrayLoader(String id) { argument
21 this.id = id;
26 return new ByteArrayFetcher(model, id);
/external/libmtp/examples/
H A Dtrexist.c34 uint32_t id; local
46 id = strtoul(argv[1], &endptr, 10);
50 } else if ( ! id ) {
51 fprintf(stderr, "bad song id %u\n", id);
62 printf("%s\n", LIBMTP_Track_Exists(device, id) ? "Yes" : "No");
/external/smack/src/org/jivesoftware/smackx/packet/
H A DPEPItem.java35 String id; field in class:PEPItem
43 public PEPItem(String id) { argument
45 this.id = id;
73 * &lt;message id="MlIpV-4" to="gato1@gato.home" from="gato3@gato.home/Smack"&gt;
86 buf.append("<").append(getElementName()).append(" id=\"").append(id).append("\">");
/external/chromium_org/third_party/webrtc/modules/video_capture/mac/
H A Dvideo_capture_mac.mm113 const int32_t id, const char* deviceUniqueIdUTF8)
118 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, id,
127 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, id,
133 WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, id,
140 new RefCountImpl<videocapturemodule::VideoCaptureMacQuickTime>(id);
144 WEBRTC_TRACE(webrtc::kTraceDebug, webrtc::kTraceVideoCapture, id,
150 if (newCaptureModule->Init(id, deviceUniqueIdUTF8) != 0)
152 WEBRTC_TRACE(webrtc::kTraceDebug, webrtc::kTraceVideoCapture, id,
161 WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, id,
169 WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, id,
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DAMutableArray.h18 __strong id *ptrBuffer;
21 + (id) newArray;
22 + (id) arrayWithCapacity:(NSInteger)size;
24 - (id) init;
25 - (id) initWithCapacity:(NSInteger)size;
26 - (id) copyWithZone:(NSZone *)aZone;
28 - (void) addObject:(id)anObject;
30 - (id) objectAtIndex:(NSInteger)anIdx;
31 - (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx;
35 - (void) replaceObjectAtIndex:(NSInteger)idx withObject:(id)ob
[all...]
/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/chrome/browser/ui/cocoa/
H A Durl_drop_target.h25 - (id)initWithView:(NSView<URLDropTarget>*)view;
30 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender;
31 - (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)sender;
32 - (void)draggingExited:(id<NSDraggingInfo>)sender;
33 - (BOOL)performDragOperation:(id<NSDraggingInfo>)sender;
42 - (id<URLDropTargetController>)urlDropController;
46 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender;
47 - (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)sender;
48 - (void)draggingExited:(id<NSDraggingInfo>)sender;
49 - (BOOL)performDragOperation:(id<NSDraggingInf
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/
H A Dnavigation_collector.js146 * @param {!string} id The request's ID, as produced by parseId_.
149 prepareDataStorage_: function(id, url) {
150 this.pending_[id] = this.pending_[id] || {
217 var id = this.parseId_(data);
218 this.prepareDataStorage_(id, data.url);
219 this.pending_[id].openedInNewTab = data.tabId;
220 this.pending_[id].source = {
224 this.pending_[id].start = data.timeStamp;
236 var id
[all...]
/external/chromium_org/remoting/webapp/background/
H A Dmessage_window_manager.js17 * Mapping from window id to corresponding MessageWindow.
25 * The next window id to auto-assign.
33 * with the window id.
34 * @return {number} The window id.
37 var id = ++remoting.MessageWindowManager.nextId_;
38 remoting.MessageWindowManager.messageWindows_[id] = window;
39 return id;
43 * @param {number} id The window id.
46 remoting.MessageWindowManager.getMessageWindow = function(id) {
[all...]

Completed in 5137 milliseconds

<<11121314151617181920>>