HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 326 - 350 of 20383) sorted by null

<<11121314151617181920>>

  /external/webrtc/talk/app/webrtc/objc/public/
RTCVideoSource.h 35 - (id)init __attribute__(
  /external/webrtc/webrtc/modules/video_capture/external/
video_capture_external.cc 19 const int32_t id,
22 new RefCountImpl<VideoCaptureImpl>(id);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
ANQPElement.java 9 protected ANQPElement(Constants.ANQPElementType id) {
10 mID = id;
  /frameworks/support/samples/SupportWearDemos/
build.gradle 18 id("SupportAndroidTestAppPlugin")
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
id.h 14 isl_ctx *isl_id_get_ctx(__isl_keep isl_id *id);
18 __isl_give isl_id *isl_id_copy(isl_id *id);
19 void *isl_id_free(__isl_take isl_id *id);
21 void *isl_id_get_user(__isl_keep isl_id *id);
22 __isl_keep const char *isl_id_get_name(__isl_keep isl_id *id);
24 __isl_give isl_id *isl_id_set_free_user(__isl_take isl_id *id,
28 __isl_keep isl_id *id);
29 void isl_id_dump(__isl_keep isl_id *id);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
copy.pass.cpp 14 // class thread::id
16 // id(const id&) = default;
23 std::thread::id id0;
24 std::thread::id id1 = id0;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/
select_on_container_copy_construction.pass.cpp 31 int id; member in struct:A
32 explicit A(int i = 0) : id(i) {}
41 int id; member in struct:B
42 explicit B(int i = 0) : id(i) {}
54 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0);
58 assert(std::allocator_traits<A<int> >::select_on_container_copy_construction(a).id == 0);
63 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100);
67 assert(std::allocator_traits<B<int> >::select_on_container_copy_construction(b).id == 100);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonToken.h 47 __strong id<ANTLRCharStream> input;
52 + (id<ANTLRToken>)INVALID_TOKEN;
54 + (id<ANTLRToken>) newToken;
55 + (id<ANTLRToken>) newToken:(id<ANTLRCharStream>)anInput
60 + (id<ANTLRToken>) newToken:(ANTLRTokenType)aType;
61 + (id<ANTLRToken>) newToken:(NSInteger)tokenType Text:(NSString *)tokenText;
62 + (id<ANTLRToken>) newTokenWithToken:(ANTLRCommonToken *)fromToken;
63 + (id<ANTLRToken>) eofToken;
64 + (id<ANTLRToken>) skipToken
    [all...]
ANTLRMismatchedRangeException.h 39 + (id) newException:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
40 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedSetException.h 37 + (id) newException:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
ANTLRMismatchedTreeNodeException.h 38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRStreamEnumerator.h 38 id eof;
42 -(id) initWithNodes:(AMutableArray *) n andEOF:(id) obj;
46 @property (retain) id eof;
  /external/clang/test/ARCMT/
Common.h 28 NS_INLINE NS_RETURNS_RETAINED id NSMakeCollectable(CFTypeRef CF_CONSUMED cf) NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
31 - (BOOL)isEqual:(id)object;
33 - (id)retain NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
36 - (id)autorelease NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
40 - (id)init;
42 + (id)new;
43 + (id)alloc;
48 - (id)copy;
49 - (id)mutableCopy;
61 + (void)addObject:(id)anObject
    [all...]
  /external/tcpdump/
send-ack.awk 32 id = endSeq
33 if (! timeOf[id])
34 timeOf[id] = tim
48 if (++timesSent[id] > 1)
49 printf " (%.2f) [%d]", tim - timeOf[id], timesSent[id]
54 id = $7
57 flag, $5, id
62 printf " (%.2f)", tim - timeOf[id]
63 if (++timesAcked[id] > 1
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixUserPrincipals.java 44 private final int id; // uid or gid field in class:UnixUserPrincipals.User
48 private User(int id, boolean isGroup, String name) {
49 this.id = id;
54 User(int id, String name) {
55 this(id, false, name);
61 return id;
66 return id;
71 return id == -1;
91 if ((this.id != other.id) |
144 int id = -1; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeNodeStream.h 40 id root;
43 id <ANTLRTokenStream> tokens;
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens;
65 + (ANTLRCommonTreeNodeStream *) newANTLRCommonTreeNodeStream:(id<ANTLRTreeAdaptor>)anAdaptor Tree:(ANTLRCommonTree *)theTree;
67 - (id) initWithTree:(ANTLRCommonTree *)theTree;
69 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)adaptor Tree:(ANTLRCommonTree *)theTree;
76 - (id) nextElement;
78 - (BOOL) isEOF:(id<ANTLRTree>) o;
81 - (id) getTreeSource
    [all...]
ANTLRMismatchedSetException.h 37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeNodeStream.h 40 id root;
43 id <ANTLRTokenStream> tokens;
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens;
65 + (ANTLRCommonTreeNodeStream *) newANTLRCommonTreeNodeStream:(id<ANTLRTreeAdaptor>)anAdaptor Tree:(ANTLRCommonTree *)theTree;
67 - (id) initWithTree:(ANTLRCommonTree *)theTree;
69 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)adaptor Tree:(ANTLRCommonTree *)theTree;
76 - (id) nextElement;
78 - (BOOL) isEOF:(id<ANTLRTree>) o;
81 - (id) getTreeSource
    [all...]
ANTLRMismatchedSetException.h 37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeNodeStream.h 40 id root;
43 id <ANTLRTokenStream> tokens;
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens;
65 + (ANTLRCommonTreeNodeStream *) newANTLRCommonTreeNodeStream:(id<ANTLRTreeAdaptor>)anAdaptor Tree:(ANTLRCommonTree *)theTree;
67 - (id) initWithTree:(ANTLRCommonTree *)theTree;
69 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)adaptor Tree:(ANTLRCommonTree *)theTree;
76 - (id) nextElement;
78 - (BOOL) isEOF:(id<ANTLRTree>) o;
81 - (id) getTreeSource
    [all...]
ANTLRMismatchedSetException.h 37 + (id) exceptionWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
38 - (id) initWithSet:(NSSet *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/beancontext/mock/
MockPropertyChangeListenerS.java 33 public String id; field in class:MockPropertyChangeListenerS
35 public MockPropertyChangeListenerS(String id) {
36 this.id = id;

Completed in 967 milliseconds

<<11121314151617181920>>