Searched defs:global (Results 276 - 300 of 334) sorted by relevance

<<11121314

/external/chromium_org/v8/src/
H A Dd8.cc268 Handle<Object> global = context->Global(); local
270 global->Get(String::NewFromUtf8(isolate, "Stringify"));
272 Handle<Value> s = Handle<Function>::Cast(fun)->Call(global, 1, argv);
374 // Realm.global(i) returns the global object of realm i.
375 // (Note that properties of global objects cannot be read/written cross-realm.)
644 Handle<Object> global = utility_context->Global(); local
646 global->Get(String::NewFromUtf8(isolate, "GetCompletions"));
651 Local<Value> val = Local<Function>::Cast(fun)->Call(global, kArgc, argv);
662 Handle<Object> global local
678 Handle<Object> global = context->Global(); local
[all...]
H A Dbootstrapper.cc184 // Creates the global objects using the global and the template passed in
194 // Hooks the given global proxy into the context. If the context was created
195 // by deserialization then this will unhook the global proxy that was
199 // Similarly, we want to use the global that has been created by the templates
200 // passed through the API. The global from the snapshot is detached from the
207 // Installs the contents of the native .js files on the global objects.
731 // and the global object, but in order to create those, we need the
812 // Step 2: create or re-initialize the global proxy object.
836 // Return the global prox
1342 Handle<JSObject> global = Handle<JSObject>(native_context()->global_object()); local
[all...]
H A Ddebug.cc18 #include "src/global-handles.h"
632 // global handle as the value in the hash map.
822 Handle<GlobalObject> global = local
825 Handle<JSBuiltinsObject>(global->builtins(), isolate_);
827 isolate_, Object::SetProperty(global, key, builtin, SLOPPY), false);
860 // Clear debugger context global handle.
2384 bool Debug::IsDebugGlobal(GlobalObject* global) { argument
2385 return is_loaded() && global == debug_context()->global_object();
2394 Handle<GlobalObject> global(isolate_->global_object());
2395 JSObject::SetProperty(global,
2773 global, arraysize(argv), argv); local
[all...]
H A Dlog.cc15 #include "src/global-handles.h"
978 // (re.global?"g":"") + (re.ignorecase?"i":"") + (re.multiline?"m":"")
999 // global flag
1000 Handle<Object> global = Object::GetProperty( local
1001 isolate_, regexp, "global").ToHandleChecked();
1002 if (global->IsTrue()) {
/external/chromium_org/v8/src/ic/
H A Dic.cc237 // access checks for global proxies.
291 Handle<GlobalObject> global = Handle<GlobalObject>::cast(receiver); local
292 LookupIterator it(global, name, LookupIterator::OWN_SKIP_INTERCEPTOR);
933 // code compiled for this map, otherwise it's already cached in the global
1138 // monomorphic type. This benefits global arrays that only transition
/external/chromium_org/v8/test/cctest/
H A Dtest-strings.cc969 // Add the arrays with the short external strings in the global object.
970 v8::Handle<v8::Object> global = context->Global(); local
971 global->Set(v8_str("external_one_byte"), one_byte_external_strings);
972 global->Set(v8_str("external_non_one_byte"), non_one_byte_external_strings);
973 global->Set(v8_str("max_length"),
H A Dtest-heap.cc36 #include "src/global-handles.h"
193 Handle<GlobalObject> global(CcTest::i_isolate()->context()->global_object());
194 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, object_string);
236 Handle<GlobalObject> global(CcTest::i_isolate()->context()->global_object());
246 // Allocate a function and keep it in global object's property.
248 JSReceiver::SetProperty(global, name, function, SLOPPY).Check();
263 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, name);
268 Object::GetProperty(global, name).ToHandleChecked();
274 // Allocate another object, make it reachable from global.
276 JSReceiver::SetProperty(global, obj_nam
2015 v8::Handle<v8::Object> global = CcTest::global(); local
4276 v8::Handle<v8::Object> global = CcTest::global(); local
4323 v8::Handle<v8::ObjectTemplate> global =v8::ObjectTemplate::New(isolate); local
[all...]
/external/clang/lib/CodeGen/
H A DCGBlocks.cpp45 /// Build the given block as a global block.
122 llvm::GlobalVariable *global = local
127 return llvm::ConstantExpr::getBitCast(global, CGM.getBlockDescriptorType());
152 /// as global memory
569 // Nothing else to do if it can be global.
696 // If there is nothing to capture, we can emit this as a global block.
1898 /// emission. Places the helpers in the global cache. Returns null
/external/deqp/modules/gles31/functional/
H A Des31fOpaqueTypeIndexingTests.cpp361 std::ostringstream global, code; local
366 global << "#extension GL_EXT_gpu_shader5 : require\n";
369 global << "const highp int indexBase = 1;\n";
371 global <<
383 declareUniformIndexVars(global, indicesPrefix, numLookups);
406 spec->globalDeclarations = global.str();
722 std::ostringstream global, code; local
725 global << "#extension GL_EXT_gpu_shader5 : require\n";
728 global << "const highp int indexBase = 1;\n";
730 global <<
919 std::ostringstream global, code; local
[all...]
/external/elfutils/0.153/src/
H A Dldscript.c140 struct id_list *global);
2629 new_version (struct id_list *local, struct id_list *global) argument
2636 newp->global_names = global;
2721 symbol '%s' is declared both local and global for unnamed version")
2723 symbol '%s' is declared both local and global for version '%s'"),
2742 gettext ("default visibility set as local and global"));
2749 gettext ("default visibility set as local and global"));
H A Dnm.c215 - weak symbols are distinguished from global symbols by adding
562 get_global (Dwarf *dbg __attribute__ ((unused)), Dwarf_Global *global, argument
565 tsearch (memcpy (xmalloc (sizeof (Dwarf_Global)), global,
898 /* Undefined symbols must be global. */
/external/fio/
H A Dinit.c332 static struct thread_data *get_new_job(int global, struct thread_data *parent, argument
337 if (global) {
1274 if (!strncmp(name, "global", 6))
1305 unsigned int global; local
1380 global = !strncmp(name, "global", 6);
1385 if (!global)
1390 td = get_new_job(global, &def_thread, 0);
1399 if (!global && stonewall) {
1846 if (!strcmp(optarg, "global")) {
1878 int global = 0; local
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp1127 bool global = false; local
1130 global = true;
1136 if (global)
1230 if (global)
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_test.c66 struct wpa_driver_test_global *global; member in struct:wpa_driver_test_data
964 if (drv->global) {
965 drv->global->bss_add_used = 1;
966 os_memcpy(drv->global->req_addr, bssid, ETH_ALEN);
1174 drv->global = params->global_priv;
2010 struct wpa_driver_test_global *global = global_priv; local
2017 drv->global = global_priv;
2030 if (global->bss_add_used) {
2031 os_memcpy(drv->own_addr, global->req_addr, ETH_ALEN);
2032 global
2393 struct wpa_driver_test_global *global; local
2402 struct wpa_driver_test_global *global = priv; local
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_test.c66 struct wpa_driver_test_global *global; member in struct:wpa_driver_test_data
964 if (drv->global) {
965 drv->global->bss_add_used = 1;
966 os_memcpy(drv->global->req_addr, bssid, ETH_ALEN);
1174 drv->global = params->global_priv;
2010 struct wpa_driver_test_global *global = global_priv; local
2017 drv->global = global_priv;
2030 if (global->bss_add_used) {
2031 os_memcpy(drv->own_addr, global->req_addr, ETH_ALEN);
2032 global
2393 struct wpa_driver_test_global *global; local
2402 struct wpa_driver_test_global *global = priv; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c78 for (wpa_s = priv->global->ifaces; wpa_s; wpa_s = wpa_s->next)
138 iface = wpa_s->global->dbus;
209 iface = wpa_s->global->dbus;
248 iface = wpa_s->global->dbus;
324 iface = wpa_s->global->dbus;
391 iface = wpa_s->global->dbus;
493 iface = wpa_s->global->dbus;
550 wpa_dbus_mark_property_changed(wpa_s->global->dbus, path,
571 iface = wpa_s->global->dbus;
611 iface = wpa_s->global
1987 wpas_dbus_signal_debug_level_changed(struct wpa_global *global) argument
2001 wpas_dbus_signal_debug_timestamp_changed(struct wpa_global *global) argument
2015 wpas_dbus_signal_debug_show_keys_changed(struct wpa_global *global) argument
[all...]
H A Ddbus_new_handlers.c160 * @global: Pointer to global data from wpa_supplicant_init()
165 struct wpa_global *global, const char *path)
169 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
542 * @global: %wpa_supplicant global data structure
551 struct wpa_global *global)
610 if (wpa_supplicant_get_iface(global, ifname) != NULL) {
624 if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
652 * @global
164 get_iface_by_dbus_path( struct wpa_global *global, const char *path) argument
550 wpas_dbus_handler_create_interface(DBusMessage *message, struct wpa_global *global) argument
660 wpas_dbus_handler_remove_interface(DBusMessage *message, struct wpa_global *global) argument
692 wpas_dbus_handler_get_interface(DBusMessage *message, struct wpa_global *global) argument
798 struct wpa_global *global = user_data; local
837 struct wpa_global *global = user_data; local
863 struct wpa_global *global = user_data; local
892 struct wpa_global *global = user_data; local
[all...]
H A Ddbus_new_handlers_p2p.c390 if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL) {
415 p2p_flush(wpa_s->global->p2p);
498 !p2p_peer_known(wpa_s->global->p2p, addr))
604 !p2p_peer_known(wpa_s->global->p2p, peer_addr)) {
1024 struct p2p_data *p2p = wpa_s->global->p2p;
1210 info = p2p_get_peer_found(peer_args->wpa_s->global->p2p,
1242 info = p2p_get_peer_found(peer_args->wpa_s->global->p2p,
1269 info = p2p_get_peer_found(peer_args->wpa_s->global->p2p,
1294 info = p2p_get_peer_found(peer_args->wpa_s->global
2600 struct wpa_global *global = user_data; local
2622 struct wpa_global *global = user_data; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_test.c66 struct wpa_driver_test_global *global; member in struct:wpa_driver_test_data
964 if (drv->global) {
965 drv->global->bss_add_used = 1;
966 os_memcpy(drv->global->req_addr, bssid, ETH_ALEN);
1174 drv->global = params->global_priv;
2010 struct wpa_driver_test_global *global = global_priv; local
2017 drv->global = global_priv;
2030 if (global->bss_add_used) {
2031 os_memcpy(drv->own_addr, global->req_addr, ETH_ALEN);
2032 global
2393 struct wpa_driver_test_global *global; local
2402 struct wpa_driver_test_global *global = priv; local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.js49 var global = {
78 return (global.params.locale || "en-us").toLowerCase().replace(/_/g, '-');
771 if (global.params.locale === "ja")
790 if (global.argumentsReceived)
792 global.argumentsReceived = true;
801 for (name in global.params) {
806 global.params[name] = params[name];
815 if (global.params.suggestionValues && global.params.suggestionValues.length)
822 if (global
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c784 static void parse_global_config(struct VpxEncoderConfig *global, char **argv) { argument
789 memset(global, 0, sizeof(*global));
790 global->codec = get_vpx_encoder_by_index(0);
791 global->passes = 0;
792 global->color_type = I420;
794 global->deadline = VPX_DL_GOOD_QUALITY;
800 global->codec = get_vpx_encoder_by_name(arg.val);
801 if (!global->codec)
804 global
944 new_stream(struct VpxEncoderConfig *global, struct stream_state *prev) argument
1003 parse_stream_params(struct VpxEncoderConfig *global, struct stream_state *stream, char **argv) argument
1191 validate_stream_config(const struct stream_state *stream, const struct VpxEncoderConfig *global) argument
1266 set_default_kf_interval(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1296 show_stream_config(struct stream_state *stream, struct VpxEncoderConfig *global, struct VpxInputContext *input) argument
1352 open_output_file(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1408 setup_pass(struct stream_state *stream, struct VpxEncoderConfig *global, int pass) argument
1448 initialize_encoder(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1487 encode_frame(struct stream_state *stream, struct VpxEncoderConfig *global, struct vpx_image *img, unsigned int frames_in) argument
1597 get_cx_data(struct stream_state *stream, struct VpxEncoderConfig *global, int *got_data) argument
1960 struct VpxEncoderConfig global; local
[all...]
/external/libcxx/src/
H A Dlocale.cpp575 locale::global(const locale& loc) function in class:locale
/external/libsepol/include/sepol/policydb/
H A Dpolicydb.h384 * subtract one) into the global policydb->scope array. */
407 * statements and declarations. The root block (the global policy)
515 avrule_block_t *global; member in struct:policydb
559 bitmaps. Someday the 0 bit may be used for global permissive */
/external/libvpx/libvpx/
H A Dvpxenc.c654 static void parse_global_config(struct VpxEncoderConfig *global, char **argv) { argument
659 memset(global, 0, sizeof(*global));
660 global->codec = get_vpx_encoder_by_index(0);
661 global->passes = 0;
662 global->use_i420 = 1;
664 global->deadline = VPX_DL_GOOD_QUALITY;
670 global->codec = get_vpx_encoder_by_name(arg.val);
671 if (!global->codec)
674 global
808 new_stream(struct VpxEncoderConfig *global, struct stream_state *prev) argument
863 parse_stream_params(struct VpxEncoderConfig *global, struct stream_state *stream, char **argv) argument
1019 validate_stream_config(const struct stream_state *stream, const struct VpxEncoderConfig *global) argument
1075 set_default_kf_interval(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1088 show_stream_config(struct stream_state *stream, struct VpxEncoderConfig *global, struct VpxInputContext *input) argument
1138 open_output_file(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1196 setup_pass(struct stream_state *stream, struct VpxEncoderConfig *global, int pass) argument
1220 initialize_encoder(struct stream_state *stream, struct VpxEncoderConfig *global) argument
1256 encode_frame(struct stream_state *stream, struct VpxEncoderConfig *global, struct vpx_image *img, unsigned int frames_in) argument
1314 get_cx_data(struct stream_state *stream, struct VpxEncoderConfig *global, int *got_data) argument
1520 struct VpxEncoderConfig global; local
[all...]
/external/qemu/android/
H A Dconsole.c95 ControlGlobal global; member in struct:ControlClientRec_
136 control_global_add_redir( ControlGlobal global, argument
144 if (global->num_redirs >= global->max_redirs)
146 int old_max = global->max_redirs;
149 Redir new_redirs = realloc( global->redirs, new_max*sizeof(global->redirs[0]) );
153 global->redirs = new_redirs;
154 global->max_redirs = new_max;
157 redir = &global
168 control_global_del_redir( ControlGlobal global, int host_port, int host_udp ) argument
216 ControlGlobal global = client->global; local
582 ControlGlobal global = _global; local
608 control_global_init( ControlGlobal global, int control_port ) argument
819 ControlGlobal global = client->global; local
878 redir_find( ControlGlobal global, int port, int isudp ) argument
[all...]

Completed in 2501 milliseconds

<<11121314