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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRStreamEnumerator.h 38 id eof;
42 -(id) initWithNodes:(NSMutableArray *) n andEOF:(id) o;
ANTLRUnbufferedTokenStream.h 39 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<ANTLRToken>)aStart ToEnd:(id<ANTLRToken>)aStop
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLREarlyExitException.h 34 + (ANTLREarlyExitException *) newException:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger)aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
ANTLRTree.h 35 //+ (id<ANTLRTree>) invalidNode;
37 - (id<ANTLRTree>) getChild:(NSUInteger)index;
42 - (id<ANTLRTree>)getParent;
44 - (void) setParent:(id<ANTLRTree>)t;
50 - (id<ANTLRTree>) getAncestor:(NSInteger) ttype;
68 - (void) addChild:(id<ANTLRTree>) t;
71 - (void) setChild:(NSInteger)i With:(id<ANTLRTree>) t;
73 - (id) deleteChild:(NSInteger) i;
80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
107 - (id<ANTLRTree>) dupNode
    [all...]
ANTLRUnbufferedTokenStream.h 39 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<ANTLRToken>)aStart ToEnd:(id<ANTLRToken>)aStop
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpContext.java 57 Object getAttribute(String id);
59 void setAttribute(String id, Object obj);
61 Object removeAttribute(String id);
  /external/capstone/arch/ARM/
ARMMapping.h 14 // given internal insn id, return public instruction ID
15 void ARM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
17 const char *ARM_insn_name(csh handle, unsigned int id);
19 const char *ARM_group_name(csh handle, unsigned int id);
  /external/capstone/arch/Mips/
MipsMapping.h 12 // given internal insn id, return public instruction info
13 void Mips_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *Mips_insn_name(csh handle, unsigned int id);
17 const char *Mips_group_name(csh handle, unsigned int id);
19 // map instruction name to instruction ID
  /external/capstone/arch/SystemZ/
SystemZMapping.h 12 // given internal insn id, return public instruction info
13 void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *SystemZ_insn_name(csh handle, unsigned int id);
17 const char *SystemZ_group_name(csh handle, unsigned int id);
  /external/capstone/arch/XCore/
XCoreMapping.h 12 // given internal insn id, return public instruction info
13 void XCore_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *XCore_insn_name(csh handle, unsigned int id);
17 const char *XCore_group_name(csh handle, unsigned int id);
22 // map register name to register ID
  /external/clang/test/ARCMT/designated-init-in-header/
header1.h 6 -(id)init;
12 +(id)s1;
13 -(id)initWithFoo:(NSString*)foo;
  /external/clang/test/CodeGenCXX/
