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

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 40 id<ANTLRTreeAdaptor> adaptor;
41 id<ANTLRTree> root;
42 id<ANTLRTree> tree;
44 id<ANTLRTree> up;
45 id<ANTLRTree> down;
46 id<ANTLRTree> eof;
51 @property(retain, readwrite) id<ANTLRTree> up;
52 @property(retain, readwrite) id<ANTLRTree> down;
53 @property(retain, readwrite) id<ANTLRTree> eof;
57 andTree:(id<ANTLRTree>)tree
    [all...]
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognitionException.h 35 id<ANTLRIntStream> input;
37 id<ANTLRToken> token;
38 id<ANTLRBaseTree> node;
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input;
46 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token;
47 @property (retain, getter=getNode, setter=setNode:) id<ANTLRBaseTree>node;
52 + (id) newException;
53 + (id) newException:(id<ANTLRIntStream>) anInputStream;
54 - (id) init
    [all...]
ANTLRRuntimeException.h 44 - (id) init;
45 - (id) init:(NSString *)aReason;
46 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
47 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
51 - (id) stackTrace:(NSException *)e;
58 + (id) newException;
59 + (id) newException:(NSString *)aReason;
60 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
62 - (id) init
    [all...]
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
pending_counts_test.cc 28 for (int id = 0; id < C; id++) {
29 h[id] = layout.CreateHandle(id, id);
33 for (int id = 0; id < C; id++) {
34 c.set_initial_count(h[id], id)
    [all...]
  /external/libmpeg2/common/
impeg2_buf_mgr.c 79 WORD32 id; local
84 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
86 ps_buf_mgr->au4_status[id] = 0;
87 ps_buf_mgr->apv_ptr[id] = NULL;
121 /* Check if buffer ID is within allowed range */
127 /* Check if the current ID is being used to hold some other buffer */
153 * Pointer to the id of the free buffer
166 WORD32 id; local
209 UWORD32 id; local
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestLoaderManager.java 40 public <D> Loader<D> initLoader(int id, Bundle args,
42 Loader<D> loader = mLoaders.get(id);
45 loader = callback.onCreateLoader(id, args);
46 mLoaders.put(id, loader);
48 loader.unregisterListener(mListeners.get(id));
51 loader.registerListener(id, listener);
52 mListeners.put(id, listener);
58 public <D> Loader<D> restartLoader(int id, Bundle args,
60 if (mLoaders.get(id) != null) {
61 destroyLoader(id);
    [all...]
  /frameworks/base/tools/aapt2/compile/
IdAssigner.cpp 30 * Assigns the intended ID to the ResourceTablePackage, ResourceTableType, and
32 * as long as there is no existing ID or the ID is the same.
34 static bool AssignId(IDiagnostics* diag, const ResourceId& id,
37 if (pkg->id.value() == id.package_id()) {
38 if (!type->id || type->id.value() == id.type_id()) {
39 type->id = id.type_id()
    [all...]
  /bionic/libc/kernel/uapi/linux/
patchkey.h 27 #define _PATCHKEY(id) (0xfd00 | id)
29 #define _PATCHKEY(id) ((id << 8) | 0x00fd)
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/clang/test/Modules/Inputs/
typo.h 4 + (id)alloc;
  /external/clang/test/SemaCXX/
builtin_objc_msgSend.cpp 6 typedef struct objc_object *id; typedef in typeref:struct:objc_object
8 extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
14 objc_msgSend((id)object, SEL_release);
  /external/iproute2/include/
rt_names.h 6 const char *rtnl_rtprot_n2a(int id, char *buf, int len);
7 const char *rtnl_rtscope_n2a(int id, char *buf, int len);
8 const char *rtnl_rttable_n2a(__u32 id, char *buf, int len);
9 const char *rtnl_rtrealm_n2a(int id, char *buf, int len);
10 const char *rtnl_dsfield_n2a(int id, char *buf, int len);
11 const char *rtnl_group_n2a(int id, char *buf, int len);
13 int rtnl_rtprot_a2n(__u32 *id, const char *arg);
14 int rtnl_rtscope_a2n(__u32 *id, const char *arg);
15 int rtnl_rttable_a2n(__u32 *id, const char *arg);
16 int rtnl_rtrealm_a2n(__u32 *id, const char *arg)
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionData.java 25 private final long id; field in class:ExecutionData
34 * @param id
41 public ExecutionData(final long id, final String name,
43 this.id = id;
52 * @param id
59 public ExecutionData(final long id, final String name, final int probeCount) {
60 this.id = id;
72 return id;
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
IProbeInserter.java 21 * Inserts the probe with the given id.
23 * @param id
24 * id of the probe to insert
26 public void insertProbe(final int id);
  /external/kernel-headers/original/uapi/linux/
patchkey.h 29 # define _PATCHKEY(id) (0xfd00|id)
31 # define _PATCHKEY(id) ((id<<8)|0x00fd)
  /external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
enabled_hashes.pass.cpp 25 test_hash_enabled_for_type<std::thread::id>();
  /external/libmojo/mojo/public/cpp/bindings/
interface_id.h 25 inline bool IsMasterInterfaceId(InterfaceId id) {
26 return id == kMasterInterfaceId;
29 inline bool IsValidInterfaceId(InterfaceId id) {
30 return id != kInvalidInterfaceId;
  /external/ltp/include/
tst_checkpoint_fn.h 32 * @id: Checkpoint id, possitive number
35 int tst_checkpoint_wait(unsigned int id, unsigned int msec_timeout);
40 * @id: Checkpoint id, possitive number
44 int tst_checkpoint_wake(unsigned int id, unsigned int nr_wake,
48 void (*cleanup_fn)(void), unsigned int id,
52 void (*cleanup_fn)(void), unsigned int id,
  /external/walt/ios/WALT/
SettingsController.h 20 - (IBAction)ping:(id)sender;
21 - (IBAction)checkDrift:(id)sender;

Completed in 604 milliseconds

1 2 3 4 5 6 78 91011>>