HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 1 - 25 of 3745) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_sysmutex_c.h 28 pthread_mutex_t id; member in struct:SDL_mutex
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
stack_profile.h 5 int id);
6 unsigned long check_stack_stop(unsigned long *base, int id);
7 unsigned long save_stack_context(char *name, int id);
8 void print_stack(int id);
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
stack_profile.h 5 int id);
6 unsigned long check_stack_stop(unsigned long *base, int id);
7 unsigned long save_stack_context(char *name, int id);
8 void print_stack(int id);
  /external/kernel-headers/original/linux/
patchkey.h 29 # define _PATCHKEY(id) (0xfd00|id)
31 # define _PATCHKEY(id) ((id<<8)|0x00fd)
37 # define _PATCHKEY(id) (0xfd00|id)
39 # define _PATCHKEY(id) ((id<<8)|0x00fd)
  /external/proguard/src/proguard/evaluation/value/
IdentifiedDoubleValue.java 24 * This DoubleValue represents a double value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedDoubleValue
35 * Creates a new double value with the given ID.
37 public IdentifiedDoubleValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedDoubleValue)object).id;
59 id;
65 return "d"+id;
    [all...]
IdentifiedFloatValue.java 24 * This FloatValue represents a float value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedFloatValue
35 * Creates a new float value with the given ID.
37 public IdentifiedFloatValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedFloatValue)object).id;
59 id;
65 return "f"+id;
    [all...]
IdentifiedIntegerValue.java 24 * This IntegerValue represents a integer value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedIntegerValue
35 * Creates a new integer value with the given ID.
37 public IdentifiedIntegerValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedIntegerValue)object).id;
59 id;
65 return "i"+id;
    [all...]
IdentifiedLongValue.java 24 * This LongValue represents a long value that is identified by a unique ID.
31 private final int id; field in class:IdentifiedLongValue
35 * Creates a new long value with the given ID.
37 public IdentifiedLongValue(ValueFactory valuefactory, int id)
40 this.id = id;
51 this.id == ((IdentifiedLongValue)object).id;
59 id;
65 return "l"+id;
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
SyncBasicHttpContext.java 49 public synchronized Object getAttribute(final String id) {
50 return super.getAttribute(id);
53 public synchronized void setAttribute(final String id, final Object obj) {
54 super.setAttribute(id, obj);
57 public synchronized Object removeAttribute(final String id) {
58 return super.removeAttribute(id);
HttpContext.java 52 Object getAttribute(String id);
54 void setAttribute(String id, Object obj);
56 Object removeAttribute(String id);
  /external/webkit/WebKit/mac/WebView/
WebDelegateImplementationCaching.h 101 id CallFormDelegate(WebView *, SEL, id, id);
102 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
103 BOOL CallFormDelegateReturningBoolean(BOOL, WebView *, SEL, id, SEL, id)
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSDictionaryExtras.h 32 - (BOOL)_webkit_boolForKey:(id)key;
33 - (int)_webkit_intForKey:(id)key;
34 - (NSString *)_webkit_stringForKey:(id)key; // Returns nil if the value is not an NSString.
35 - (NSArray *)_webkit_arrayForKey:(id)key; // Returns nil if the value is not an NSArray.
38 - (id)_webkit_objectForMIMEType:(NSString *)MIMEType;
42 - (void)_webkit_setObject:(id)object forUncopiedKey:(id)key;
43 - (void)_webkit_setInt:(int)value forKey:(id)key;
44 - (void)_webkit_setFloat:(float)value forKey:(id)key;
45 - (void)_webkit_setBool:(BOOL)value forKey:(id)key
    [all...]
  /external/v8/tools/
utils.py 47 id = platform.system()
48 if id == 'Linux':
50 elif id == 'Darwin':
52 elif id == 'Windows' or id == 'Microsoft':
56 elif id == 'FreeBSD':
58 elif id == 'OpenBSD':
60 elif id == 'SunOS':
67 id = platform.machine()
68 if id.startswith('arm')
    [all...]
  /external/tcpdump/
packetdat.awk 23 id = 1.5 + (strtSeq - 1) / packetsize
24 id -= id % 1
25 if (maxId < id)
26 maxId = id
27 if (firstSend[id] == 0) {
28 firstSend[id] = tim
29 seqNo[id] = strtSeq
31 lastSend[id] = tim
32 timesSent[id]+
    [all...]
  /external/iproute2/include/
rt_names.h 6 char* rtnl_rtprot_n2a(int id, char *buf, int len);
7 char* rtnl_rtscope_n2a(int id, char *buf, int len);
8 char* rtnl_rttable_n2a(__u32 id, char *buf, int len);
9 char* rtnl_rtrealm_n2a(int id, char *buf, int len);
10 char* rtnl_dsfield_n2a(int id, char *buf, int len);
11 int rtnl_rtprot_a2n(__u32 *id, char *arg);
12 int rtnl_rtscope_a2n(__u32 *id, char *arg);
13 int rtnl_rttable_a2n(__u32 *id, char *arg);
14 int rtnl_rtrealm_a2n(__u32 *id, char *arg);
15 int rtnl_dsfield_a2n(__u32 *id, char *arg)
    [all...]
rtm_map.h 4 char *rtnl_rtntype_n2a(int id, char *buf, int len);
5 int rtnl_rtntype_a2n(int *id, char *arg);
  /external/webkit/WebKit/mac/WebInspector/
WebInspector.h 37 - (id)initWithWebView:(WebView *)webView;
39 - (void)show:(id)sender;
40 - (void)showConsole:(id)sender;
41 - (void)close:(id)sender;
42 - (void)attach:(id)sender;
43 - (void)detach:(id)sender;
46 - (void)toggleDebuggingJavaScript:(id)sender;
47 - (void)startDebuggingJavaScript:(id)sender;
48 - (void)stopDebuggingJavaScript:(id)sender;
56 - (void)toggleProfilingJavaScript:(id)sender
    [all...]
  /dalvik/hit/src/com/android/hit/
ThreadObj.java 23 public ThreadObj(long id, int stackTrace) {
24 mId = id;
  /external/junit/src/junit/runner/
Version.java 11 public static String id() { method in class:Version
16 System.out.println(id()); method
  /external/webkit/WebCore/platform/mac/
FoundationExtras.h 36 static inline id HardRetain(id obj)
42 static inline void HardRelease(id obj)
57 static inline id HardRetainWithNSRelease(id obj)
69 static inline id HardAutorelease(CFTypeRef obj)
73 [(id)obj autorelease];
74 return (id)obj;
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ObjCPluginFunction.m 32 - (id)invokeDefaultMethodWithArguments:(NSArray *)args
  /frameworks/base/graphics/java/android/renderscript/
Dimension.java 31 Dimension(int id) {
32 mID = id;
Primitive.java 31 Primitive(int id) {
32 mID = id;
  /bionic/libc/kernel/common/linux/
patchkey.h 23 #define _PATCHKEY(id) (0xfd00|id)
25 #define _PATCHKEY(id) ((id<<8)|0x00fd)
  /dalvik/dx/src/junit/runner/
Version.java 11 public static String id() { method in class:Version

Completed in 1031 milliseconds

1 2 3 4 5 6 7 8 91011>>