HomeSort by relevance Sort by last modified time
    Searched refs:Bind (Results 1 - 25 of 43) sorted by null

1 2

  /external/v8/src/mips/
jump-target-mips.cc 73 void BreakTarget::Bind() {
78 void BreakTarget::Bind(Result* arg) {
  /external/v8/src/
jump-target.h 120 // Bind a jump target. If there is no current frame at the binding
123 virtual void Bind();
124 virtual void Bind(Result* arg);
154 // Implementations of Jump, Branch, and Bind with all arguments and
217 // Bind a break target. If there is no current frame at the binding
220 virtual void Bind();
221 virtual void Bind(Result* arg);
jump-target.cc 308 fall_through.Bind();
322 void JumpTarget::Bind() {
327 void JumpTarget::Bind(Result* arg) {
381 fall_through.Bind();
regexp-macro-assembler-tracer.h 44 virtual void Bind(Label* label);
regexp-macro-assembler-irregexp.h 55 virtual void Bind(Label* label);
platform-posix.cc 207 bool Bind(const int port);
230 bool POSIXSocket::Bind(const int port) {
240 int status = bind(socket_,
regexp-macro-assembler-tracer.cc 50 void RegExpMacroAssemblerTracer::Bind(Label* label) {
51 PrintF("label[%08x]: (Bind)\n", label, label);
52 assembler_->Bind(label);
regexp-macro-assembler.h 70 virtual void Bind(Label* label) = 0;
regexp-macro-assembler-irregexp.cc 61 void RegExpMacroAssemblerIrregexp::Bind(Label* l) {
433 Bind(&backtrack_);
jsregexp.cc 771 macro_assembler_->Bind(&fail);
    [all...]
  /external/webkit/WebKit/wx/bindings/python/samples/
simple.py 51 self.Bind(wx.EVT_BUTTON, self.OnOpenButton, btn)
55 self.Bind(wx.EVT_BUTTON, self.OnPrevPageButton, btn)
59 self.Bind(wx.EVT_BUTTON, self.OnNextPageButton, btn)
63 self.Bind(wx.EVT_BUTTON, self.OnStopButton, btn)
67 self.Bind(wx.EVT_BUTTON, self.OnRefreshPageButton, btn)
77 self.Bind(wx.EVT_COMBOBOX, self.OnLocationSelect, self.location)
78 self.location.Bind(wx.EVT_KEY_UP, self.OnLocationKey)
79 self.location.Bind(wx.EVT_CHAR, self.IgnoreReturn)
88 self.webview.Bind(wx.webview.EVT_WEBVIEW_LOAD, self.OnStateChanged)
  /external/v8/test/cctest/
test-regexp.cc 744 m.Bind(&fail);
800 m.Bind(&fail);
854 m.Bind(&fail);
858 m.Bind(&backtrack);
893 m.Bind(&nomatch);
899 m.Bind(&missing_match);
939 m.Bind(&nomatch);
945 m.Bind(&missing_match);
986 m.Bind(&fail);
988 m.Bind(&newline)
    [all...]
test-sockets.cc 34 Socket* server_; // Server socket used for bind/accept.
43 // Create the server socket and bind it to the requested port.
47 ok = server_->Bind(port_);
  /external/v8/src/arm/
jump-target-arm.cc 159 __ bind(&entry_label_);
186 void BreakTarget::Bind() {
196 // on the fall through. This is so we can bind the return target
210 void BreakTarget::Bind(Result* arg) {
220 // on the fall through. This is so we can bind the return target
codegen-arm.cc 204 verified_true.Bind();
281 // Bind all the bailout labels to the beginning of the function.
284 __ bind(bailouts->at(i)->label());
342 function_return_.Bind();
352 masm_->bind(&check_exit_codesize);
539 materialize_true.Bind();
542 loaded.Bind();
556 true_target.Bind();
567 false_target.Bind();
572 loaded.Bind();
    [all...]
regexp-macro-assembler-arm.h 51 virtual void Bind(Label* label);
  /external/sonivox/jet_tools/JetCreator/
JetAudition.py 79 self.segList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnQueueSegment)
80 self.segList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSegListClick)
126 self.Bind(wx.EVT_BUTTON, self.OnQueueSegmentViaBut, id=self.btnQueue.GetId())
127 self.Bind(wx.EVT_BUTTON, self.OnCancelNQueue, id=self.btnCancelNQueue.GetId())
128 self.Bind(wx.EVT_BUTTON, self.OnStop, id=self.btnStop.GetId())
129 self.Bind(wx.EVT_BUTTON, self.OnQueueCancelCurrent, id=self.btnQueueCancelCurrent.GetId())
130 self.Bind(wx.EVT_BUTTON, self.OnPause, id=self.btnPause.GetId())
131 self.Bind(wx.EVT_BUTTON, self.OnMuteAll, id=self.btnMuteAll.GetId())
132 self.Bind(wx.EVT_BUTTON, self.OnUnMuteAll, id=self.btnUnMuteAll.GetId())
133 self.Bind(wx.EVT_BUTTON, self.OnMuteOrg, id=self.btnMuteOrg.GetId())
    [all...]
JetCtrls.py 251 self.btn.Bind(wx.EVT_BUTTON, self.OnBrowse, self.btn)
318 self.btn.Bind(wx.EVT_BUTTON, self.OnBrowse, self.btn)
416 self.spin.Bind(wx.EVT_SPIN_UP, self.OnSpinUp, self.spin)
417 self.spin.Bind(wx.EVT_SPIN_DOWN, self.OnSpinDown, self.spin)
419 self.time[0].Bind(wx.EVT_SET_FOCUS, self.OnFocusMeasure, self.time[0] )
420 self.time[1].Bind(wx.EVT_SET_FOCUS, self.OnFocusBeat, self.time[1] )
421 self.time[2].Bind(wx.EVT_SET_FOCUS, self.OnFocusTick, self.time[2] )
423 self.time[0].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[0] )
424 self.time[1].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[1] )
425 self.time[2].Bind(wx.EVT_KILL_FOCUS, self.OnChangeVal, self.time[2] )
    [all...]
JetCreator.py 127 self.eventList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnEventListClick)
128 self.segList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSegListClick)
129 self.segList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnSegmentUpdate)
130 self.eventList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnEventUpdate)
151 self.Bind(wx.EVT_BUTTON, self.OnSegmentAdd, id=self.btnAddSeg.GetId())
152 self.Bind(wx.EVT_BUTTON, self.OnSegmentUpdate, id=self.btnRevSeg.GetId())
153 self.Bind(wx.EVT_BUTTON, self.OnSegmentDelete, id=self.btnDelSeg.GetId())
154 self.Bind(wx.EVT_BUTTON, self.OnSegmentsMove, id=self.btnMoveSeg.GetId())
156 self.Bind(wx.EVT_BUTTON, self.OnSelectAll, id=self.btnQueueAll.GetId())
157 self.Bind(wx.EVT_BUTTON, self.OnDeselectAll, id=self.btnDequeueAll.GetId())
    [all...]
JetSegGraph.py 111 self.Bind(wx.EVT_PAINT, self.OnPaint)
112 self.Bind(wx.EVT_SIZE, self.OnSize)
113 self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
  /external/v8/src/x64/
codegen-x64.cc 411 // Bind all the bailout labels to the beginning of the function.
414 __ bind(bailouts->at(i)->label());
470 function_return_.Bind(&undefined);
480 function_return_.Bind(&return_value);
523 masm_->bind(&check_exit_codesize);
783 __ bind(&adapted);
799 __ bind(&loop);
805 __ bind(&invoke);
821 __ bind(&build_args);
834 __ bind(&slow)
    [all...]
jump-target-x64.cc 120 __ bind(&original_fall_through);
192 __ bind(&entry_label_);
201 // virtual frame before the bind. Afterward, it should not.
216 __ bind(&entry_label_);
230 __ bind(&merge_labels_[0]);
233 // virtual frame before the bind. Afterward, it should not.
240 __ bind(&entry_label_);
299 __ bind(&merge_labels_[i]);
307 // processing it later, and then bind its entry label.
309 __ bind(&merge_labels_[j])
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 50 virtual void Bind(Label* label);
jump-target-ia32.cc 120 __ bind(&original_fall_through);
192 __ bind(&entry_label_);
201 // virtual frame before the bind. Afterward, it should not.
216 __ bind(&entry_label_);
230 __ bind(&merge_labels_[0]);
233 // virtual frame before the bind. Afterward, it should not.
240 __ bind(&entry_label_);
299 __ bind(&merge_labels_[i]);
307 // processing it later, and then bind its entry label.
309 __ bind(&merge_labels_[j])
    [all...]
codegen-ia32.cc 259 // Bind all the bailout labels to the beginning of the function.
262 __ bind(bailouts->at(i)->label());
318 function_return_.Bind(&undefined);
328 function_return_.Bind(&return_value);
502 true_target.Bind();
504 loaded.Bind();
514 false_target.Bind();
516 loaded.Bind();
529 true_target.Bind();
536 false_target.Bind();
    [all...]

Completed in 314 milliseconds

1 2