/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/ |
util.js | 9 * @param {string} id The id of the element. 10 * @return {HTMLElement} The html element for the given element id. 12 function $(id) { 13 return document.getElementById(id);
|
/external/v8/tools/ |
utils.py | 47 id = platform.system() 48 if id == 'Linux': 50 elif id == 'Darwin': 52 elif id.find('CYGWIN') >= 0: 54 elif id == 'Windows' or id == 'Microsoft': 58 elif id == 'FreeBSD': 60 elif id == 'OpenBSD': 62 elif id == 'SunOS': 72 id = platform.machine( [all...] |
/external/clang/test/Sema/ |
builtin_objc_msgSend.c | 7 } *id; typedef in typeref:struct:objc_object 11 extern id objc_msgSend(id self, SEL op, ...);
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDelegateImplementationCaching.h | 106 id CallFormDelegate(WebView *, SEL, id, id); 107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5); 108 BOOL CallFormDelegateReturningBoolean(BOOL, WebView *, SEL, id, SEL, id) [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
syncable_id.cc | 16 const Id kNullId; // Currently == root. 18 ostream& operator<<(ostream& out, const Id& id) { 19 out << id.s_; 23 StringValue* Id::ToValue() const { 27 string Id::GetServerId() const { 35 Id Id::CreateFromServerId(const string& server_id) { 36 Id id; local 45 Id id; local 56 Id id = *this; local 63 Id id; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/thread/pthread/ |
SDL_sysmutex_c.h | 28 pthread_mutex_t id; member in struct:SDL_mutex
|
/external/clang/test/PCH/Inputs/ |
typo.h | 4 + (id)alloc;
|
/external/clang/test/SemaCXX/ |
cxx0x-constexpr-const.cpp | 4 constexpr int id(int x) { return x; } function 8 int (*idp)(int) = id;
|
/external/clang/test/SemaObjC/Inputs/ |
arc-system-header.h | 1 static inline void *test0(id x) { 5 static inline void **test1(__strong id* x) { 14 id *field; 19 id *field1; 20 __strong id *field2; 25 id field; 41 @property id *prop; 50 static inline void *test8(id ptr) {
|
/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/Source/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/chromium/chrome/browser/ |
command_updater.h | 26 // Perform the action associated with the command with the specified ID. 27 virtual void ExecuteCommand(int id) = 0; 38 // Returns true if the specified command ID is supported. 39 bool SupportsCommand(int id) const; 41 // Returns true if the specified command ID is enabled. The command ID must be 43 bool IsCommandEnabled(int id) const; 45 // Performs the action associated with this command ID. 48 void ExecuteCommand(int id); 51 // the state of a particular command ID is modified [all...] |
/external/chromium/chrome/browser/sessions/ |
session_id.h | 25 // Returns the underlying id. 26 id_type id() const { return id_; } function in class:SessionID 33 explicit SessionID(id_type id) : id_(id) {} 35 // Resets the id. This is used when restoring a session 36 void set_id(id_type id) { id_ = id; }
|
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
NotificationBuilderTest.java | 60 for (int id: new int[] { 61 R.id.clear_1, 62 R.id.clear_2, 63 R.id.clear_3, 64 R.id.clear_4, 65 R.id.clear_5, 66 R.id.clear_6, 67 R.id.clear_7, 68 R.id.clear_8, 69 R.id.clear_9 [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...] |
/external/webkit/Source/WebCore/platform/mac/ |
FoundationExtras.h | 34 static inline id HardAutorelease(CFTypeRef object) 38 [(id)object autorelease]; 39 return (id)object;
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
WebInspector.h | 39 - (id)initWithWebView:(WebView *)webView; 41 - (void)show:(id)sender; 42 - (void)showConsole:(id)sender; 43 - (void)close:(id)sender; 44 - (void)attach:(id)sender; 45 - (void)detach:(id)sender; 48 - (void)toggleDebuggingJavaScript:(id)sender; 49 - (void)startDebuggingJavaScript:(id)sender; 50 - (void)stopDebuggingJavaScript:(id)sender; 58 - (void)toggleProfilingJavaScript:(id)sender [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
adb.h | 9 #define ADB_FLUSH(id) (0x01 | ((id) << 4)) 10 #define ADB_WRITEREG(id, reg) (0x08 | (reg) | ((id) << 4)) 11 #define ADB_READREG(id, reg) (0x0C | (reg) | ((id) << 4)) 39 * data[2] = id, rep[0] = orig addr, rep[1] = handler_id
|