HomeSort by relevance Sort by last modified time
    Searched refs:global (Results 251 - 275 of 774) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.h 48 // V8WindowShell represents all the per-global object state for a Frame that
68 v8::Persistent<v8::Context> createNewContext(v8::Handle<v8::Object> global, int extensionGroup);
103 // The JavaScript wrapper for the document object is cached on the global
105 // for the current document on the global object. ClearDocumentWrapperCache
106 // deletes the document wrapper from the global object.
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-wps.py 38 global bus
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
Dot_p_opt.s 30 .global Dot_product12_asm
scale_sig_opt.s 28 .global Scale_sig_opt
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
armVCM4P10_TransformResidual4x4_s.S 13 .global armVCM4P10_TransformResidual4x4
omxVCM4P10_DeblockLuma_I.S 13 .global omxVCM4P10_DeblockLuma_I
omxVCM4P10_TransformDequantChromaDCFromPair_s.S 13 .global omxVCM4P10_TransformDequantChromaDCFromPair
armVCM4P10_Average_4x_Align_unsafe_s.S 13 .global armVCM4P10_Average_4x4_Align0_unsafe
45 .global armVCM4P10_Average_4x4_Align2_unsafe
89 .global armVCM4P10_Average_4x4_Align3_unsafe
  /frameworks/base/opengl/libagl/
iterators.S 23 .global iterators0032
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_nl80211.h 84 struct nl80211_global *global; member in struct:wpa_driver_nl80211_data
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_locale.h 179 // global locale objects:
181 static locale _STLP_CALL global(const locale&);
183 static _Locale_impl* _STLP_CALL global(const locale&);
267 // global locale objects:
268 static locale _STLP_CALL global(const locale& __loc) { function in class:locale
269 return _Locale::global(__loc);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_locale.h 179 // global locale objects:
181 static locale _STLP_CALL global(const locale&);
183 static _Locale_impl* _STLP_CALL global(const locale&);
267 // global locale objects:
268 static locale _STLP_CALL global(const locale& __loc) { function in class:locale
269 return _Locale::global(__loc);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_locale.h 179 // global locale objects:
181 static locale _STLP_CALL global(const locale&);
183 static _Locale_impl* _STLP_CALL global(const locale&);
267 // global locale objects:
268 static locale _STLP_CALL global(const locale& __loc) { function in class:locale
269 return _Locale::global(__loc);
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_locale.h 181 // global locale objects:
183 static locale _STLP_CALL global(const locale&);
185 static _Locale_impl* _STLP_CALL global(const locale&);
269 // global locale objects:
270 static locale _STLP_CALL global(const locale& __loc) { function in class:locale
271 return _Locale::global(__loc);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 198 public SuppressProposal(String check, boolean global) {
201 mGlobal = global;
263 public ClearMarkersProposal(IResource resource, boolean global) {
265 mGlobal = global;
  /external/libvpx/vp8/encoder/x86/
encodeopt.asm 15 global sym(vp8_block_error_xmm) label
63 global sym(vp8_block_error_mmx) label
129 global sym(vp8_mbblock_error_mmx_impl) label
206 global sym(vp8_mbblock_error_xmm_impl) label
274 global sym(vp8_mbuverror_mmx_impl) label
331 global sym(vp8_mbuverror_xmm_impl) label
  /external/openssl/crypto/perlasm/
x86masm.pl 42 # prepend global references with optional underscore
94 my $global=($func !~ /^_/);
97 &::LABEL($func,$global?"$begin":"$nmdecor$func");
100 if ($global) { $func.=" PUBLIC\n${begin}::\n"; }
  /external/v8/src/
contexts.cc 38 GlobalObject* object = global();
49 // Fast case: the global object for this context has been set. In
50 // that case, the global object has a direct pointer to the global
52 if (global()->IsGlobalObject()) {
53 return global()->global_context();
56 // During bootstrapping, the global object might not be set and we
57 // have to search the context chain to find the global context.
95 if (context->IsGlobalContext()) PrintF(" (global context)");
213 // before the global context and check that there are no contex
    [all...]
bootstrapper.cc 36 #include "global-handles.h"
171 // Creates the global objects using the global and the template passed in
181 // Hooks the given global proxy into the context. If the context was created
182 // by deserialization then this will unhook the global proxy that was
186 // Similarly, we want to use the inner global that has been created by the
187 // templates passed through the API. The inner global from the snapshot is
193 // Installs the contents of the native .js files on the global objects.
302 env->set_global_proxy(env->global());
303 env->global()->set_global_receiver(env->global())
310 Handle<JSGlobalProxy> global = Handle<JSGlobalProxy>::cast(global_object); local
825 Handle<JSObject> global = Handle<JSObject>(global_context()->global()); local
    [all...]
  /external/valgrind/main/coregrind/m_dispatch/
dispatch-ppc32-linux.S 250 .global VG_(run_innerloop__dispatch_unprofiled)
304 .global VG_(run_innerloop__dispatch_profiled)
573 .global VG_(run_a_noredir_translation)
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 136 // Fetch the global object for the frame.
141 v8::Local<v8::Object> global = context->Global();
142 // Get the open property of the global object.
143 v8::Local<v8::Value> function = global->Get(v8::String::New("open"));
157 v8::Local<v8::Value> result = proxy->callFunction(v8::Local<v8::Function>::Cast(function), global, args.Length(), params);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common.c 320 struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global)
327 priv->global = global;
  /external/v8/test/cctest/
test-heap-profiler.cc 376 CHECK_EQ(i::StrLength("(global property);1,B;2,C;2"),
378 CHECK(strstr(retainers_of_a, "(global property);1") != NULL);
381 CHECK_EQ("(global property);2", printer.GetRetainers("B"));
382 CHECK_EQ("(global property);1", printer.GetRetainers("C"));
466 // Paint all nodes reachable from global object.
471 // Verify, that JS global object of env2 has '..2' properties.
501 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
503 GetProperty(global, v8::HeapGraphEdge::kShortcut, "x");
532 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
533 for (int i = 0, count = global->GetChildrenCount(); i < count; ++i)
559 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
620 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
635 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>(); local
868 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 549 \global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
553 \global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
557 \global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}
558 \global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
562 \global\evenfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
566 \global\oddfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
570 \global\evenfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}
571 \global\oddfootline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
582 \global\evenheadline={\hfil} \global\evenfootline={\hfil
    [all...]
  /external/grub/docs/
texinfo.tex 636 \global\let\tiepenalty = \@M
706 \global\dimen1 = \prevdepth
    [all...]

Completed in 598 milliseconds

<<11121314151617181920>>