Searched refs:global (Results 1 - 25 of 747) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-10-20-GlobalDebug.c3 int global; variable
10 // CHECK: metadata !{i32 {{.*}}, i32 0, null, metadata !"global", metadata !"global", metadata !"", metadata !{{.*}}, i32 3, metadata !{{.*}}, i32 0, i32 1, i32* @global, null} ; [ DW_TAG_variable ]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfglobext2.asm0 global foo
1 global foo label
H A Delfvisibility.asm3 [global ghidden:hidden]
4 [global ginternal:internal]
5 [global gprotected:protected]
6 [global gtoomany:hidden internal]
H A Delftypesize.asm7 global a label
14 global b label
19 global d label
24 global e label
31 global g label
H A Delfequabs.asm0 global label
6 global absval label
1 global label label
H A Delfabssect.asm10 ;global teststruc
11 global teststruc.testlabel label
12 global teststruc_size label
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1150.js28 // Test that Object.keys is working correctly on the global object.
31 var global = (function () { return this; }) ();
32 var keys = Object.keys(global);
H A Dregress-1360.js31 var global = this;
33 function non_strict() { assertEquals(global, this); }
H A Dregress-267.js30 var global = (function(){ return this; })();
35 assertEquals(global, obj, "Should be the global object.");
H A Dregress-737588.js29 goog.global = this;
31 return goog.global.eval(script);
/external/v8/test/mjsunit/regress/
H A Dregress-1150.js28 // Test that Object.keys is working correctly on the global object.
31 var global = (function () { return this; }) ();
32 var keys = Object.keys(global);
H A Dregress-1360.js31 var global = this;
33 function non_strict() { assertEquals(global, this); }
H A Dregress-267.js30 var global = (function(){ return this; })();
35 assertEquals(global, obj, "Should be the global object.");
H A Dregress-737588.js29 goog.global = this;
31 return goog.global.eval(script);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdfabs.asm6 global label label
7 global label2 label
/external/iproute2/etc/iproute2/
H A Drt_scopes4 0 global
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwifi_display.h13 int wifi_display_init(struct wpa_global *global);
14 void wifi_display_deinit(struct wpa_global *global);
15 void wifi_display_enable(struct wpa_global *global, int enabled);
16 int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
17 int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
H A Dmain_none.c19 struct wpa_global *global; local
24 global = wpa_supplicant_init(&params);
25 if (global == NULL)
31 if (wpa_supplicant_add_iface(global, &iface) == NULL)
35 exitcode = wpa_supplicant_run(global);
37 wpa_supplicant_deinit(global);
H A Dwifi_display.c19 int wifi_display_init(struct wpa_global *global) argument
21 global->wifi_display = 1;
26 void wifi_display_deinit(struct wpa_global *global) argument
30 wpabuf_free(global->wfd_subelem[i]);
31 global->wfd_subelem[i] = NULL;
36 static int wifi_display_update_wfd_ie(struct wpa_global *global) argument
43 if (!global->wifi_display) {
46 p2p_set_wfd_ie_beacon(global->p2p, NULL);
47 p2p_set_wfd_ie_probe_req(global->p2p, NULL);
48 p2p_set_wfd_ie_probe_resp(global
182 wifi_display_enable(struct wpa_global *global, int enabled) argument
191 wifi_display_subelem_set(struct wpa_global *global, char *cmd) argument
235 wifi_display_subelem_get(struct wpa_global *global, char *cmd, char *buf, size_t buflen) argument
[all...]
/external/chromium_org/v8/test/webkit/
H A Ddfg-rshift-by-zero-eliminate-valuetoint32.js28 global = 32;
32 Ha = global >> 0;
34 global = Ha & 2;
/external/chromium_org/v8/test/mjsunit/
H A Dglobal-ic.js32 function LoadFromGlobal(global) { return global.x; }
33 function StoreToGlobal(global, value) { global.x = value; }
34 function CallOnGlobal(global) { return global.f(); }
/external/v8/test/mjsunit/
H A Dglobal-ic.js32 function LoadFromGlobal(global) { return global.x; }
33 function StoreToGlobal(global, value) { global.x = value; }
34 function CallOnGlobal(global) { return global.f(); }
/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DLocalAndGlobalData.java20 * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
30 * global-scoped HDF that can be read from the template renderer. Part of the backwards
34 * @param global application global HDF data that should be read but not written to from the
37 public LocalAndGlobalData(Data local, Data global) { argument
38 this(local, global, false);
43 * global-scoped HDF that can be read from the template renderer. Part of the backwards
44 * compatibility with JNI Clearsilver and its globalHdf support. We wrap the global HD
56 LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) argument
61 prepareGlobal(Data global, boolean allowGlobalDataModification) argument
[all...]
/external/compiler-rt/BlocksRuntime/tests/
H A Dglobalexpression.c12 int global; variable
14 void (^gblock)(int) = ^(int x){ global = x; };
18 if (global != 1) {
19 printf("%s: *** did not set global to 1\n", argv[0]);
24 printf("global copy %p not a no-op %p\n", (void *)gblockcopy, (void *)gblock);
29 if (global != 3) {
30 printf("%s: *** did not set global to 3\n", argv[0]);
35 if (global != 5) {
36 printf("%s: *** did not set global to 5\n", argv[0]);

Completed in 612 milliseconds

1234567891011>>