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

1 2 3

  /external/icu4c/samples/layout/
pflow.h 23 void pf_close(pf_flow *flow);
25 le_int32 pf_getAscent(pf_flow *flow);
26 le_int32 pf_getLineHeight(pf_flow *flow);
27 le_int32 pf_getLineCount(pf_flow *flow);
28 void pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height);
29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
pflow.c 110 pf_object *flow; local
123 flow = NEW_ARRAY(pf_object, 1);
125 flow->fParagraphLayout = NULL;
126 flow->fParagraphCount = 0;
127 flow->fParagraphMax = PARA_GROW;
128 flow->fParagraphGrow = PARA_GROW;
129 flow->fLineCount = 0;
130 flow->fLinesMax = LINE_GROW;
131 flow->fLinesGrow = LINE_GROW;
132 flow->fLines = NULL
    [all...]
  /external/chromium/chrome/browser/sync/
sync_setup_wizard.cc 23 SyncSetupFlow* flow = flow_container_->get_flow(); local
24 if (flow) {
25 // A setup flow is in progress and dialog is currently showing.
26 flow->Advance(advance_state);
30 // No flow is in progress, and we have never escorted the user all the
31 // way through the wizard flow.
35 // No flow in progress, but we've finished the wizard flow once before.
58 SyncSetupFlow* flow = flow_container_->get_flow(); local
59 if (flow) {
66 SyncSetupFlow* flow = flow_container_->get_flow(); local
    [all...]
sync_setup_flow_handler.h 29 virtual void SetFlow(SyncSetupFlow* flow) = 0;
sync_setup_wizard_unittest.cc 149 // The flow deletes itself here. Don't use reset().
154 SyncSetupFlow* flow() { return flow_.get(); } function in class:TestBrowserWindowForWizardTest
158 // mock all that out, so we need to take ownership so the flow doesn't leak.
222 EXPECT_FALSE(test_window_->flow());
227 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
228 EXPECT_EQ(SyncSetupWizard::DONE, test_window_->flow()->end_state_);
229 EXPECT_EQ(json_start_args, test_window_->flow()->dialog_start_args_);
233 test_window_->flow()->flow_handler_->HandleSubmitAuth(&credentials);
235 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
249 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_)
    [all...]
sync_setup_flow.h 45 // Runs a flow from |start| to |end|, and does the work of actually showing
47 // flow (e.g it is emptied on dialog close).
139 // The handler needed for the entire flow. Weak reference.
159 void set_flow(SyncSetupFlow* flow) {
160 DCHECK(!flow_ || !flow);
161 flow_ = flow;
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_message_handler.h 18 explicit CloudPrintSetupMessageHandler(CloudPrintSetupFlow* flow)
19 : flow_(flow) {}
  /external/chromium/chrome/browser/remoting/
setup_flow_register_step.cc 30 flow()->web_ui()->CallJavascriptFunction("showSettingUp");
33 flow()->profile()->GetRequestContext()));
34 request_->AddHost(flow()->context()->host_info,
35 flow()->context()->remoting_token,
40 flow()->profile()->GetPrefs()->SetBoolean(
setup_flow_start_host_step.cc 47 flow()->web_ui()->CallJavascriptFunction("showSettingUp");
51 flow()->profile());
56 process_control_->SetRemotingHostCredentials(flow()->context()->login,
57 flow()->context()->talk_token);
setup_flow_get_status_step.cc 37 flow()->context()->host_info = host_info;
44 flow()->web_ui()->CallJavascriptFunction("showSettingUp");
48 flow()->profile());
setup_flow.cc 43 void SetupFlowStepBase::Start(SetupFlow* flow, DoneCallback* done_callback) {
45 flow_ = flow;
56 WebUI* web_ui = flow()->web_ui();
87 flow()->web_ui()->CallJavascriptFunction("showError");
113 flow()->web_ui()->CallJavascriptFunction("showSetupDone");
151 SetupFlow *flow = new SetupFlow(json_args, profile, new SetupFlowLoginStep());
152 b->BrowserShowHtmlDialog(flow, NULL);
153 return flow;
setup_flow_login_step.cc 72 flow()->context()->login = user;
77 flow()->profile()->GetRequestContext()));
94 flow()->context()->remoting_token = credentials.token;
111 flow()->context()->talk_token = auth_token;
134 WebUI* web_ui = flow()->web_ui();
setup_flow.h 34 virtual void Start(SetupFlow* flow, DoneCallback* done_callback) = 0;
59 virtual void Start(SetupFlow* flow, DoneCallback* done_callback);
63 SetupFlow* flow() { return flow_; } function in class:remoting::SetupFlowStepBase
112 // The last step in the setup flow. This step never finishes, user is
134 // different setup flow steps.
150 // Each page in the setup flow may send message to the current
  /external/qemu/distrib/sdl-1.2.12/src/audio/nas/
