Searched refs:id (Results 301 - 325 of 9147) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/ui/cocoa/content_settings/
H A Dcookie_details_view_controller.h30 - (id)init;
35 - (void)setContentObject:(id)content;
48 - (IBAction)setCookieDoesntHaveExplicitExpiration:(id)sender;
52 - (IBAction)setCookieHasExplicitExpiration:(id)sender;
/external/chromium_org/remoting/host/installer/mac/uninstaller/
H A Dremoting_uninstaller_app.h10 - (IBAction)uninstall:(id)sender;
11 - (IBAction)cancel:(id)sender;
/external/chromium_org/third_party/WebKit/Source/platform/credentialmanager/
H A DPlatformFederatedCredential.cpp10 PlatformFederatedCredential* PlatformFederatedCredential::create(const String& id, const String& name, const KURL& avatarURL, const KURL& federation) argument
12 return new PlatformFederatedCredential(id, name, avatarURL, federation);
15 PlatformFederatedCredential::PlatformFederatedCredential(const String& id, const String& name, const KURL& avatarURL, const KURL& federation) argument
16 : PlatformCredential(id, name, avatarURL)
H A DPlatformLocalCredential.cpp10 PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& name, const KURL& avatarURL, const String& password) argument
12 return new PlatformLocalCredential(id, name, avatarURL, password);
15 PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password) argument
16 : PlatformCredential(id, name, avatarURL)
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DTracedTask.h17 #define MANGLE(id) TRACE_ID_MANGLE(id)
19 #define MANGLE(id) (id)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGeofencingRegistration.h14 WebString id; member in struct:blink::WebGeofencingRegistration
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_constbuf.h38 unsigned id);
/external/clang/test/ARCMT/whitelisted/
H A Dheader1.h5 +(id)i1;
/external/clang/test/Index/
H A Dgetcursor-preamble.h7 -(id)foo;
/external/clang/test/SemaObjC/
H A Dforeach.m7 id keys;
9 for ((id)2 in a); /* expected-error{{selector element is not a valid lvalue}} */
16 for (id thisKey in keys); /* expected-warning {{unused variable 'thisKey'}} */
17 for (id thisKey in keys); /* expected-warning {{unused variable 'thisKey'}} */
30 id *itemsPtr;
37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */
51 @property (assign) id prop;
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_cgroup.h7 __u32 id; member in struct:xt_cgroup_info
/external/libcxx/test/localization/locales/locale/locale.types/locale.id/
H A DAndroid.mk17 test_makefile := external/libcxx/test/localization/locales/locale/locale.types/locale.id/Android.mk
19 test_name := localization/locales/locale/locale.types/locale.id/id
20 test_src := id.pass.cpp
/external/libcxx/test/localization/locales/locale.global.templates/
H A Dhas_facet.pass.cpp20 static std::locale::id id; member in struct:my_facet
23 std::locale::id my_facet::id; member in class:my_facet
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dperf_regs.h9 static inline const char *perf_reg_name(int id __maybe_unused)
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_constbuf.h38 unsigned id);
/external/protobuf/gtest/test/
H A Dgtest_stress_test.cc55 String IdToKey(int id, const char* suffix) { argument
57 key << "key_" << id << "_" << suffix;
61 String IdToString(int id) { argument
63 id_message << id; local
68 int id,
70 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
73 << "expecting " << suffix << " value for id " << id; local
74 EXPECT_STREQ(IdToString(id).c_str(), property->value());
79 void ManyAsserts(int id) { argument
67 ExpectKeyAndValueWereRecordedForId(const Vector<TestProperty>& properties, int id, const char* suffix) argument
80 ::std::cout << "Thread #" << id << " running...\\n"; local
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DRetractItem.java26 private String id; field in class:RetractItem
29 * Construct a <tt>RetractItem</tt> with the specified id.
31 * @param itemId The id if the item deleted
37 id = itemId;
42 return id;
57 return "<retract id='" + id + "'/>";
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLREarlyExitException.h34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
H A DANTLRStreamEnumerator.h38 id eof;
42 -(id) initWithNodes:(NSMutableArray *) n andEOF:(id) o;
H A DANTLRUnbufferedTokenStream.h39 id<ANTLRTokenSource> tokenSource;
44 @property (retain, getter=getTokenSource, setter=setTokenSource:) id<ANTLRTokenSource> tokenSource;
48 + (ANTLRUnbufferedTokenStream *)newANTLRUnbufferedTokenStream:(id<ANTLRTokenSource>)aTokenSource;
49 - (id) init;
50 - (id) initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource;
52 - (id<ANTLRToken>)nextElement;
53 - (BOOL)isEOF:(id<ANTLRToken>) aToken;
54 - (id<ANTLRTokenSource>)getTokenSource;
56 - (NSString *)toStringFromToken:(id<ANTLRToke
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLREarlyExitException.h34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
H A DANTLRStreamEnumerator.h38 id eof;
42 -(id) initWithNodes:(NSMutableArray *) n andEOF:(id) o;
H A DANTLRUnbufferedTokenStream.h39 id<ANTLRTokenSource> tokenSource;
44 @property (retain, getter=getTokenSource, setter=setTokenSource:) id<ANTLRTokenSource> tokenSource;
48 + (ANTLRUnbufferedTokenStream *)newANTLRUnbufferedTokenStream:(id<ANTLRTokenSource>)aTokenSource;
49 - (id) init;
50 - (id) initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource;
52 - (id<ANTLRToken>)nextElement;
53 - (BOOL)isEOF:(id<ANTLRToken>) aToken;
54 - (id<ANTLRTokenSource>)getTokenSource;
56 - (NSString *)toStringFromToken:(id<ANTLRToke
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLREarlyExitException.h34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
H A DANTLRStreamEnumerator.h38 id eof;
42 -(id) initWithNodes:(NSMutableArray *) n andEOF:(id) o;

Completed in 4734 milliseconds

<<11121314151617181920>>