HomeSort by relevance Sort by last modified time
    Searched refs:returns (Results 276 - 300 of 826) sorted by null

<<11121314151617181920>>

  /external/libyuv/files/tools_libyuv/autoroller/unittests/
roll_deps_test.py 53 returns = kwargs.pop('_returns', None)
54 self.expectations.append((args, kwargs, returns))
  /external/skqp/experimental/canvaskit/
helper.js 21 // returns [r, g, b, a] from a color
  /external/syzkaller/pkg/hash/
hash.go 35 // Truncate64 returns first 64 bits of the hash as int64.
  /external/syzkaller/pkg/osutil/
fileutil.go 43 // WriteTempFile writes data to a temp file and returns its name.
osutil.go 22 // RunCmd runs "bin args..." in dir with timeout and returns its output.
30 // Returns combined output. If the command fails, err includes output.
99 // IsExist returns true if the file name exists.
118 // FilesExist returns true if all files exist in dir.
206 // Note: the file already exists when the function returns.
  /external/syzkaller/pkg/symbolizer/
nm.go 19 // ReadSymbols returns list of text symbols in the binary bin.
  /external/syzkaller/vendor/cloud.google.com/go/internal/version/
version.go 31 // Go returns the Go runtime version. The returned string
  /external/syzkaller/vendor/google.golang.org/api/gensupport/
params.go 17 // Get returns the first value for the given key, or "".
  /external/syzkaller/vendor/google.golang.org/grpc/credentials/
credentials_util_go17.go 28 // cloneTLSConfig returns a shallow clone of the exported
credentials_util_go18.go 53 // cloneTLSConfig returns a shallow clone of the exported
credentials_util_pre_go17.go 27 // cloneTLSConfig returns a shallow clone of the exported
  /external/syzkaller/vendor/google.golang.org/grpc/status/
go16.go 28 // FromContextError converts a context error into a Status. It returns a
go17.go 30 // FromContextError converts a context error into a Status. It returns a
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
go16.go 48 // contextFromRequest returns a background context.
go17.go 49 // contextFromRequest returns a context from the HTTP Request.
  /external/tensorflow/tensorflow/contrib/training/python/training/
training.py 50 (c) returns the value of the loss. tf.contrib.training.create_train_op creates
276 Returns:
304 Returns:
320 """Returns a `transform_grads_fn` function for gradient clipping."""
334 Returns:
380 """Creates an `Operation` that evaluates the gradients and returns the loss.
396 updates, such as gradient clipping or multipliers, and returns the updated
406 Returns:
407 A `Tensor` that when evaluated, computes the gradients and returns the total
516 Returns
    [all...]
  /external/tensorflow/tensorflow/python/saved_model/
load_v1_in_v2.py 79 def load_graph(self, returns, meta_graph_def):
85 returns[0] = saver
  /build/blueprint/pathtools/
glob.go 31 // Glob returns the list of files and directories that match the given pattern
182 // Similar to filepath.Split, but returns "." if dir is empty and trims trailing slash if dir is
183 // not "/". Returns ".", "" if path is "."
244 // Match returns true if name matches pattern using the same rules as filepath.Match, but supporting
285 // matchPrefix returns true if the beginning of name matches pattern using the same rules as
359 // IsGlob returns true if the pattern contains any glob characters (*, ?, or [).
364 // HasGlob returns true if any string in the list contains any glob characters (*, ?, or [).
384 // Returns a list of file paths, and an error.
463 // MatchEscape returns its inputs with characters that would be interpreted by
  /external/boringssl/src/ssl/test/runner/
prf.go 318 // clientSum returns the contents of the verify_data member of a client's
337 // serverSum returns the contents of the verify_data member of a server's
356 // hashForClientCertificateSSL3 returns the hash to be signed for client
366 // hashForChannelID returns the hash to be signed for TLS Channel
386 // zeroSecretTLS13 returns the default all zeros secret for TLS 1.3, used when a
424 // appendContextHashes returns the concatenation of the handshake hash and the
461 // certificateVerifyMessage returns the input to be signed for CertificateVerify
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
FileDescriptor.cs 41 /// IDescriptor is implemented such that the File property returns this descriptor,
170 /// Implementation of IDescriptor.FullName - just returns the same as Name.
175 /// Implementation of IDescriptor.File - just returns this descriptor.
189 /// <returns>The type's descriptor, or null if not found.</returns>
319 /// Returns a <see cref="System.String" /> that represents this instance.
321 /// <returns>
323 /// </returns>
330 /// Returns the file descriptor for descriptor.proto.
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiManagerFacade.java     [all...]
  /external/syzkaller/vendor/golang.org/x/text/unicode/norm/
composition.go 42 // insert returns a ssState value to indicate whether a rune represented by p
170 // It returns the number of bytes written to buf.
182 // It returns false if the buffer is not large enough to hold the rune.
217 // It returns a non-zero error code if the rune was not inserted.
293 // runeAt returns the rune at position n. It is used for Hangul and recomposition.
300 // bytesAt returns the UTF-8 encoding of the rune at position n.
392 // decomposeHangul writes the decomposed Hangul to buf and returns the number
  /build/soong/android/
rule_builder.go 36 // NewRuleBuilder returns a newly created RuleBuilder.
51 // String returns the RuleBuilderInstalls in the form used by $(call copy-many-files) in Make, a space separated
87 // Command returns a new RuleBuilderCommand for the rule. The commands will be ordered in the rule by when they were
118 // Inputs returns the list of paths that were passed to the RuleBuilderCommand methods that take input paths, such
155 // Outputs returns the list of paths that were passed to the RuleBuilderCommand methods that take output paths, such
174 // DepFiles returns the list of paths that were passed to the RuleBuilderCommand methods that take depfile paths, such
188 // Installs returns the list of tuples passed to Install.
204 // Tools returns the list of paths that were passed to the RuleBuilderCommand.Tool method.
220 // Commands returns a slice containing a the built command line for each call to RuleBuilder.Command.
494 // String returns the command line
    [all...]
  /external/javapoet/src/main/java/com/squareup/javapoet/
MethodSpec.java 181 * Returns a new method spec builder that overrides {@code method}.
219 methodBuilder.returns(TypeName.get(method.getReturnType()));
231 * Returns a new method spec builder that overrides {@code method} as a member of {@code
250 builder.returns(TypeName.get(resolvedReturnType));
360 public Builder returns(TypeName returnType) { method in class:MethodSpec.Builder
366 public Builder returns(Type returnType) { method in class:MethodSpec.Builder
367 return returns(TypeName.get(returnType));
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/
options.go 26 // filter applies all filters and returns the option that remains.
107 // FilterPath returns a new Option where opt is only evaluated if filter f
108 // returns true for the current Path in the value tree.
140 // FilterValues returns a new Option where opt is only evaluated if filter f,
141 // which is a function of the form "func(T, T) bool", returns true for the
143 // assignable to T, then this filter implicitly returns false.
212 // Transformer returns an Option that applies a transformation function that
274 // Comparer returns an Option that determines whether two values are equal
323 // AllowUnexported returns an Option that forcibly allows operations on
421 // getFuncName returns a short function name from the pointer
    [all...]

Completed in 881 milliseconds

<<11121314151617181920>>