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

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 60 from(const V2& v) function in struct:character
165 { return char_type::template from(__i); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pod_char_traits.h 60 from(const V2& v) function in struct:character
165 { return char_type::template from(__i); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 171 INode from = cycle.get(0).from.node; local
172 Rect fromBounds = from.getBounds();
173 if (state.mDraggedNodes.contains(from)) {
183 assert constraint.from.node == from; local
185 assert from != null && to != null;
197 from = to;
GuidelineHandler.java 159 * will be equidistant from the current position (as well as in the same direction,
274 INode from = match.edge.node; local
277 List<Constraint> path = mDependencyGraph.getPathTo(from, to, vertical);
685 constraint.from.node.setAttribute(ANDROID_URI, constraint.type.name, null);
777 if (m1.edge.to <= m1.with.from) {
778 distance1 = m1.with.from - m1.edge.to;
779 } else if (m1.edge.from >= m1.with.to) {
780 distance1 = m1.edge.from - m1.with.to;
785 if (m2.edge.to <= m2.with.from) {
786 distance2 = m2.with.from - m2.edge.to
    [all...]
  /system/extras/simpleperf/
cmd_report_test.cpp 299 char from[80]; local
301 if (sscanf(line.c_str(), "%*f%%%s%s", from, to) == 2) {
302 hit_set.insert(std::make_pair<std::string, std::string>(from, to));
event_fd.cpp 129 PLOG(ERROR) << "ReadCounter from " << Name() << " failed";
248 // Copy records from mapped buffer. Note that records can be wrapped at the
252 char* from = mmap_data_buffer_ + read_head; local
254 memcpy(to, from, n);
256 char* from = mmap_data_buffer_ + read_head; local
258 memcpy(to, from, n);
260 from = mmap_data_buffer_;
262 memcpy(to, from, n);
  /toolchain/binutils/binutils-2.27/zlib/
infback.c 7 This code is largely copied from inflate.c. Normally either infback.o or
74 fixed code decoding. Normally this returns fixed tables from inffixed.h.
127 /* Load returned state from inflate_fast() */
138 /* Set state from registers for inflate_fast() */
157 then return a Z_BUF_ERROR from inflateBack(). */
170 /* Get a byte of input into the bit accumulator, or return from inflateBack()
181 not enough available input to do that, then return from inflateBack() with
193 /* Remove n bits from the bit accumulator */
208 if it's full. If the write fails, return from inflateBack() with a
264 unsigned char FAR *from; /* where to copy match bytes from * local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderSpecTest.java 47 assertCacheBuilderEquivalence(CacheBuilder.newBuilder(), CacheBuilder.from(spec));
61 CacheBuilder.newBuilder().initialCapacity(10), CacheBuilder.from(spec));
83 CacheBuilder.newBuilder().maximumSize(9000), CacheBuilder.from(spec));
105 CacheBuilder.newBuilder().maximumWeight(9000), CacheBuilder.from(spec));
137 CacheBuilder.newBuilder().concurrencyLevel(32), CacheBuilder.from(spec));
160 CacheBuilder.newBuilder().weakKeys(), CacheBuilder.from(spec));
192 CacheBuilder.newBuilder().softValues(), CacheBuilder.from(spec));
215 CacheBuilder.newBuilder().weakValues(), CacheBuilder.from(spec));
269 CacheBuilder.newBuilder().expireAfterWrite(10L, TimeUnit.DAYS), CacheBuilder.from(spec));
277 CacheBuilder.newBuilder().expireAfterWrite(150L, TimeUnit.HOURS), CacheBuilder.from(spec))
    [all...]
  /frameworks/base/core/java/android/view/
GhostView.java 154 private static void copySize(View from, View to) {
157 to.setRight(from.getWidth());
158 to.setBottom(from.getHeight());
183 // Remove all GhostViews from the middle
271 * Returns true if viewParents is from a View that is on top of the comparedWith's view.
272 * The ArrayLists contain the ancestors of views in order from top most grandparent, to
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixSecureDirectoryStream.java 247 UnixPath from = getName(fromObj); local
258 this.ds.directory().resolve(from).checkWrite();
270 renameat(this.dfd, from.asByteArray(), that.dfd, to.asByteArray());
274 from.toString(), to.toString(), x.errorString());
276 x.rethrowAsIOException(from, to);
  /device/google/contexthub/firmware/build/
config.mk 64 define nano-gen-linker-script-from-list-body
74 define nano-gen-linker-script-from-list
76 $(call nano-gen-linker-script-from-list-body,$(1),$(2))
87 $(eval $(call nano-gen-linker-script-from-list,$(1),$(patsubst %,$(NANOHUB_OS_PATH)/os/platform/$(5)/lkr/%.lkr,$(3).map $(4).$(2) $(4).common)))
100 $(eval $(call nano-gen-linker-script-from-list,$(1),$(NANOHUB_OS_PATH)/os/platform/$(5)/lkr/$(4).extra.lkr))
111 $(eval $(call nano-gen-linker-script-from-list,$(1),$(3) $(patsubst %,$(NANOHUB_OS_PATH)/os/platform/$(5)/lkr/%.lkr,$(4).$(2) $(4).common)))
119 # all the LOCAL_<var> and LOCAL_<var>_<cpu,arch,subarch,variant,os,class> from NANO_VAR_LIST
219 # and would iterate through available variants from $(1)
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 417 public void copy(String toPath, Data from) {
421 if (from == null) {
426 to.copy(from);
429 public void copy(Data from) {
430 if (from == null) {
437 // Clear any existing attributes and copy the ones from the source.
441 for (Map.Entry<String, String> attribute : from.getAttributes()) {
446 if (from.getSymlink() != from) {
447 setSymlink(from.getSymlink())
    [all...]
  /art/compiler/optimizing/
code_generator_vector_mips.cc 23 // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
241 DataType::Type from = instruction->GetInputType(); local
243 if (from == DataType::Type::kInt32 && to == DataType::Type::kFloat32) {
    [all...]
code_generator_vector_mips64.cc 23 // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
239 DataType::Type from = instruction->GetInputType(); local
241 if (from == DataType::Type::kInt32 && to == DataType::Type::kFloat32) {
    [all...]
code_generator_vector_x86.cc 25 // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
34 // Long needs extra temporary to load from the register pair.
279 DataType::Type from = instruction->GetInputType(); local
281 if (from == DataType::Type::kInt32 && to == DataType::Type::kFloat32) {
    [all...]
code_generator_vector_x86_64.cc 25 // NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
262 DataType::Type from = instruction->GetInputType(); local
264 if (from == DataType::Type::kInt32 && to == DataType::Type::kFloat32) {
    [all...]
  /bionic/tests/
fortify_filecheck_diagnostics_test.cpp 18 * If this test fails, you can see the compiler's output by erasing a few args from the failing
359 char from[4] = {0}; local
362 memset(from, sizeof(from), 0);
  /build/make/core/
aux_config.mk 9 # exclude AUX targets from build
20 # this one will come from android prebuilts eventually
27 # all the interesting paths are hardcoded in soong, and are not available from here
38 # Load ever-lasting "indexed" version of AUX variant environment; it is treated as READ-ONLY from this
90 # given a variant:path pair, load the variant conviguration with aux-variant-setup-paths from file
97 define aux-variant-import-from-pair
175 $(foreach v,$(my_variant_pairs),$(if $(filter $(v),$(AUX_ALL_VARIANTS)),,$(call aux-variant-import-from-pair,$(v),$(variant_sfx))))
  /device/google/cuttlefish_common/common/commands/wifi_relay/
mac80211_hwsim.cpp 302 sockaddr_nl from; local
305 int len = nl_recv(mSock.get(), &from, &data, nullptr /* creds */);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.c 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
153 /* extract wrap request from windowBits parameter */
253 fixed code decoding. Normally this returns fixed tables from inffixed.h.
375 upon return from inflate(), and since all distances after the first 32K of
469 /* Restore state from registers in inflate() */
487 /* Get a byte of input into the bit accumulator, or return from inflate()
498 not enough available input to do that, then return from inflate(). */
617 unsigned char FAR *from; \/* where to copy match bytes from *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.c 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
197 fixed code decoding. Normally this returns fixed tables from inffixed.h.
319 upon return from inflate(), and since all distances after the first 32K of
413 /* Restore state from registers in inflate() */
431 /* Get a byte of input into the bit accumulator, or return from inflate()
442 not enough available input to do that, then return from inflate(). */
453 /* Remove n bits from the bit accumulator */
566 unsigned char FAR *from; \/* where to copy match bytes from *\/ local
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.c 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
168 /* extract wrap request from windowBits parameter */
270 fixed code decoding. Normally this returns fixed tables from inffixed.h.
392 upon return from inflate(), and since all distances after the first 32K of
486 /* Restore state from registers in inflate() */
504 /* Get a byte of input into the bit accumulator, or return from inflate()
515 not enough available input to do that, then return from inflate(). *
634 unsigned char FAR *from; \/* where to copy match bytes from *\/ local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regenc.h 44 OnigCodePoint from; member in struct:__anon8297
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 27 * contributors may be used to endorse or promote products derived from
58 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
75 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
83 static char orig_rcsid[] = "From: Id: res_send.c,v 8.20 1998/04/06 23:27:51 halley Exp $";
565 struct sockaddr_in from; local
595 * as we wish to receive answers from the first
601 * receive a response from another server.
626 * for responses from more than one server.
769 (struct sockaddr *)&from, (socklen_t *)&fromlen);
790 * response from old query, ignore it.
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 15 derived from this software without specific prior written permission.
165 int from = in.readChar(); local

Completed in 1070 milliseconds

1 2 3 4 5 6 7 891011>>