HomeSort by relevance Sort by last modified time
    Searched refs:flow (Results 76 - 100 of 226) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.5.201505241946/
org.jacoco.core-0.7.5.201505241946.jar 
  /prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.4.201502262128/
org.jacoco.core-0.7.4.201502262128.jar 
  /prebuilts/tools/common/offline-m2/org/jacoco/org.jacoco.core/0.7.5.201505241946/
org.jacoco.core-0.7.5.201505241946.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_appengine.py 248 flow = FlowProperty() variable in class:TestFlowModel
263 flow=flow_from_clientsecrets(datafile('client_secrets.json'), 'foo',
270 self.assertEqual('foo_client_id', retrieved.flow.client_id)
274 flow = FlowNDBProperty() variable in class:TestFlowNDBModel
290 flow=flow_from_clientsecrets(datafile('client_secrets.json'), 'foo',
297 self.assertEqual('foo_client_id', retrieved.flow.client_id)
549 self.assertEqual(self.decorator.flow, None)
578 self.assertEqual(self.decorator.flow, self.decorator._tls.flow)
718 decorator.flow.redirect_uri
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
MethodAnalyzer.java 20 import org.jacoco.core.internal.flow.IFrame;
21 import org.jacoco.core.internal.flow.Instruction;
22 import org.jacoco.core.internal.flow.LabelInfo;
23 import org.jacoco.core.internal.flow.MethodProbesVisitor;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
FrameSnapshot.java 13 package org.jacoco.core.internal.flow;
ClassProbesAdapter.java 12 package org.jacoco.core.internal.flow;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
ProbeArrayStrategyFactory.java 15 import org.jacoco.core.internal.flow.ClassProbesAdapter;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 12 package org.jacoco.core.internal.flow;
  /system/bt/btif/include/
btif_pan_internal.h 83 int flow; // 1: outbound data flow on; 0: outbound data flow off member in struct:__anon72217
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 119 /* The instance where the audio data flow in */
122 /* The instance where the audio data flow out */
171 struct flow *flow; local
180 flow = ARRAY_ELEMENT(&ini->flows, flow_id);
183 plugin = flow->from;
184 index = flow->from_port;
282 struct flow *flow; local
298 flow = ARRAY_ELEMENT(&ini->flows, flow_id)
    [all...]
  /build/tools/droiddoc/templates-ndk/assets/css/
default.css     [all...]
  /external/opencv3/modules/imgproc/src/
emd.cpp 170 CvMat flow_stub, *flow = (CvMat*)flow_matrix; local
189 if( flow )
191 flow = cvGetMat( flow, &flow_stub );
193 if( flow->rows != size1 || flow->cols != size2 )
195 "The flow matrix size does not match to the signatures' sizes" );
197 if( CV_MAT_TYPE( flow->type ) != CV_32FC1 )
198 CV_Error( CV_StsUnsupportedFormat, "The flow matrix must be 32fC1" );
294 /* compute the total flow */
1146 Mat cost = _cost.getMat(), flow; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.6.201602180812/
org.jacoco.core-0.7.6.201602180812.jar 
  /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/opencv3/modules/video/include/opencv2/video/
tracking.hpp 109 @param winSize window size of optical flow algorithm. Must be not less than winSize argument of
126 /** @brief Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with
131 @param prevPts vector of 2D points for which the flow needs to be found; point coordinates must be
137 the flow for the corresponding features has been found, otherwise, it is set to 0.
139 corresponding feature, type of the error measure can be set in flags parameter; if the flow wasn't
156 optical flow equations (this matrix is called a spatial gradient matrix in @cite Bouguet00), divided
158 feature is filtered out and its flow is not processed, so it allows to remove bad points and get a
161 The function implements a sparse iterative version of the Lucas-Kanade optical flow in pyramids. See
166 - An example using the Lucas-Kanade optical flow algorithm can be found at
168 - (Python) An example using the Lucas-Kanade optical flow algorithm can be found a
    [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 51 // 2D dense optical flow algorithm from the following paper:
230 const float* flow = _flow.ptr<float>(y); local
236 float dx = flow[x*2], dy = flow[x*2+1];
339 // compute blur(G)*flow=blur(h)
343 float* flow = _flow.ptr<float>(y); local
392 flow[x*2] = (float)((g11_*h2_-g12_*h1_)*idet);
393 flow[x*2+1] = (float)((g22_*h1_-g12_*h2_)*idet);
446 // compute blur(G)*flow=blur(h)
450 float* flow = _flow.ptr<float>(y) local
1095 Mat prevFlow, flow, fimg; local
    [all...]
compat_video.cpp 261 ///////////////////////////////////// Optical Flow ////////////////////////////////
297 cv::Mat flow = cv::cvarrToMat(_flow); local
298 CV_Assert( flow.size() == prev.size() && flow.type() == CV_32FC2 );
299 cv::calcOpticalFlowFarneback( prev, next, flow, pyr_scale, levels,
  /external/opencv3/modules/shape/src/
emdL1_def.hpp 65 float flow; // initial value member in struct:cvEMDEdge
  /external/v8/test/mjsunit/regress/
regress-108296.js 34 // Create control flow for a.foo. Control flow resolution will
  /external/v8/test/webkit/
dfg-arguments-osr-exit-multiple-blocks-before-exit.js 25 "Tests aliased uses of 'arguments' that require reification of the Arguments object on OSR exit, in the case that there is some interesting control flow prior to the exit."
38 // Just some dummy control flow.
dfg-arguments-osr-exit-multiple-blocks.js 25 "Tests aliased uses of 'arguments' that require reification of the Arguments object on OSR exit, in the case that there is some interesting control flow."
39 // Just some dummy control flow.

Completed in 610 milliseconds

1 2 34 5 6 7 8 910