HomeSort by relevance Sort by last modified time
    Searched defs:to (Results 101 - 125 of 1676) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/netfilter/
xt_connbytes.h 5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
31 aligned_u64 to; member in struct:xt_connbytes_info::__anon69959
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/netfilter/
xt_connbytes.h 5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
31 aligned_u64 to; member in struct:xt_connbytes_info::__anon70412
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/netfilter/
xt_connbytes.h 5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
31 aligned_u64 to; member in struct:xt_connbytes_info::__anon70867
  /system/core/libsync/
sync.c 12 * Unless required by applicable law or agreed to in writing, software
33 __s32 to = timeout; local
35 return ioctl(fd, SYNC_IOC_WAIT, &to);
  /toolchain/binutils/binutils-2.25/gold/
dwp.h 19 // along with this program; if not, write to the Free Software
56 // The size of a section if we are going to look at the contents.
77 // This function is called to exit the program. Status is true to
78 // exit success (0) and false to exit failure (1).
82 // This function is called to emit an error message and then
87 // This function is called to issue a warning.
91 // This function is called to print an informational message.
107 template<typename To, typename From>
108 inline To
111 To to = from; local
    [all...]
  /build/core/clang/
HOST_x86_64.mk 54 define convert-to-host-clang-flags
62 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CFLAGS)) \
66 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CONLYFLAGS)) \
70 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CPPFLAGS)) \
74 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_LDFLAGS)) \
TARGET_mips64.mk 39 define convert-to-clang-flags
47 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
51 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CONLYFLAGS)) \
55 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
59 $(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
TARGET_x86_64.mk 39 define convert-to-clang-flags
47 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CFLAGS)) \
51 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CONLYFLAGS)) \
55 $(call convert-to-clang-flags,$(TARGET_GLOBAL_CPPFLAGS)) \
59 $(call convert-to-clang-flags,$(TARGET_GLOBAL_LDFLAGS)) \
  /external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java 10 * Unless required by applicable law or agreed to in writing, software
