HomeSort by relevance Sort by last modified time
    Searched full:that (Results 1951 - 1975 of 189771) sorted by null

<<71727374757677787980>>

  /external/selinux/libselinux/man/man5/
default_contexts.5 6 The default contexts configuration file \fIdefault_contexts\fR contains entries that allow SELinux-aware login applications such as
9 SELinux-aware login applications generally use one or more of the following libselinux functions that read these files from the active policy path:
45 This consists of a \fIrole\fB:\fItype\fR[\fB:\fIrange\fR] entry that represents the login process context that are defined in the policy.
49 This consists of one or more \fIrole\fB:\fItype\fR[\fB:\fIrange\fR] entries that represent the user login process context defined in the policy.
  /external/skia/src/core/
SkForceCPlusPlusLinking.cpp 4 * Use of this source code is governed by a BSD-style license that can be
9 // so that GYP detects that libskia is a C++ library (implicitly depending on
13 // link-time failures for simple binaries that don't themselves depend on the
18 // that make us depend on it anyway: a handler when we call a for a pure
SkLineClipper.h 4 * Use of this source code is governed by a BSD-style license that can be
20 /* Clip the line pts[0]...pts[1] against clip, ignoring segments that
22 right, turn those into vertical line segments that are aligned to the
25 Return the number of line segments that result, and store the end-points
35 resulting segment, return true and set dst[] to that segment. If not,
SkScopeExit.h 4 * Use of this source code is governed by a BSD-style license that can be
18 SkScopeExit(SkScopeExit&& that) : fFn(std::move(that.fFn)) {}
26 SkScopeExit& operator=(SkScopeExit&& that) {
27 fFn = std::move(that.fFn);
  /external/skia/src/gpu/
GrQuad.h 4 * Use of this source code is governed by a BSD-style license that can be
23 GrQuad(const GrQuad& that) {
24 *this = that;
44 const GrQuad& operator=(const GrQuad& that) {
45 memcpy(fPoints, that.fPoints, sizeof(SkPoint) * kNumPoints);
  /external/skia/src/gpu/ops/
GrDrawOp.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Base class for GrOps that draw. These ops can draw into an op list's GrRenderTarget.
31 /** Indices that the op will enable MSAA or mixed samples rendering. */
33 /** Indices that the op reads and/or writes the stencil buffer */
43 * it owns to "pending io" status so that resource allocation can be more optimal. Additionally,
  /external/skia/tests/
BitmapGetColorTest.cpp 4 * Use of this source code is governed by a BSD-style license that can be
19 // todo: add some tests that involve alpha, so we exercise the
30 // specify an area that doesn't touch (0,0) and may extend beyond the
31 // bitmap bounds (to test that we catch that in eraseArea
  /external/skqp/src/core/
SkForceCPlusPlusLinking.cpp 4 * Use of this source code is governed by a BSD-style license that can be
9 // so that GYP detects that libskia is a C++ library (implicitly depending on
13 // link-time failures for simple binaries that don't themselves depend on the
18 // that make us depend on it anyway: a handler when we call a for a pure
SkLineClipper.h 4 * Use of this source code is governed by a BSD-style license that can be
20 /* Clip the line pts[0]...pts[1] against clip, ignoring segments that
22 right, turn those into vertical line segments that are aligned to the
25 Return the number of line segments that result, and store the end-points
35 resulting segment, return true and set dst[] to that segment. If not,
SkScopeExit.h 4 * Use of this source code is governed by a BSD-style license that can be
18 SkScopeExit(SkScopeExit&& that) : fFn(std::move(that.fFn)) {}
26 SkScopeExit& operator=(SkScopeExit&& that) {
27 fFn = std::move(that.fFn);
  /external/skqp/src/gpu/
GrQuad.h 4 * Use of this source code is governed by a BSD-style license that can be
23 GrQuad(const GrQuad& that) {
24 *this = that;
44 const GrQuad& operator=(const GrQuad& that) {
45 memcpy(fPoints, that.fPoints, sizeof(SkPoint) * kNumPoints);
  /external/skqp/src/gpu/ops/
GrDrawOp.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Base class for GrOps that draw. These ops can draw into an op list's GrRenderTarget.
31 /** Indices that the op will enable MSAA or mixed samples rendering. */
33 /** Indices that the op reads and/or writes the stencil buffer */
43 * it owns to "pending io" status so that resource allocation can be more optimal. Additionally,
  /external/skqp/tests/
