HomeSort by relevance Sort by last modified time
    Searched defs:from (Results 76 - 100 of 2346) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/runtime/
method_handles_test.cc 62 Handle<mirror::Class> from,
67 Handle<mirror::MethodType> from_mt = hs.NewHandle(CreateVoidMethodType(self, from));
69 return ConvertJValueCommon(from_mt, to_mt, from.Get(), to.Get(), value);
83 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('B')); local
86 ASSERT_TRUE(TryConversion(soa.Self(), from, to, &value));
95 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('C')); local
99 ASSERT_TRUE(TryConversion(soa.Self(), from, to, &value));
108 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
111 ASSERT_TRUE(TryConversion(soa.Self(), from, to, &value));
120 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('B')) local
134 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('S')); local
148 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('D')); local
162 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('Z')); local
183 Handle<mirror::Class> from = hs.NewHandle(boxed_value->GetClass()); local
200 Handle<mirror::Class> from = hs.NewHandle(boxed_value->GetClass()); local
220 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
235 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
250 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
264 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
278 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('I')); local
297 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Integer;")); local
312 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Integer;")); local
325 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Integer;")); local
338 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Class;")); local
356 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Integer;")); local
373 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava\/lang\/Number;")); local
    [all...]
  /build/soong/cmd/symbol_inject/
