Searched defs:from (Results 151 - 175 of 873) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libxslt/libxslt/
H A DnumbersInternals.h31 const xmlChar *from; member in struct:_xsltNumberData
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_double_list.h73 static INLINE void list_replace(struct list_head *from, struct list_head *to) argument
75 to->prev = from->prev;
76 to->next = from->next;
77 from->next->prev = to;
78 from->prev->next = to;
110 * Cast from a pointer to a member of a struct back to the containing struct.
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_clip_tmp.h51 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];
142 const GLfloat cw = from[
189 const GLfloat *from = (GLfloat *)clip_vec->start; local
225 const GLfloat *from = (GLfloat *)clip_vec->start; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/evp/
H A Dnames.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
144 const char *from, const char *to, void *arg);
157 const char *from, const char *to, void *x), void *arg)
166 const char *from, const char *to, void *x), void *arg)
178 const char *from, const char *to, void *arg);
191 const char *from, const char *to, void *x), void *arg)
200 const char *from, const char *to, void *x), void *arg)
156 EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
165 EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
190 EVP_MD_do_all(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
199 EVP_MD_do_all_sorted(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/
H A Drsa_crpt.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
75 int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, argument
86 return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding));
89 int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, argument
100 return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding));
103 int RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, argument
114 return(rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding));
117 int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, argument
128 return(rsa->meth->rsa_pub_dec(flen, from, t
[all...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java16 // contributors may be used to endorse or promote products derived from
76 public LazyStringArrayList(LazyStringList from) { argument
77 list = new ArrayList<Object>(from.size());
78 addAll(from);
81 public LazyStringArrayList(List<String> from) { argument
82 list = new ArrayList<Object>(from);
128 // When copying from another LazyStringList, directly copy the underlying
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops.cc16 // contributors may be used to endorse or promote products derived from
48 void ReflectionOps::Copy(const Message& from, Message* to) { argument
49 if (&from == to) return;
51 Merge(from, to);
54 void ReflectionOps::Merge(const Message& from, Message* to) { argument
55 GOOGLE_CHECK_NE(&from, to);
57 const Descriptor* descriptor = from.GetDescriptor();
61 const Reflection* from_reflection = from.GetReflection();
65 from_reflection->ListFields(from, &fields);
70 int count = from_reflection->FieldSize(from, fiel
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateBase.h56 SkString from; member in class:SkAnimateBase
/external/chromium_org/third_party/zlib/
H A Dinffast.c78 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...]
/external/chromium_org/tools/json_schema_compiler/
H A Dutil.h19 // Creates a new item at |out| from |from|[|index|]. These are used by template
21 bool GetItemFromList(const base::ListValue& from, int index, int* out);
22 bool GetItemFromList(const base::ListValue& from, int index, bool* out);
23 bool GetItemFromList(const base::ListValue& from, int index, double* out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out);
25 bool GetItemFromList(const base::ListValue& from,
28 bool GetItemFromList(const base::ListValue& from,
34 bool GetItemFromList(const base::ListValue& from, argument
38 if (!from
66 PopulateArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, std::vector<T>* out) argument
101 PopulateOptionalArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, scoped_ptr<std::vector<T> >* out) argument
133 AddItemToList(const linked_ptr<T>& from, base::ListValue* out) argument
140 PopulateListFromArray( const std::vector<T>& from, base::ListValue* out) argument
153 PopulateListFromOptionalArray( const scoped_ptr<std::vector<T> >& from, base::ListValue* out) argument
162 CreateValueFromArray(const std::vector<T>& from) argument
169 CreateValueFromOptionalArray( const scoped_ptr<std::vector<T> >& from) argument
[all...]
/external/chromium_org/ui/views/examples/
H A Dscroll_view_example.cc31 void SetColor(SkColor from, SkColor to) { argument
32 set_background(Background::CreateVerticalGradientBackground(from, to));
H A Dsingle_split_view_example.cc20 void SetColor(SkColor from, SkColor to);
23 // Overridden from View:
38 void SplittedView::SetColor(SkColor from, SkColor to) { argument
39 set_background(Background::CreateVerticalGradientBackground(from, to));
/external/compiler-rt/BlocksRuntime/tests/
H A Dfail.c22 bool readfile(char *buffer, const char *from) { argument
23 int fd = open(from, 0);
87 printf("didn't read errorfile %s, it should have something from\n*****\n%s\n*****\nin it.\n",
/external/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cc185 static void* transfer(void *to, const void *from, size_t size) { argument
186 return Ident(memcpy)(to, from, size);
197 static void* transfer(void *to, const void *from, size_t size) { argument
198 return Ident(memmove)(to, from, size);
224 // Zero bytes are not terminators and don't prevent from OOB.
/external/flac/libFLAC/ia32/
H A Dnasm.h16 ; contributors may be used to endorse or promote products derived from variable
/external/guava/guava/src/com/google/common/cache/
H A DCacheLoader.java86 * but only the entries for {@code keys} will be returned from {@code getAll}.
93 * @return a map from each key in {@code keys} to the value associated with that key;
105 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) { method in class:CacheLoader
126 * Returns a {@code CacheLoader} which obtains values from a {@code Supplier} (independent of the
129 public static <V> CacheLoader<Object, V> from(Supplier<V> supplier) { method in class:CacheLoader
152 * Thrown to indicate that an invalid response was returned from a call to {@link CacheLoader}.
/external/icu4c/i18n/
H A Dtztrans.cpp21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) argument
22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) {
96 TimeZoneTransition::setFrom(const TimeZoneRule& from) { argument
100 fFrom = from.clone();
104 TimeZoneTransition::adoptFrom(TimeZoneRule* from) { argument
108 fFrom = from;
H A Dztrans.cpp27 ztrans_open(UDate time, const void* from, const void* to){ argument
28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to);
67 ztrans_setFrom(ZTrans* trans, const void* from) { argument
68 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setFrom(*(TimeZoneRule*)from);
72 ztrans_adoptFrom(ZTrans* trans, void* from) { argument
73 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptFrom((TimeZoneRule*)from);
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DParserStateTable.java26 * <p>The logic of what character causes what state transition is derived from
88 * in the {@code from} state.
97 * @param from the source state
101 InternalState getNextState(InternalState from, int currentChar) { argument
103 if (from == null || currentChar < 0)
106 int id = from.getId();
116 result = defaultStateTable[from.getId()];
121 void setExpression(String expr, InternalState from, InternalState to) { argument
122 if ((expr == null) || (from == null) || (to == null)) {
128 setDefaultDestination(from, t
144 fill(InternalState from, InternalState to) argument
151 setDefaultDestination(InternalState from, InternalState to) argument
162 setDestination(InternalState from, char chr, InternalState to) argument
174 setRange(InternalState from, char start, char end, InternalState to) argument
[all...]
/external/kernel-headers/original/linux/
H A Dhighmem.h92 static inline void copy_user_highpage(struct page *to, struct page *from, unsigned long vaddr) argument
96 vfrom = kmap_atomic(from, KM_USER0);
105 static inline void copy_highpage(struct page *to, struct page *from) argument
109 vfrom = kmap_atomic(from, KM_USER0);
/external/libxslt/libxslt/
H A DnumbersInternals.h31 const xmlChar *from; member in struct:_xsltNumberData
/external/linux-tools-perf/util/
H A Dutil.c30 static int slow_copyfile(const char *from, const char *to) argument
35 FILE *from_fp = fopen(from, "r"), *to_fp;
57 int copyfile(const char *from, const char *to) argument
64 if (stat(from, &st))
68 return slow_copyfile(from, to);
70 fromfd = open(from, O_RDONLY);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_double_list.h73 static INLINE void list_replace(struct list_head *from, struct list_head *to) argument
75 to->prev = from->prev;
76 to->next = from->next;
77 from->next->prev = to;
78 from->prev->next = to;
110 * Cast from a pointer to a member of a struct back to the containing struct.
/external/mesa3d/src/mesa/math/
H A Dm_clip_tmp.h51 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];
142 const GLfloat cw = from[
189 const GLfloat *from = (GLfloat *)clip_vec->start; local
225 const GLfloat *from = (GLfloat *)clip_vec->start; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java68 long silentTime = sub.from - lastEnd;
97 long silentTime = sub.from - lastEnd;
103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
131 long from; field in class:QuicktimeTextTrackImpl.Line
136 public Line(long from, long to, String text) { argument
137 this.from = from;
143 return from;

Completed in 2580 milliseconds

1234567891011>>