26 * Implements methods common to all codecs defined in RFC 1522.
31 * describes techniques to allow the encoding of non-ASCII text in
33 * is unlikely to confuse existing message handling software.
53 * Applies an RFC 1522 compliant encoding scheme to the given string of text with the
54 * given charset. This method constructs the "encoded-word" header common to all the
56 * class to perform the specific enconding.
58 * @param text a string to encode
59 * @param charset a charset to be used
89 * Applies an RFC 1522 compliant decoding scheme to the given string of text. This method
111 int to = text.indexOf("?", from); local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicListHeaderIterator.java 7 * Licensed to the Apache Software Foundation (ASF) under one
11 * to you under the Apache License, Version 2.0 (the
17 * Unless required by applicable law or agreed to in writing,
56 * A list of headers to iterate over.
77 * The header name to filter by.
78 * <code>null</code> to iterate over all headers in the array.
87 * @param headers a list of headers over which to iterate
88 * @param name the name of the headers over which to iterate, or
107 * @param from one less than the index to consider first,
108 * -1 to search for the first heade
117 final int to = this.allHeaders.size()-1; local
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
SimpleFilter.java 17 private void updateObject(JSONObject to, JSONObject from) {
20 to.put(key, value);
  /external/bison/
cfg.mk 18 # up-to-date, then compile our parser again with our up-to-date bison.
29 # It's useful to run maintainer-*check* targets during development, but we
30 # don't want to wait on a recompile because of an update to $(VERSION). Thus,
39 # Tests not to run as part of "make distcheck".
41 # files -- otherwise, you'd need to have the upcoming version number
43 local-checks-to-skip = \
51 # this release. Used solely to get a date for the "announcement" target.
  /external/guice/core/src/com/google/inject/internal/
BindingBuilder.java 10 * Unless required by applicable law or agreed to in writing, software
60 public BindingBuilder<T> to(Class<? extends T> implementation) { method in class:BindingBuilder
61 return to(Key.get(implementation));
64 public BindingBuilder<T> to(TypeLiteral<? extends T> implementation) { method in class:BindingBuilder
65 return to(Key.get(implementation));
68 public BindingBuilder<T> to(Key<? extends T> linkedKey) { method in class:BindingBuilder
80 // lookup the injection points, adding any errors to the binder's errors list
107 // lookup the injection points, adding any errors to the binder's errors list
ConstantBindingBuilderImpl.java 10 * Unless required by applicable law or agreed to in writing, software
54 public void to(final String value) { method in class:ConstantBindingBuilderImpl
58 public void to(final int value) { method in class:ConstantBindingBuilderImpl
62 public void to(final long value) { method in class:ConstantBindingBuilderImpl
66 public void to(final boolean value) { method in class:ConstantBindingBuilderImpl
70 public void to(final double value) { method in class:ConstantBindingBuilderImpl
74 public void to(final float value) { method in class:ConstantBindingBuilderImpl
78 public void to(final short value) { method in class:ConstantBindingBuilderImpl
82 public void to(final char value) { method in class:ConstantBindingBuilderImpl
86 public void to(final byte value) method in class:ConstantBindingBuilderImpl
90 public void to(final Class<?> value) { method in class:ConstantBindingBuilderImpl
94 public <E extends Enum<E>> void to(final E value) { method in class:ConstantBindingBuilderImpl
    [all...]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
DefaultEdgeCreator.java 10 * Unless required by applicable law or agreed to in writing, software
52 * {@link BindingTargetVisitor} that adds edges to the graph based on the visited {@link Binding}.
59 * given node ID to the {@link Dependency}'s {@link Key}.
69 NodeId to = NodeId.newTypeId(dependency.getKey()); local
70 builder.add(new DependencyEdge(nodeId, to, dependency.getInjectionPoint()));
76 * Visitor for {@link ConstructorBinding}s. These are for classes that Guice will instantiate to
111 * binding an interface class to an implementation class. We draw a {@link BindingEdge} from
112 * the interface node to the node of the implementing class.
  /external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/
DateIntervalFormatTest.java 10 * Unless required by applicable law or agreed to in writing, software
50 Calendar to = Calendar.getInstance(); local
51 to.set(2001, Calendar.FEBRUARY, 1, 12, 0);
52 DateInterval interval = new DateInterval(from.getTimeInMillis(), to.getTimeInMillis());
67 Calendar to = Calendar.getInstance(); local
68 to.set(2001, Calendar.FEBRUARY, 1, 12, 0);
69 DateInterval interval = new DateInterval(from.getTimeInMillis(), to.getTimeInMillis());
  /external/iptables/extensions/
libxt_connbytes.c 16 " [!] --connbytes from:[to]\n"
40 sinfo->count.to = UINT64_MAX;
42 sinfo->count.to = cb->val.u64_range[1];
44 if (sinfo->count.to < sinfo->count.from)
47 (unsigned long long)sinfo->count.to);
50 sinfo->count.from = sinfo->count.to;
51 sinfo->count.to = i;
117 unsigned long long from, to; local
119 if (sinfo->count.from > sinfo->count.to) {
121 from = sinfo->count.to;
    [all...]
  /external/libxml2/
testAutomata.c 80 int from, to; local
91 to = scanNumber(&ptr);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
115 to = scanNumber(&ptr);
116 if (states[to] == NULL)
117 states[to] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], states[to]);
132 int from, to; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 13 // join-param = to-tag / from-tag / generic-param
14 // to-tag = "to-tag" EQUAL token
23 * @param callID message to parse
31 * @param lexer Lexer to set
62 String to[] = local
64 "Join: 12345th5z8z;to-tag=tozght6-45;from-tag=fromzght789-337-2\n",
67 for (int i = 0; i < to.length; i++) {
68 JoinParser tp = new JoinParser(to[i]);
70 System.out.println("Parsing => " + to[i])
    [all...]
ReplacesParser.java 13 // replaces-param = to-tag / from-tag / early-flag / generic-param
14 // to-tag = "to-tag" EQUAL token
25 * @param callID message to parse
33 * @param lexer Lexer to set
64 String to[] = local
66 "Replaces: 12345th5z8z;to-tag=tozght6-45;from-tag=fromzght789-337-2\n",
69 for (int i = 0; i < to.length; i++) {
70 ReplacesParser tp = new ReplacesParser(to[i]);
72 System.out.println("Parsing => " + to[i])
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
RopeByteStringSubstringTest.java 16 // contributors may be used to endorse or promote products derived from
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 int to = sourceBytes.length - 5555; local
56 stringUnderTest = sourceString.substring(from, to);
57 referenceBytes = new byte[to - from];
58 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from);
  /system/netd/server/
ndc.c 10 * Unless required by applicable law or agreed to in writing, software
45 // try interpreting the first arg as the socket name - if it fails go back to netd
121 printf("[Connected to Netd]\n");
125 struct timeval to; local
128 to.tv_sec = 10;
129 to.tv_usec = 0;
134 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
148 fprintf(stderr, "Lost connection to Netd - did it crash?\n");
  /system/tools/aidl/
code_writer.cpp 10 * Unless required by applicable law or agreed to in writing, software
90 FILE* to = nullptr; local
93 to = stdout;
96 // open file in binary mode to ensure that the tool produces the
98 to = fopen(output_file.c_str(), "wb");
101 if (to != nullptr) {
102 result.reset(new FileCodeWriter(to, close_on_destruction));
104 cerr << "unable to open " << output_file << " for write" << endl;
  /packages/apps/Launcher2/src/com/android/launcher2/
ButtonDropTarget.java 10 * Unless required by applicable law or agreed to in writing, software
46 /** The paint applied to the drag view on hover */
127 // Find the rect to animate to (the view is center aligned)
128 Rect to = new Rect(); local
129 dragLayer.getViewRectRelativeToSelf(this, to);
138 right = to.right - getPaddingRight();
141 left = to.left + getPaddingLeft();
145 final int top = to.top + (getMeasuredHeight() - height) / 2;
148 to.set(left, top, right, bottom)
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strnlen.S 12 names of its contributors may be used to endorse or promote products
17 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
62 /* Pre-pad to ensure critical loop begins an icache line. */
66 /* Put this code here to avoid wasting more space with pre-padding. */
79 lsr limit_wd, limit_wd, #4 /* Convert to Qwords. */
89 /* Start of critial section -- keep to one 64Byte cache line. */
103 /* End of critical section -- keep to one 64Byte cache line. */
109 to do now is work out the length of the string and return define
123 easiest way to get the correct byte is to byte-swap the dat
    [all...]

Completed in 448 milliseconds

1 2 3 45 6 7 8 91011>>