symbol_inject.go 30 from = flag.String("from", "", "optional existing value of the symbol for verification")
98 err = injectSymbol(file, w, *symbol, *value, *from)
129 func injectSymbol(file *File, w io.Writer, symbol, value, from string) error {
139 if from != "" {
143 copy(expected, from)
29 from = flag.String("from", "", "optional existing value of the symbol for verification") var
  /external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java 110 int from = 2; local
111 int to = text.indexOf("?", from);
115 String charset = text.substring(from, to);
119 from = to + 1;
120 to = text.indexOf("?", from);
124 String encoding = text.substring(from, to);
129 from = to + 1;
130 to = text.indexOf("?", from);
131 byte[] data = text.substring(from, to).getBytes(StringEncodings.US_ASCII);
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 44 * {@link java.net.InetAddress} instance from it rather than using this class.
61 * Returns a {@code HostSpecifier} built from the provided {@code specifier},
63 * invalid, use {@link #from(String)} instead.
76 // Verify that no port was specified, and strip optional brackets from
100 final InternetDomainName domain = InternetDomainName.from(host);
118 public static HostSpecifier from(String specifier) method in class:HostSpecifier
  /external/iptables/extensions/
libxt_connbytes.c 16 " [!] --connbytes from:[to]\n"
39 sinfo->count.from = cb->val.u64_range[0];
44 if (sinfo->count.to < sinfo->count.from)
46 (unsigned long long)sinfo->count.from,
49 i = sinfo->count.from;
50 sinfo->count.from = sinfo->count.to;
117 unsigned long long from, to; local
119 if (sinfo->count.from > sinfo->count.to) {
121 from = sinfo->count.to;
122 to = sinfo->count.from;
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy_file/
copy_file.pass.cpp 14 // bool copy_file(const path& from, const path& to);
15 // bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
16 // bool copy_file(const path& from, const path& to, copy_options options);
17 // bool copy_file(const path& from, const path& to, copy_options options,
75 { // exists(to) && equivalent(to, from)
117 const path from = env.create_file("update_from", 55); local
123 TEST_REQUIRE(fs::copy_file(from, older, copy_options::update_existing, ec) == true);
127 TEST_REQUIRE(fs::copy_file(from, newer, copy_options::update_existing, ec) == false);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.rename/
rename.pass.cpp 62 path from; member in struct:TestCase
70 auto from_before = status(TC.from);
73 rename(TC.from, TC.to, ec);
75 TEST_CHECK(from_before.type() == status(TC.from).type());
77 TEST_CHECK(checkThrow(TC.from, TC.to, ec));
  /external/libxml2/
testAutomata.c 80 int from, to; local
82 from = scanNumber(&ptr);
88 if (states[from] == NULL)
89 states[from] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
106 from = scanNumber(&ptr);
112 if (states[from] == NULL)
113 states[from] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], states[to])
132 int from, to; local
    [all...]
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
51 const GLfloat *from = (GLfloat *)clip_vec->start; local
59 const GLfloat cx = from[0];
60 const GLfloat cy = from[1];
61 const GLfloat cz = from[2];
62 const GLfloat cw = from[3];
132 const GLfloat *from = (GLfloat *)clip_vec->start; local
139 const GLfloat cx = from[0];
140 const GLfloat cy = from[1];
141 const GLfloat cz = from[2]
189 const GLfloat *from = (GLfloat *)clip_vec->start; local
225 const GLfloat *from = (GLfloat *)clip_vec->start; local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayoutInflater.java 32 public static LayoutInflater from(Context context) { method in class:ShadowLayoutInflater
  /external/tensorflow/tensorflow/stream_executor/
platform.cc 99 StreamExecutor *from = ExecutorForDevice(i).ValueOrDie(); local
101 (*map)[{i, j}] = from->CanEnablePeerAccessTo(to);
113 StreamExecutor *from = ExecutorForDevice(devices.first).ValueOrDie(); local
115 auto status = from->EnablePeerAccessTo(to);
120 LOG(INFO) << "cannot enable peer access from device ordinal "
  /frameworks/base/core/java/android/os/health/
SystemHealthManager.java 66 public static SystemHealthManager from(Context context) { method in class:SystemHealthManager
81 * application. The keys for this HealthStats object will be from the {@link UidHealthStats}
100 * for this HealthStats object will be from the {@link UidHealthStats} class.
117 * the requested uids. The keys for this HealthStats object will be from the
  /frameworks/support/browser/src/main/java/androidx/browser/browseractions/
BrowserActionsFallbackMenuDialog.java 69 float from = isEnterAnimation ? 0f : 1f; local
72 mContentView.setScaleX(from);
73 mContentView.setScaleY(from);
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateBackground.java 47 public static StateBackground from( method in class:StateBackground
75 return Optional.of((State) StateForeground.from(
96 State nextState = StateBackgroundWithSurfaceTexture.from(
StateForeground.java 40 // Can be used to transition from Background on resume.
41 public static StateForeground from( method in class:StateForeground
61 return Optional.of((State) StateBackground.from(
82 State nextState = StateForegroundWithSurfaceTexture.from(
  /packages/apps/Camera2/src/com/android/camera/data/
Location.java 94 public static Location from(double latitude, double longitude) { method in class:Location
  /packages/apps/Camera2/src/com/android/camera/device/
CameraId.java 33 public static CameraId from(@Nonnull String camera2Id) { method in class:CameraId
106 // created from any Camera1 id.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.rename/
rename.pass.cpp 62 path from; member in struct:TestCase
70 auto from_before = status(TC.from);
73 rename(TC.from, TC.to, ec);
75 TEST_CHECK(from_before.type() == status(TC.from).type());
77 TEST_CHECK(checkThrow(TC.from, TC.to, ec));
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
InclusiveIntRange.java 47 public static InclusiveIntRange from(int min) { method in class:InclusiveIntRange
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestDateTimeParsing.java 45 * may be used to endorse or promote products derived from this software
139 assertEquals(ZonedDateTime.from(actual), expected);
145 assertEquals(LocalDateTime.from(actual), expected.toLocalDateTime());
151 assertEquals(Instant.from(actual), expected.toInstant());
178 ZonedDateTime.from(actual);
184 LocalDateTime.from(actual);
190 assertEquals(Instant.from(actual), expected);
  /cts/tests/tests/media/libmediandkjni/
native_media_utils.cpp 95 auto from = mInfos.begin() + frameNumFrom; local
97 int64_t duration = (*std::max_element(from, to, comparePTS)).presentationTimeUs
98 - (*std::min_element(from, to, comparePTS)).presentationTimeUs;
321 ALOGI("RESULT: Dynamic Bitrates : [from-frame - to-frame] actual/expected :");
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 64 * application should be in when launching it from a notification.
66 static Intent[] makeMessageIntentStack(Context context, CharSequence from,
90 intents[3].putExtra(IncomingMessageView.KEY_FROM, from);
106 CharSequence from = "Joe"; local
119 makeMessageIntentStack(this, from, message), PendingIntent.FLAG_CANCEL_CURRENT);
129 .setContentTitle(from) // the label of the entry
157 CharSequence from = "Dianne"; local
170 intent.putExtra(IncomingMessageView.KEY_FROM, from);
184 .setContentTitle(from) // the label of the entry
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.c 78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffast.c 78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
194 from = window - OFF;
196 from += wsize - op;
197 if (op < len) { /* some from window */
200 PUP(out) = PUP(from);
202 from = out - dist; /* rest from output */
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.c 61 unsigned dmax; /* maximum distance from zlib header */
78 unsigned char FAR *from; /* where to copy match from */ local
170 if (dist > op) { /* see if copy from window */
191 from = out - dist;
193 *out++ = *from++;
199 from = window;
201 from += wsize - op;
202 if (op < len) { /* some from window */
205 *out++ = *from++
    [all...]

Completed in 390 milliseconds

1 2 34 5 6 7 8 91011>>