SDL_nasaudio.h 45 AuFlowID flow; member in struct:SDL_PrivateAudioData
SDL_nasaudio.c 128 AuWriteElement(this->hidden->aud, this->hidden->flow, 0, this->hidden->mixlen, this->hidden->mixbuf, AuFalse, NULL);
257 if ((this->hidden->dev == AuNone) || (!(this->hidden->flow = AuCreateFlow(this->hidden->aud, NULL)))) {
280 AuSetElements(this->hidden->aud, this->hidden->flow, AuTrue, 2, elms, NULL);
281 AuRegisterEventHandler(this->hidden->aud, AuEventHandlerIDMask, 0, this->hidden->flow,
284 AuStartFlow(this->hidden->aud, this->hidden->flow, NULL);
  /external/tcpdump/
print-ip6.c 60 u_int flow; local
80 flow = EXTRACT_32BITS(&ip6->ip6_flow);
84 if (flow & 0x0f000000)
85 (void)printf("pri 0x%02x, ", (flow & 0x0f000000) >> 24);
86 if (flow & 0x00ffffff)
87 (void)printf("flowlabel 0x%06x, ", flow & 0x00ffffff);
90 if (flow & 0x0ff00000)
91 (void)printf("class 0x%02x, ", (flow & 0x0ff00000) >> 20);
92 if (flow & 0x000fffff)
93 (void)printf("flowlabel 0x%05x, ", flow & 0x000fffff)
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
sync_setup_handler.h 35 virtual void SetFlow(SyncSetupFlow* flow) {
36 flow_ = flow;
  /external/iproute2/doc/
api-ip6-flowlabels.tex 2 \def\TITLE{IPv6 Flow Labels}
5 \Large\bf IPv6 Flow Labels in Linux-2.2.
22 Every IPv6 packet carries 28 bits of flow information. RFC2460 splits
24 prefer this term) and 20 bits of flow label. Currently there exist
25 no well-defined API to manage IPv6 flow information. In this document
42 \item To assign flow labels to packets sent by user.
44 \item To get flow labels of received packets. I do not know
46 want to use flow labels to distinguish sub-flows.
48 \item To allocate flow labels in the way, compliant to RFC2460. Namely:
52 Flow labels must be uniformly distributed (pseudo-)random numbers
    [all...]
  /external/opencv/cvaux/src/
enmin.cpp 82 // weight - weight of the edge ( maximum flow via the edge )
83 // flow - current flow via the edge
90 int flow;
167 // function makeGraph creates initial graph to find maximum flow in it
238 ( ( Edge* )newEdgePtr ) -> flow = 0;
253 ( ( Edge* )tempEdgePtr ) -> flow = 0;
274 ( ( Edge* )tempEdgePtr ) -> flow = 0;
281 ( ( Edge* )newEdgePtr ) -> flow = 0;
293 ( ( Edge* )newEdgePtr ) -> flow = 0
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 23 def tidy( here_doc, flow = false )
25 if flow
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 45 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/v8/test/mjsunit/regress/
regress-108296.js 34 // Create control flow for a.foo. Control flow resolution will

Completed in 361 milliseconds

1 2 3