mangle-unnameable-conversions.cpp 3 template<typename T> using id = T;
6 operator id<T[N]>&();
8 operator id<T (U::*)()>() const;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
VariableDeclarator.java 34 private VariableDeclaratorId id; field in class:VariableDeclarator
41 public VariableDeclarator(VariableDeclaratorId id) {
42 setId(id);
45 public VariableDeclarator(VariableDeclaratorId id, Expression init) {
46 setId(id);
50 public VariableDeclarator(int beginLine, int beginColumn, int endLine, int endColumn, VariableDeclaratorId id, Expression init) {
52 setId(id);
67 return id;
74 public void setId(VariableDeclaratorId id) {
75 this.id = id
    [all...]
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
A.h 19 explicit A(int id) : id_(id) {++count;}
23 int id() const {return id_;} function in class:A
  /external/libdrm/tests/kms/
libkms-test-crtc.c 30 struct kms_crtc *kms_crtc_create(struct kms_device *device, uint32_t id)
39 crtc->id = id;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue47/
IncompleteBean.java 19 private int id; field in class:IncompleteBean
23 id = 10;
35 return id;
  /external/walt/ios/WALT/
ScreenResponseController.h 23 - (IBAction)start:(id)sender;
24 - (IBAction)reset:(id)sender;
25 - (IBAction)computeStatistics:(id)sender;
  /external/webrtc/webrtc/modules/audio_conference_mixer/include/
audio_conference_mixer_defines.h 28 virtual int32_t GetAudioFrame(int32_t id,
36 virtual int32_t NeededFrequency(int32_t id) const = 0;
50 virtual void NewMixedAudio(const int32_t id,
  /external/webrtc/webrtc/modules/video_capture/
video_capture_factory.h 24 // id - unique identifier of this video capture module object.
27 static VideoCaptureModule* Create(const int32_t id,
31 // id - unique identifier of this video capture module object
33 static VideoCaptureModule* Create(const int32_t id,
37 const int32_t id);
  /external/webrtc/webrtc/modules/video_capture/windows/
video_capture_mf.cc 16 VideoCaptureMF::VideoCaptureMF(const int32_t id) : VideoCaptureImpl(id) {}
19 int32_t VideoCaptureMF::Init(const int32_t id, const char* device_id) {
  /frameworks/support/navigation/testing/ktx/src/main/java/androidx/navigation/testing/
TestNavigatorDestinationBuilder.kt 30 inline fun NavGraphBuilder.test(@IdRes id: Int) = test(id) {}
36 @IdRes id: Int,
38 ) = destination(TestNavigatorDestinationBuilder(provider[TestNavigator::class], id).apply(block))
46 @IdRes id: Int
47 ) : NavDestinationBuilder<TestNavigator.Destination>(navigator, id)
  /hardware/ril/libril/
RilSocket.h 41 * Socket id.
43 RIL_SOCKET_ID id; member in class:RilSocket
51 * @param Socket id.
55 id = socketId;
59 * Get socket id.
61 * @return RIL_SOCKET_ID socket id.
64 return id;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/
A.h 19 explicit A(int id) : id_(id) {++count;}
23 int id() const {return id_;} function in class:A
  /external/selinux/checkpolicy/
policy_define.c 78 static int id_has_dot(char *id);
116 int insert_id(const char *id, int push)
121 newid = (char *)malloc(strlen(id) + 1);
126 strcpy(newid, id);
142 static int id_has_dot(char *id)
144 if (strchr(id, '.') >= id + 1) {
152 char *id = 0; local
158 id = queue_remove(id_queue);
159 free(id);
252 char *id = 0; local
290 char *id = 0; local
341 char *id; local
366 char *id; local
398 char *id; local
430 char *id; local
462 char *id; local
494 char *id = 0, *perm = 0; local
587 char *id; local
705 char *id; local
839 char *id; local
885 char *id; local
1028 char *id; local
1145 char *id; local
1229 char *id; local
1294 char *id; local
1327 char *id; local
1436 char *bounds, *id; local
1462 char *id; local
1611 char *id; local
1695 char *id; local
1719 char *id; local
1742 char *id, *bool_value; local
1908 char *id; local
2034 char *id; local
2466 char *id; local
2497 char *id; local
2651 char *id; local
2671 char *id; local
2697 char *id; local
2750 char *id; local
2799 char *id; local
3119 char *id; local
3273 char *id; local
3318 char *id, *name = NULL; local
3541 char *id; local
3692 char *id; local
3794 char *id; local
4038 char *id; local
4303 char *id; local
4410 char *id; local
4580 char *id; local
4684 char *id; local
4738 char *id; local
4802 char *id; local
4866 char *id; local
4977 char *id; local
5067 char *id; local
5172 char *id; local
5309 char *id; local
5395 char *id; local
5669 char *id; local
    [all...]
  /hardware/interfaces/wifi/1.0/
IWifiNanIfaceEventCallback.hal 35 * @param cmdId command Id corresponding to the original request.
40 oneway notifyCapabilitiesResponse(CommandIdShort id, WifiNanStatus status,
46 * @param cmdId command Id corresponding to the original request.
55 oneway notifyEnableResponse(CommandIdShort id, WifiNanStatus status);
60 * @param cmdId command Id corresponding to the original request.
67 oneway notifyConfigResponse(CommandIdShort id, WifiNanStatus status);
72 * @param cmdId command Id corresponding to the original request.
77 oneway notifyDisableResponse(CommandIdShort id, WifiNanStatus status);
83 * @param cmdId command Id corresponding to the original request.
90 * @param sessionId ID of the new publish session (if successfully created)
    [all...]

Completed in 1550 milliseconds

<<11121314151617181920>>