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

<<11121314151617181920>>

  /external/autotest/client/site_tests/security_Minijail0/src/
common.sh 11 uid=$(id -ru)
16 euid=$(id -u)
21 gid=$(id -rg)
27 egid=$(id -g)
  /external/clang/test/ARCMT/whitelisted/
header1.h 5 +(id)i1;
  /external/clang/test/Index/
getcursor-preamble.h 7 -(id)foo;
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 1 typedef struct { int id; } FILE; member in struct:__anon16361
  /external/clang/test/Modules/Inputs/crash-recovery/usr/include/
stdio.h 1 typedef struct { int id; } FILE; member in struct:__anon16363
  /external/clang/test/SemaObjC/
foreach.m 7 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/guice/extensions/grapher/src/com/google/inject/grapher/
InterfaceNode.java 27 public InterfaceNode(NodeId id, Object source) {
28 super(id, source);
31 @Override public Node copy(NodeId id) {
32 return new InterfaceNode(id, getSource());
40 return "InterfaceNode{id=" + getId() + " source=" + getSource() + "}";
  /external/libcxx/test/std/localization/locales/locale.global.templates/
has_facet.pass.cpp 20 static std::locale::id id; member in struct:my_facet
23 std::locale::id my_facet::id; member in class:my_facet
  /external/testng/src/test/java/test/thread/
BaseSequentialSample.java 7 protected void addId(String method, long id) {
8 ppp(method + " ID:" + id);
9 getMap().put(id, id);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
HandleGenerator.h 33 uint32_t id = mNextUniqueId++; local
34 while (id > std::numeric_limits<T>::max()) {
35 id -= std::numeric_limits<T>::max();
37 return static_cast<T>(id);
  /frameworks/base/core/java/android/content/
ContentUris.java 29 * <code>content://<em>authority</em>/<em>path</em>/<em>id</em></code>
59 * <em>id</em>
63 * preceding path part. Most providers recognize content URIs that contain an id part
65 * often expects the id part to be a particular value for that column.
75 * <p>This supports a common convention for content URIs where an ID is
90 * Appends the given ID to the end of the path.
92 * @param builder to append the ID to
93 * @param id to append
97 public static Uri.Builder appendId(Uri.Builder builder, long id) {
98 return builder.appendEncodedPath(String.valueOf(id));
    [all...]
  /frameworks/base/media/java/android/media/
AudioHandle.java 28 AudioHandle(int id) {
29 mId = id;
32 int id() { method in class:AudioHandle
42 return mId == ah.id();
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestResources.java 23 public String getString(int id) throws NotFoundException {
24 switch (id) {
36 public String getString(int id, Object... formatArgs) throws NotFoundException {
37 return String.format(getString(id), formatArgs);
  /frameworks/base/services/core/java/com/android/server/pm/
KeySetHandle.java 25 protected KeySetHandle(long id) {
26 mId = id;
33 protected KeySetHandle(long id, int refCount) {
34 mId = id;
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/helpers/
PlayerInfo.java 23 public int id; field in class:PlayerInfo
  /packages/services/Car/car-lib/src/android/car/app/menu/
RootMenu.java 21 * Stores the root id for the menu. The RootMenu is the main menu.
32 * @param id Root id
34 public RootMenu(String id) {
35 this(id, null);
41 * @param id Root id
44 public RootMenu(String id, Bundle extras) {
45 mRootId = id;
50 * Get the root id
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.global.templates/
has_facet.pass.cpp 20 static std::locale::id id; member in struct:my_facet
23 std::locale::id my_facet::id; member in class:my_facet
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/MppLib/
MppLib.c 53 #define GET_PCD_PTR(id,num) PcdGetPtr(PcdChip##id##MppSel##num)
54 #define GET_PIN_COUNT(id) PcdGet32(PcdChip##id##MppPinCount)
55 #define GET_BASE(id) PcdGet64(PcdChip##id##MppBaseAddress)
56 #define GET_REV_FLAG(id) PcdGetBool(PcdChip##id##MppReverseFlag)
59 #define GetMppPcd(id) { \
60 PinCount[id] = GET_PIN_COUNT(id); \
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLREarlyExitException.h 34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
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/ANTLR.framework/Versions/A/Headers/
ANTLREarlyExitException.h 34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
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/ANTLR.framework/Versions/Current/Headers/
ANTLREarlyExitException.h 34 + (ANTLREarlyExitException *) exceptionWithStream:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber;
35 - (id) initWithStream:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;

Completed in 600 milliseconds

<<11121314151617181920>>