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

<<21222324252627282930>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRParseTree.h 38 __strong id<ANTLRToken> payload;
46 + (id<ANTLRBaseTree>)newANTLRParseTree:(id<ANTLRToken>)label;
47 - (id)initWithLabel:(id<ANTLRToken>)label;
49 - (id<ANTLRBaseTree>)dupNode;
62 @property (retain) id<ANTLRToken> payload;
ANTLRCommonTokenStream.h 46 + (ANTLRCommonTokenStream *)newANTLRCommonTokenStreamWithTokenSource:(id<ANTLRTokenSource>)theTokenSource;
47 + (ANTLRCommonTokenStream *)newANTLRCommonTokenStreamWithTokenSource:(id<ANTLRTokenSource>)theTokenSource
50 - (id) init;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource;
52 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel;
55 - (id<ANTLRToken>) LB:(NSInteger)k;
56 - (id<ANTLRToken>) LT:(NSInteger)k;
65 // - (id<ANTLRTokenSource>) getTokenSource
    [all...]
ANTLRTreeWizard.h 49 id actor;
50 id object1;
51 id object2;
53 + (ANTLRVisitor *)newANTLRVisitor:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)anObject2;
54 - (id) initWithAction:(NSInteger)anAction Actor:(id)anActor Object:(id)anObject1 Object:(id)anObject2
    [all...]
ANTLRBaseTree.h 33 + (id<ANTLRBaseTree>) INVALID_NODE;
35 + (id<ANTLRBaseTree>) newTree;
36 + (id<ANTLRBaseTree>) newTree:(id<ANTLRBaseTree>)node;
38 - (id<ANTLRBaseTree>) init;
39 - (id<ANTLRBaseTree>) initWith:(id<ANTLRBaseTree>)node;
41 - (id<ANTLRBaseTree>) getChild:(NSUInteger)i;
44 - (id<ANTLRBaseTree>)getFirstChildWithType:(NSInteger)type;
50 - (void) addChild:(id<ANTLRBaseTree>) tree
    [all...]
AMutableDictionary.h 24 __strong id *ptrBuffer;
33 @property (assign) id *ptrBuffer;
38 - (id) init;
39 - (id) initWithCapacity:(NSUInteger)numItems;
42 - (BOOL) isEqual:(id)object;
43 - (id) objectForKey:(id)aKey;
44 - (void) setObject:(id)obj forKey:(id)aKey;
45 - (void) removeObjectForKey:(id)aKey
    [all...]
  /external/chromium/chrome/browser/extensions/