BitmapGetColorTest.cpp 4 * Use of this source code is governed by a BSD-style license that can be
19 // todo: add some tests that involve alpha, so we exercise the
30 // specify an area that doesn't touch (0,0) and may extend beyond the
31 // bitmap bounds (to test that we catch that in eraseArea
  /external/tensorflow/tensorflow/contrib/layers/
README.md 5 Functions that produce variable initializer functions with signature:
13 Functions that produce layer operations and associated weight & bias variables. Signatures will vary for different functions, but they will often take many of
32 Functions that add optimization ops given `loss` and `global_step` tensors.
36 Functions that produce weight regularization functions with signature
44 Functions that add summary ops to the standard `tf.GraphKeys.SUMMARIES`
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_Requantize.pbtxt 6 The float value that the minimum quantized input value represents.
12 The float value that the maximum quantized input value represents.
18 The float value that the minimum quantized output value represents.
24 The float value that the maximum quantized output value represents.
55 [input_min, input_max] are scalar floats that specify the range for the float
  /external/testng/src/main/java/org/testng/
IMethodInterceptor.java 6 * This class is used to alter the list of test methods that TestNG is about to run.
11 * Only methods that have no dependents and that don't depend on any other test methods will
13 * that represents the list of test methods they want run. TestNG will run these methods in the
24 * The {@link ITestContext} is passed in the <tt>intercept</tt> method so that implementers can set user values
  /external/v8/tools/clang/pass_to_move/tests/
test-expected.cc 2 // Use of this source code is governed by a BSD-style license that can be
33 // Pass that returns rvalue reference should use std::move.
37 // Pass that doesn't return a rvalue reference should not be rewritten.
45 // Don't rewrite things that return rvalue references that aren't named Pass.
test-original.cc 2 // Use of this source code is governed by a BSD-style license that can be
33 // Pass that returns rvalue reference should use std::move.
37 // Pass that doesn't return a rvalue reference should not be rewritten.
45 // Don't rewrite things that return rvalue references that aren't named Pass.
  /external/valgrind/none/tests/s390x/
op_exception.c 1 /* zArchitecture specifies that operation exception(illegal opcode) is
2 suppressing. That means that the program check old psw will point to
4 There are some programs out there that use this mechanism to detect available
6 This patch checks, that valgrind makes forard progress. */
  /external/vboot_reference/firmware/2lib/include/
2fw_hash_tags.h 2 * Use of this source code is governed by a BSD-style license that can be
15 * Note that not every firmware image will contain every tag.
17 * TODO: These are the ones that vboot specifically knows about given the
19 * to contain an arbitrary list of tags and their hashes, so that we can hash
35 * that it wants to track.
  /external/webrtc/webrtc/sound/
sounddevicelocator.h 5 * that can be found in the LICENSE file in the root of the source
22 // SoundSystemInterface must subclass this to add any id information that they
42 explicit SoundDeviceLocator(const SoundDeviceLocator &that)
43 : name_(that.name_), device_name_(that.device_name_) {}
  /frameworks/base/core/java/android/content/
EntityIterator.java 22 * A specialization of {@link Iterator} that allows iterating over a collection of
25 * method to indicate that the iterator is no longer needed and that its resources
35 * Indicates that this iterator is no longer needed and that any associated resources
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
NameAndLastName.java 43 NameAndLastName that = (NameAndLastName) o;
45 if (mName != null ? !mName.equals(that.mName) : that.mName != null) return false;
46 return mLastName != null ? mLastName.equals(that.mLastName) : that.mLastName == null;
  /libcore/metrictests/memory/host/src/libcore/heapmetrics/
Reachability.java 22 * An enumeration of the different ways that an object could be reachable.
26 /** Objects that are rooted. */
29 /** Objects that are strongly reachable but not rooted. */
32 /** Objects that are weakly reachable (only through soft/weak/phantom/finalizer references). */
35 /** Objects that are unreachable. */
  /libcore/ojluni/src/main/java/sun/nio/ch/
Cancellable.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
29 * Implemented by asynchronous channels that require notification when an I/O
35 * Invoked to notify channel that cancel has been invoked while holding

Completed in 1431 milliseconds

<<71727374757677787980>>