Searched defs:enter (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Denter.asm2 enter 4,0 label
3 o32 enter 4,0
4 o16 enter 4,0
7 enter 4,0 label
8 a32 o32 enter 4,0
9 a32 o16 enter 4,0
H A Dgenopcode.asm103 enter 10, 12 label
/external/chromium_org/third_party/WebKit/Source/platform/
H A DScriptForbiddenScope.cpp28 void ScriptForbiddenScope::enter() function in class:blink::ScriptForbiddenScope
/external/javassist/src/main/javassist/runtime/
H A DCflow.java41 public void enter() { ((Depth)get()).inc(); } method in class:Cflow
/external/chromium_org/v8/src/
H A Dhydrogen-environment-liveness.cc139 HEnterInlined* enter = HEnterInlined::cast(instr); local
141 for (int i = 0; i < enter->return_targets()->length(); ++i) {
142 int return_id = enter->return_targets()->at(i)->block_id();
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofile.js87 ProfileTestDriver.prototype.enter = function(funcName) {
106 this.enter('lib1-f1');
107 this.enter('lib1-f2');
108 this.enter('T: F1');
109 this.enter('T: F2');
112 this.enter('lib2-f1');
113 this.enter('lib2-f1');
117 this.enter('T: F3');
118 this.enter('T: F3');
119 this.enter('
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPagePopupImpl.cpp293 void WebPagePopupImpl::setIsAcceleratedCompositingActive(bool enter) argument
295 if (m_isAcceleratedCompositingActive == enter)
298 if (!enter) {
/external/guava/guava/src/com/google/common/util/concurrent/
H A DMonitor.java50 * reentrant, so a thread may enter a monitor any number of times, and then must leave the same
51 * number of times. The <i>enter</i> and <i>leave</i> operations have the same synchronization
54 * <p>A call to any of the <i>enter</i> methods with <b>void</b> return type should always be
58 * monitor.enter();
65 * A call to any of the <i>enter</i> methods with <b>boolean</b> return type should always appear as
293 public void enter() { method in class:Monitor
309 public boolean enter(long time, TimeUnit unit) { method in class:Monitor
538 if (!enter(time, unit)) {
712 * Returns an estimate of the number of threads waiting to enter this monitor. The value is only
722 * Returns whether any threads are waiting to enter thi
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentTransaction.java104 public FragmentTransaction setCustomAnimations(int enter, int exit) { argument
105 this.lastEnterAnimation = enter;
111 public FragmentTransaction setCustomAnimations(int enter, int exit, int popEnter, int popExit) { argument
/external/chromium_org/ui/file_manager/gallery/js/
H A Dslide_mode.js250 SlideMode.prototype.enter = function(
/external/llvm/test/MC/X86/
H A Dx86-64.s383 // CHECK: enter $31438, $0
385 // CHECK: enter $31438, $1
387 // CHECK: enter $31438, $127
389 enter $0x7ace,$0 label
390 enter $0x7ace,$1 label
391 enter $0x7ace,$0x7f label
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dppb_opengles2_thunk.cc9 #include "ppapi/thunk/enter.h"
19 bool IsBoundGraphics(Enter3D* enter) { argument
20 return enter->succeeded() &&
21 static_cast<Graphics3DResource*>(enter->object())->IsBoundGraphics();
25 Enter3D enter(context_id, true);
26 if (IsBoundGraphics(&enter)) {
32 Enter3D enter(context_id, true);
33 if (IsBoundGraphics(&enter)) {
42 Enter3D enter(context_id, true);
43 if (IsBoundGraphics(&enter)) {
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.h1095 NoAllocationScope() : m_active(true) { enter(); }
1097 explicit NoAllocationScope(bool active) : m_active(active) { enter(); }
1099 NoAllocationScope(const NoAllocationScope& other) : m_active(other.m_active) { enter(); }
1105 enter();
1120 void enter() const function in class:blink::NoAllocationScope
/external/chromium_org/v8/src/x87/
H A Dassembler-x87.cc380 void Assembler::enter(const Immediate& size) { function in class:v8::internal::Assembler
/external/clang/lib/CodeGen/
H A DCGException.cpp1374 void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF, function in class:CodeGenFunction::FinallyInfo
/external/chromium_org/third_party/d3/src/
H A Dd3.js812 enter.push(enterNodes);
816 var enter = d3_selection_enter([]), update = d3_selection([]), exit = d3_selection([]);
826 update.enter = function() {
827 return enter;
925 d3.selection.enter = d3_selection_enter;
926 d3.selection.enter.prototype = d3_selection_enterPrototype;
953 function d3_selection_enterInsertBefore(enter) {
956 var group = enter[j].update, n = group.length, node;
8687 var ticks = tickValues == null ? scale1.ticks ? scale1.ticks.apply(scale1, tickArguments_) : scale1.domain() : tickValues, tickFormat = tickFormat_ == null ? scale1.tickFormat ? scale1.tickFormat.apply(scale1, tickArguments_) : d3_identity : tickFormat_, tick = g.selectAll(".tick").data(ticks, scale1), tickEnter = tick.enter().insert("g", ".domain").attr("class", "tick").style("opacity", ε), tickExit = d3.transition(tick.exit()).style("opacity", ε).remove(), tickUpdate = d3.transition(tick.order()).style("opacity", 1), tickTransform;
8688 var range = d3_scaleRange(scale1), path = g.selectAll(".domain").data([ 0 ]), pathUpdate = (path.enter()
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc16 #include "ppapi/thunk/enter.h"
24 gpu::gles2::GLES2Implementation* ToGles2Impl(Enter3D* enter) { argument
25 DCHECK(enter);
26 DCHECK(enter->succeeded());
27 return static_cast<PPB_Graphics3D_Shared*>(enter->object())->gles2_impl();
31 Enter3D enter(context_id, true);
32 if (enter.succeeded()) {
33 ToGles2Impl(&enter)->ActiveTexture(texture);
38 Enter3D enter(context_id, true);
39 if (enter
[all...]
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.cc438 void Assembler::enter(const Immediate& size) { function in class:v8::internal::Assembler
/external/chromium_org/v8/src/x64/
H A Dassembler-x64.cc874 void Assembler::enter(Immediate size) { function in class:v8::internal::Assembler
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c5516 int enter; local
5522 if (os_strncmp(cmd, "enter", 5) == 0)
5523 enter = 1;
5525 enter = 0;
5555 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 1066 milliseconds

12