pending_extension_manager.cc 34 const std::string& id,
37 PendingExtensionMap::const_iterator it = pending_extension_map_.find(id);
46 void PendingExtensionManager::Remove(const std::string& id) {
47 pending_extension_map_.erase(id);
50 bool PendingExtensionManager::IsIdPending(const std::string& id) const {
51 return ContainsKey(pending_extension_map_, id);
55 const std::string& id,
63 if (service_.GetExtensionById(id, true)) {
64 LOG(ERROR) << "Trying to add pending extension " << id
72 return AddExtensionImpl(id, update_url, should_allow_install
    [all...]
  /external/chromium_org/content/renderer/
notification_provider.h 42 bool ShowHTML(const WebKit::WebNotification& notification, int id);
43 bool ShowText(const WebKit::WebNotification& notification, int id);
46 void OnDisplay(int id);
47 void OnError(int id, const WebKit::WebString& message);
48 void OnClose(int id, bool by_user);
49 void OnClick(int id);
50 void OnPermissionRequestComplete(int id);
active_notification_tracker.cc 22 const WebNotification& notification, int& id) {
26 id = iter->second;
31 int id, WebNotification* notification) {
32 WebNotification* lookup = notification_table_.Lookup(id);
47 int id = notification_table_.Add(notification); local
48 reverse_notification_table_[proxy] = id;
49 return id;
53 void ActiveNotificationTracker::UnregisterNotification(int id) {
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
56 notification_table_.Remove(id);
    [all...]
  /external/clang/lib/Frontend/
LangStandards.cpp 16 #define LANGSTANDARD(id, name, desc, features) \
17 static const LangStandard Lang_##id = { name, desc, features };
24 #define LANGSTANDARD(id, name, desc, features) \
25 case lang_##id: return Lang_##id;
33 #define LANGSTANDARD(id, name, desc, features) \
34 .Case(name, lang_##id)
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.h 27 u64 id; member in struct:__tsan::MutexSet::Desc
34 // The 'id' is obtained from SyncVar::GetId().
35 void Add(u64 id, bool write, u64 epoch);
36 void Del(u64 id, bool write);
37 void Remove(u64 id); // Removes the mutex completely (if it's destroyed).
55 void MutexSet::Add(u64 id, bool write, u64 epoch) {}
56 void MutexSet::Del(u64 id, bool write) {}
57 void MutexSet::Remove(u64 id) {}
  /external/clang/test/Index/
complete-properties.m 6 id StoredProp3;
15 @property id Prop3;
16 @property id Prop4;
25 @property id Prop3;
28 id test(I3 *i3) {
33 @property id Prop2;
42 id Prop2_;
63 // CHECK-CC1: ObjCPropertyDecl:{ResultType id}{TypedText Prop3}
64 // CHECK-CC1: ObjCPropertyDecl:{ResultType id}{TypedText Prop4}
68 // CHECK-CC2-NEXT: ObjCPropertyDecl:{ResultType id}{TypedText Prop3
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNotificationManager.java 21 public void notify(int id, Notification notification)
23 notify(null, id, notification);
27 public void notify(String tag, int id, Notification notification) {
29 idForTag.put(tag, id);
31 notifications.put(id, notification);
35 public void cancel(int id)
37 cancel(null, id);
41 public void cancel(String tag, int id) {
42 // I can't make sense of this method signature. I'm guessing that the id is optional and if it's bogus you are supposed to use the tag instead, but that references to both should be gone. PG
44 if (notifications.containsKey(id)) {
66 Integer id = idForTag.get(tag); local
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientBridge.java 48 final int id) {
58 proceedSslError(value.booleanValue(), id);
65 private void proceedSslError(boolean proceed, int id) {
67 nativeProceedSslError(mNativeContentsClientBridge, proceed, id);
71 private void handleJsAlert(String url, String message, int id) {
72 JsResultHandler handler = new JsResultHandler(this, id);
77 private void handleJsConfirm(String url, String message, int id) {
78 JsResultHandler handler = new JsResultHandler(this, id);
83 private void handleJsPrompt(String url, String message, String defaultValue, int id) {
84 JsResultHandler handler = new JsResultHandler(this, id);
    [all...]
  /external/iptables/extensions/
libxt_LED.c 26 {.name = "led-trigger-id", .id = O_LED_TRIGGER_ID,
28 .max = sizeof(((struct xt_led_info *)NULL)->id) -
30 {.name = "led-delay", .id = O_LED_DELAY, .type = XTTYPE_STRING},
31 {.name = "led-always-blink", .id = O_LED_ALWAYS_BLINK,
41 "--led-trigger-id name suffix for led trigger name\n"
54 switch (cb->entry->id) {
56 strcpy(led->id, "netfilter-");
57 strcat(led->id, cb->arg);
75 const char *id = led->id + strlen("netfilter-"); /* trim off prefix * local
98 const char *id = led->id + strlen("netfilter-"); \/* trim off prefix *\/ local
    [all...]
  /external/checkpolicy/
policy_define.c 70 static int id_has_dot(char *id);
107 int insert_id(char *id, int push)
112 newid = (char *)malloc(strlen(id) + 1);
117 strcpy(newid, id);
133 static int id_has_dot(char *id)
135 if (strchr(id, '.') >= id + 1) {
143 char *id = 0; local
149 id = queue_remove(id_queue);
150 free(id);
243 char *id = 0; local
281 char *id = 0; local
332 char *id; local
356 char *id; local
388 char *id; local
420 char *id; local
452 char *id = 0, *perm = 0; local
545 char *id; local
663 char *id; local
797 char *id; local
843 char *id; local
986 char *id; local
1103 char *id; local
1168 char *id; local
1200 char *id; local
1308 char *bounds, *id; local
1334 char *id; local
1481 char *id; local
1556 char *id; local
1580 char *id; local
1603 char *id, *bool_value; local
1690 char *id; local
1827 char *id; local
1847 char *id; local
1873 char *id; local
1925 char *id; local
1974 char *id; local
2293 char *id; local
2444 char *id; local
2489 char *id, *name = NULL; local
2693 char *id; local
2843 char *id; local
2945 char *id; local
3191 char *id; local
3456 char *id; local
3563 char *id; local
3733 char *id; local
3837 char *id; local
3891 char *id; local
3955 char *id; local
4019 char *id; local
4075 char *id; local
4220 char *id; local
4306 char *id; local
4582 char *id; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTreeNodeStream.h 51 + (id) newANTLRStreamIterator:(ANTLRBufferedTreeNodeStream *) theStream;
53 - (id) initWithStream:(ANTLRBufferedTreeNodeStream *) theStream;
56 - (id) next;
63 id<ANTLRTree> up;
64 id<ANTLRTree> down;
65 id<ANTLRTree> eof;
69 id<ANTLRTree> root; // root
71 id<ANTLRTokenStream> tokens;
80 id currentSymbol;
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up
    [all...]
ANTLRLookaheadStream.h 39 id eof;
45 @property (readwrite, retain, getter=getEof, setter=setEof) id eof;
50 - (id) initWithEOF:(id) o;
51 - (id) nextElement;
55 - (id) LT:(NSInteger) i;
56 - (id) LB:(NSInteger) i;
57 - (id) currentSymbol;
64 - (id) getEof;
65 - (void) setEof:(id) anID
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTreeNodeStream.h 51 + (id) newANTLRStreamIterator:(ANTLRBufferedTreeNodeStream *) theStream;
53 - (id) initWithStream:(ANTLRBufferedTreeNodeStream *) theStream;
56 - (id) next;
63 id<ANTLRTree> up;
64 id<ANTLRTree> down;
65 id<ANTLRTree> eof;
69 id<ANTLRTree> root; // root
71 id<ANTLRTokenStream> tokens;
80 id currentSymbol;
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up
    [all...]
ANTLRLookaheadStream.h 39 id eof;
45 @property (readwrite, retain, getter=getEof, setter=setEof) id eof;
50 - (id) initWithEOF:(id) o;
51 - (id) nextElement;
55 - (id) LT:(NSInteger) i;
56 - (id) LB:(NSInteger) i;
57 - (id) currentSymbol;
64 - (id) getEof;
65 - (void) setEof:(id) anID
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTreeNodeStream.h 51 + (id) newANTLRStreamIterator:(ANTLRBufferedTreeNodeStream *) theStream;
53 - (id) initWithStream:(ANTLRBufferedTreeNodeStream *) theStream;
56 - (id) next;
63 id<ANTLRTree> up;
64 id<ANTLRTree> down;
65 id<ANTLRTree> eof;
69 id<ANTLRTree> root; // root
71 id<ANTLRTokenStream> tokens;
80 id currentSymbol;
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up
    [all...]
ANTLRLookaheadStream.h 39 id eof;
45 @property (readwrite, retain, getter=getEof, setter=setEof) id eof;
50 - (id) initWithEOF:(id) o;
51 - (id) nextElement;
55 - (id) LT:(NSInteger) i;
56 - (id) LB:(NSInteger) i;
57 - (id) currentSymbol;
64 - (id) getEof;
65 - (void) setEof:(id) anID
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestActivity.java 39 private static final String KEY_FRAGMENT_ID = "id";
45 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
46 onListItemClick((ListView)parent, v, position, id);
50 private void onListItemClick(ListView lv, View v, int position, long id) {
63 ft.replace(R.id.testframe, fragment);
78 mList = (ListView) findViewById(R.id.testlist);
84 new int[]{android.R.id.text1});
102 addItem(result, "Basic", BiDiTestBasic.class, R.id.basic);
104 addItem(result, "Canvas2", BiDiTestCanvas2.class, R.id.canvas2);
106 addItem(result, "TextView LTR", BiDiTestTextViewLtr.class, R.id.textview_ltr)
    [all...]
  /external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.h 47 // Insert an item, identified by the metahandle |id|, into the reorder
50 void PushAddedItem(int64 id) {
51 operations_[id] = OP_ADD;
54 // Insert an item, identified by the metahandle |id|, into the reorder
57 void PushDeletedItem(int64 id) {
58 operations_[id] = OP_DELETE;
61 // Insert an item, identified by the metahandle |id|, into the reorder
66 void PushUpdatedItem(int64 id, bool position_changed) {
67 operations_[id] = position_changed ? OP_UPDATE_POSITION_AND_PROPERTIES :
71 void SetExtraDataForId(int64 id, ExtraChangeRecordData* extra)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_controller.h 64 - (id)initWithModel:(BaseDownloadItemModel*)downloadModel
75 - (void)updateVisibility:(id)sender;
84 - (IBAction)handleButtonClick:(id)sender;
98 - (IBAction)saveDownload:(id)sender;
99 - (IBAction)discardDownload:(id)sender;
102 - (IBAction)handleOpen:(id)sender;
103 - (IBAction)handleAlwaysOpen:(id)sender;
104 - (IBAction)handleReveal:(id)sender;
105 - (IBAction)handleCancel:(id)sender;
106 - (IBAction)handleTogglePause:(id)sender
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
url_drop_target.h 26 - (id)initWithView:(NSView<URLDropTarget>*)view;
31 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender;
32 - (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)sender;
33 - (void)draggingExited:(id<NSDraggingInfo>)sender;
34 - (BOOL)performDragOperation:(id<NSDraggingInfo>)sender;
43 - (id<URLDropTargetController>)urlDropController;
47 - (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender;
48 - (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)sender;
49 - (void)draggingExited:(id<NSDraggingInfo>)sender;
50 - (BOOL)performDragOperation:(id<NSDraggingInfo>)sender
    [all...]

Completed in 1216 milliseconds

<<21222324252627282930>>