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

1 2

  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML4.java 93 return addElement(tag, flags, HTML.Element.Flow.NONE);
97 private static HTML.Element addElement(String tag, String flags, HTML.Element.Flow flow) {
98 return addElement(tag, flags, flow, HTML.Element.NO_TYPE);
102 private static HTML.Element addTableElement(String tag, String flags, HTML.Element.Flow flow) {
103 return addElement(tag, flags, flow, HTML.Element.TABLE_TYPE);
107 private static HTML.Element addElement(String tag, String flags, HTML.Element.Flow flow,
122 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow);
    [all...]
HTML.java 46 public enum Flow {
57 private final Flow flow; field in class:HTML.Element
62 * NOTE: Even though breaksFlow and flow are named similarly, they're not quite the same thing.
63 * Flow refers to whether the element is inherently character or block level. Breaks flow
66 * @throws IllegalArgumentException if name or flow is null.
69 boolean optionalEndTag, boolean breaksFlow, Flow flow) {
71 Preconditions.checkNotNull(flow, "Element flow can not be null")
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
arc-dis.h 36 enum Flow
84 enum Flow flow; member in struct:arcDisState
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 54 static const char *const FlowBlockName = "Flow";
119 /// @brief Transforms the control flow graph on one single entry/exit region
122 /// After the transform all "If"/"Then"/"Else" style control flow looks like
136 /// | / 3 = "Flow" blocks, newly inserted flow blocks, rejoins the flow
138 /// 5 5 = "End" block, also rejoins the control flow
141 /// Control flow is expressed as a branch where the true exit goes into the
155 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
156 /// 3 3 = "Flow" block, with back edge to entry bloc
    [all...]
  /external/boringssl/src/ssl/test/runner/
recordingconn.go 37 type flow struct { type
49 flows []flow
61 r.flows = append(r.flows, flow{flowType, message, buf})
91 for i, flow := range r.flows {
92 switch flow.flowType {
94 fmt.Fprintf(w, ">>> Flow %d (%s to %s)\n", i+1, r.peer, r.local)
96 fmt.Fprintf(w, ">>> Flow %d (%s to %s)\n", i+1, r.local, r.peer)
98 fmt.Fprintf(w, ">>> Flow %d %q\n", i+1, flow.message)
101 if flow.data != nil
    [all...]
  /external/kotlinc/lib/
annotations-13.0.jar 
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
autoregressive.py 96 [1]: "Masked Autoregressive Flow for Density Estimation."
  /external/webrtc/webrtc/base/
multipart_unittest.cc 96 Flow(&multipart, buffer, sizeof(buffer), &str_stream));
stream.h 686 // Flow attempts to move bytes from source to sink via buffer of size
695 StreamResult Flow(StreamInterface* source,
  /prebuilts/gradle-plugin/org/jetbrains/annotations/13.0/
annotations-13.0.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
annotations-13.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/annotations/13.0/
annotations-13.0.jar 
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
masked_autoregressive.py 48 The affine autoregressive flow [1] provides a relatively simple framework for
62 In the `tf.distributions` framework, a "normalizing flow" is implemented as a
132 # A common choice for a normalizing flow is to use a Gaussian for the base
145 # [1] also describes an "Inverse Autoregressive Flow", e.g.,
171 [1]: "Masked Autoregressive Flow for Density Estimation."
real_nvp.py 40 Real NVP models a normalizing flow on a `D`-dimensional distribution via a
58 Recall that the MAF bijector [2] implements a normalizing flow via an
92 # A common choice for a normalizing flow is to use a Gaussian for the base
112 [2]: "Masked Autoregressive Flow for Density Estimation."
  /prebuilts/tools/common/intellij-core/171.2455.10/
annotations.jar 
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_test.go 139 // TLS always starts with a client to server flow.
142 for i, flow := range r.flows {
147 n, err := fmt.Fprintf(w, ">>> Flow %d (%s to %s)\n", i+1, source, dest)
153 n, err = dumper.Write(flow)
174 // of a new flow.
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_test.go 139 // TLS always starts with a client to server flow.
142 for i, flow := range r.flows {
147 n, err := fmt.Fprintf(w, ">>> Flow %d (%s to %s)\n", i+1, source, dest)
153 n, err = dumper.Write(flow)
174 // of a new flow.
  /external/error_prone/javac/
javac-9+181-r4173-1.jar 
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9+181-r4173-1/
javac-9+181-r4173-1.jar 
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r3297-4/
javac-9-dev-r3297-4.jar 
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/
javac-9-dev-r4023-3.jar 
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
YAMLTraits.h 59 // The optional flow flag will cause generated YAML to use a flow mapping
61 // static const bool flow = true;
81 // The optional flow flag will cause generated YAML to use a flow mapping
83 // static const bool flow = true;
104 /// of bit values and the YAML representation is a flow sequence of
200 // a flow sequence (e.g. [a,b,c]).
201 // static const bool flow = true;
209 // static const bool flow;
412 struct Fallback { bool flow; }; member in struct:llvm::yaml::has_FlowTraits::Fallback
1558 template <> struct IsFlowSequenceBase<true> { static const bool flow = true; }; member in struct:llvm::yaml::IsFlowSequenceBase
1596 static const bool flow = true; member in struct:llvm::yaml::SequenceElementTraits
1601 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
1604 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
1607 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
YAMLTraits.h 59 // The optional flow flag will cause generated YAML to use a flow mapping
61 // static const bool flow = true;
81 // The optional flow flag will cause generated YAML to use a flow mapping
83 // static const bool flow = true;
104 /// of bit values and the YAML representation is a flow sequence of
200 // a flow sequence (e.g. [a,b,c]).
201 // static const bool flow = true;
209 // static const bool flow;
412 struct Fallback { bool flow; }; member in struct:llvm::yaml::has_FlowTraits::Fallback
1558 template <> struct IsFlowSequenceBase<true> { static const bool flow = true; }; member in struct:llvm::yaml::IsFlowSequenceBase
1596 static const bool flow = true; member in struct:llvm::yaml::SequenceElementTraits
1601 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
1604 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
1607 static const bool flow = false; member in struct:llvm::yaml::SequenceElementTraits
    [all...]

Completed in 1224 milliseconds

1 2