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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/android/system/
OsConstants.java 110 public static final int AF_INET = placeholder();
111 public static final int AF_INET6 = placeholder();
112 /** @hide */ public static final int AF_NETLINK = placeholder();
113 /** @hide */ public static final int AF_PACKET = placeholder();
114 public static final int AF_UNIX = placeholder();
115 public static final int AF_UNSPEC = placeholder();
116 public static final int AI_ADDRCONFIG = placeholder();
117 public static final int AI_ALL = placeholder();
118 public static final int AI_CANONNAME = placeholder();
119 public static final int AI_NUMERICHOST = placeholder();
924 private static int placeholder() { return 0; } method in class:OsConstants
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/features/python/
conditioning_utils_test.py 34 array_ops.placeholder(dtypes.float32, tensor_shape),
35 array_ops.placeholder(dtypes.float32, conditioning_shape))
40 array_ops.placeholder(dtypes.float32, (4, 1)),
41 array_ops.placeholder(dtypes.float32, (5, 1)))
45 array_ops.placeholder(dtypes.float32, (5, None)),
46 array_ops.placeholder(dtypes.float32, (5, 1)))
50 array_ops.placeholder(dtypes.float32, (5, 2)),
51 array_ops.placeholder(dtypes.float32, (5)))
55 array_ops.placeholder(dtypes.float32, (5, 4, 1)),
56 array_ops.placeholder(dtypes.float32, (5, 10))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 46 public static class Placeholder {
51 Placeholder(String title, Uri uri, long timestamp) {
63 * Adds an empty placeholder.
66 * @param size the size of the placeholder in pixels.
67 * @param timestamp the timestamp of the placeholder (used for ordering
69 * @return A session instance representing the new placeholder.
71 public Placeholder insertEmptyPlaceholder(String title, Size size, long timestamp) {
73 return new Placeholder(title, uri, timestamp);
77 * Inserts a new placeholder into the filmstrip.
80 * @param placeholder the initial thumbnail to show for this placeholde
    [all...]
  /external/tensorflow/tensorflow/contrib/metrics/python/metrics/
classification_test.py 31 pred = array_ops.placeholder(dtypes.int32, shape=[None])
32 labels = array_ops.placeholder(dtypes.int32, shape=[None])
41 pred = array_ops.placeholder(dtypes.bool, shape=[None])
42 labels = array_ops.placeholder(dtypes.bool, shape=[None])
51 pred = array_ops.placeholder(dtypes.int64, shape=[None])
52 labels = array_ops.placeholder(dtypes.int64, shape=[None])
61 pred = array_ops.placeholder(dtypes.string, shape=[None])
62 labels = array_ops.placeholder(dtypes.string, shape=[None])
72 pred = array_ops.placeholder(dtypes.int32, shape=[None])
73 labels = array_ops.placeholder(dtypes.int64, shape=[None]
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ImageViewTarget.java 44 * @param placeholder {@inheritDoc}
47 public void onLoadStarted(Drawable placeholder) {
48 view.setImageDrawable(placeholder);
66 * @param placeholder {@inheritDoc}
69 public void onLoadCleared(Drawable placeholder) {
70 view.setImageDrawable(placeholder);
BaseTarget.java 49 public void onLoadCleared(Drawable placeholder) {
57 public void onLoadStarted(Drawable placeholder) {
Target.java 44 * @param placeholder The placeholder drawable to optionally show, or null.
46 void onLoadStarted(Drawable placeholder);
72 * @param placeholder The placeholder drawable to optionally show, or null.
74 void onLoadCleared(Drawable placeholder);
  /external/tensorflow/tensorflow/contrib/ffmpeg/
decode_audio_op_test.py 49 `samples_per_second`. Useful for providing a placeholder.
51 provided, will be empty. Useful when providing a placeholder for
137 placeholder = array_ops.placeholder(dtypes.int32)
139 samples_per_second_tensor=placeholder,
140 feed_dict={placeholder: 20000})
143 placeholder = array_ops.placeholder(dtypes.float32)
146 samples_per_second_tensor=placeholder,
147 feed_dict={placeholder: 20000.0}
    [all...]
encode_audio_op_test.py 77 placeholder = array_ops.placeholder(dtypes.int32)
81 samples_per_second=placeholder,
84 audio_op, file_format='wav', samples_per_second=placeholder)
85 encoded_contents = encode_op.eval(feed_dict={placeholder: 10000})
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
tensor_signature_test.py 38 placeholder_a = array_ops.placeholder(
40 placeholder_b = array_ops.placeholder(
42 placeholder_c = array_ops.placeholder(
44 placeholder_d = array_ops.placeholder(
87 placeholder_a = array_ops.placeholder(
112 placeholder = tensor_signature.create_placeholders_from_signatures(
114 self.assertTrue(isinstance(placeholder, sparse_tensor.SparseTensor))
115 self.assertEqual(placeholder.values.dtype, tensor.values.dtype)
118 examples = array_ops.placeholder(
120 placeholder_a = array_ops.placeholder(
    [all...]
  /frameworks/base/tools/aapt/
pseudolocalize.h 13 virtual String16 placeholder(const String16& text) = 0;
20 String16 placeholder(const String16& text) { return text; } function in class:PseudoMethodNone
28 String16 placeholder(const String16& text);
37 String16 placeholder(const String16& text);
  /external/tensorflow/tensorflow/compiler/tests/
slice_ops_test.py 32 i = array_ops.placeholder(dtype, shape=[10])
45 i = array_ops.placeholder(dtype, shape=[3, 3, 10])
67 i = array_ops.placeholder(dtype, shape=[3, 3, 10])
68 begin = array_ops.placeholder(dtypes.int32, shape=[3])
91 i = array_ops.placeholder(dtype, shape=[3, 3, 10])
92 begin = array_ops.placeholder(dtypes.int32, shape=[3])
117 i = array_ops.placeholder(dtype, shape=[10])
130 i = array_ops.placeholder(dtype, shape=[10])
143 i = array_ops.placeholder(dtype, shape=[3, 3, 10])
164 i = array_ops.placeholder(dtype, shape=[3, 4, 10]
    [all...]
spacetobatch_op_test.py 77 placeholder = array_ops.placeholder(dtype)
79 placeholder, paddings, block_size=block_size)
80 self.assertAllEqual(sess.run(x_tf, {placeholder: inputs}), outputs)
83 placeholder, paddings, block_size=block_size)
84 self.assertAllEqual(sess.run(x_tf, {placeholder: outputs}), inputs)
159 placeholder = array_ops.placeholder(dtype)
161 x_tf = array_ops.space_to_batch_nd(placeholder, block_shape, paddings)
162 self.assertAllEqual(sess.run(x_tf, {placeholder: inputs}), outputs
    [all...]
matrix_band_part_test.py 46 placeholder = array_ops.placeholder(dtype)
49 placeholder,
52 feed_dict = {placeholder: batch_mat}
  /external/tensorflow/tensorflow/python/profiler/
tfprof_logger_test.py 30 a = array_ops.placeholder(dtypes.int32, [2, 2])
31 b = array_ops.placeholder(dtypes.int32, [2, 2])
  /external/tensorflow/tensorflow/python/kernel_tests/
map_stage_op_test.py 35 x = array_ops.placeholder(dtypes.float32)
36 pi = array_ops.placeholder(dtypes.int64)
37 gi = array_ops.placeholder(dtypes.int64)
56 x = array_ops.placeholder(dtypes.float32)
57 pi = array_ops.placeholder(dtypes.int64)
58 gi = array_ops.placeholder(dtypes.int64)
78 x = array_ops.placeholder(dtypes.float32)
79 pi = array_ops.placeholder(dtypes.int64)
80 gi = array_ops.placeholder(dtypes.int64)
107 x = array_ops.placeholder(dtypes.float32
    [all...]
reduce_join_op_test.py 262 placeholder = array_ops.placeholder(dtypes.string, name="placeholder")
263 reduced = string_ops.reduce_join(placeholder, reduction_indices=0)
264 output_array = reduced.eval(feed_dict={placeholder.name: input_array})
275 placeholder = array_ops.placeholder(dtypes.int32, name="placeholder")
277 input_array, reduction_indices=placeholder)
278 output_array_dim_zero = reduced.eval(feed_dict={placeholder.name: [0]}
    [all...]
batchtospace_op_test.py 118 array_ops.placeholder(dtypes.float32),
119 array_ops.placeholder(dtypes.int32),
145 input_placeholder = array_ops.placeholder(dtypes.float32)
146 block_shape_placeholder = array_ops.placeholder(
148 paddings_placeholder = array_ops.placeholder(dtypes.int32)
188 array_ops.placeholder(dtypes.float32),
189 array_ops.placeholder(
191 array_ops.placeholder(dtypes.int32))
195 array_ops.placeholder(
197 array_ops.placeholder(
    [all...]
  /external/tensorflow/tensorflow/tools/benchmark/
benchmark_model_test.cc 45 auto placeholder = local
46 ops::Placeholder(root, DT_FLOAT, ops::Placeholder::Shape(input.shape));
47 input.name = placeholder.node()->name();
48 auto m = ops::MatMul(root, placeholder, constant_tensor);
  /prebuilts/go/darwin-x86/src/net/
cgo_unix_test.go 20 t.Errorf("cgoLookupIP must not be a placeholder")
33 t.Errorf("cgoLookupIP must not be a placeholder")
45 t.Errorf("cgoLookupPort must not be a placeholder")
58 t.Errorf("cgoLookupPort must not be a placeholder")
70 t.Errorf("cgoLookupPTR must not be a placeholder")
83 t.Errorf("cgoLookupPTR must not be a placeholder")
  /prebuilts/go/linux-x86/src/net/
cgo_unix_test.go 20 t.Errorf("cgoLookupIP must not be a placeholder")
33 t.Errorf("cgoLookupIP must not be a placeholder")
45 t.Errorf("cgoLookupPort must not be a placeholder")
58 t.Errorf("cgoLookupPort must not be a placeholder")
70 t.Errorf("cgoLookupPTR must not be a placeholder")
83 t.Errorf("cgoLookupPTR must not be a placeholder")
  /external/tensorflow/tensorflow/python/ops/
special_math_ops_test.py 52 ph = array_ops.placeholder(dtypes.float32)
66 x_ph = array_ops.placeholder(dtypes.float32, [3, 2, 3, None])
83 ph = array_ops.placeholder(dtypes.float32)
235 array_ops.placeholder(dtypes.float32, shape=(3, 4)),
236 array_ops.placeholder(dtypes.float32, shape=(3, 4)),
242 m0 = array_ops.placeholder(dtypes.int32, shape=(1, None))
243 m1 = array_ops.placeholder(dtypes.int32, shape=(None, 1))
258 array_ops.placeholder(dtypes.float32, shape=shape)
288 m0 = array_ops.placeholder(dtypes.int32, shape=(1, None))
289 m1 = array_ops.placeholder(dtypes.int32, shape=(None, 1)
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/ops/
seq2seq_ops_test.py 36 array_ops.placeholder(dtypes.float32, [2, 2]) for _ in range(3)
38 labels = [array_ops.placeholder(dtypes.float32, [2, 2]) for _ in range(3)]
40 array_ops.placeholder(dtypes.float32, [2, 2]) for _ in range(3)
64 x = array_ops.placeholder(dtypes.float32, [2, 3, 2])
65 y = array_ops.placeholder(dtypes.float32, [2, 2, 3])
82 array_ops.placeholder(dtypes.float32, [2, 2]) for _ in range(3)
84 encoding = array_ops.placeholder(dtypes.float32, [2, 2])
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
ExtendedBitmapDrawable.java 68 private Placeholder mPlaceholder;
92 // Placeholder and progress.
97 // Placeholder is not optional because backgroundColor is part of it.
98 Drawable placeholder = null; local
101 if (mOpts.placeholder != null) {
102 ConstantState constantState = mOpts.placeholder.getConstantState();
104 placeholder = constantState.newDrawable(mResources);
106 placeholder = mOpts.placeholder;
109 Rect bounds = mOpts.placeholder.getBounds()
748 public Drawable placeholder; field in class:ExtendedBitmapDrawable.ExtendedOptions
    [all...]
  /external/tensorflow/tensorflow/compiler/aot/tests/
make_test_graphs.py 47 x = array_ops.placeholder(dtypes.int32, name='x_hold')
62 x = array_ops.placeholder(dtypes.int32, name='x_hold')
81 params = array_ops.placeholder(dtypes.float32, name='params')
82 indices = array_ops.placeholder(dtypes.int32, name='indices')
87 x = array_ops.placeholder(dtypes.float32, name='x_hold')
88 y = array_ops.placeholder(dtypes.float32, name='y_hold')
94 x = array_ops.placeholder(dtypes.float32, name='x_hold')
95 y = array_ops.placeholder(dtypes.float32, name='y_hold')
113 x = array_ops.placeholder(dtypes.float32, shape=[2, 2], name='x')
114 y = array_ops.placeholder(dtypes.float32, shape=[2, 2], name='y'
    [all...]

Completed in 524 milliseconds

1 2 3 4 5 6 7 8 91011>>