Searched defs:to (Results 1 - 25 of 758) sorted by relevance

1234567891011>>

/external/libutf/
H A Dutfecpy.c4 * Permission to use, copy, modify, and distribute this software for any
20 utfecpy(char *to, char *e, const char *from) argument
24 if(to >= e)
25 return to;
26 end = (char*)memccpy(to, from, '\0', e - to);
29 while(end>to && (*--end&0xC0)==0x80)
/external/chromium_org/chrome/installer/util/
H A Dinstaller_util_test_common.cc17 bool CopyFileHierarchy(const base::FilePath& from, const base::FilePath& to) { argument
18 // In SHFILEOPSTRUCT below, |pFrom| and |pTo| have to be double-null
22 base::string16 double_null_to(to.value());
/external/chromium_org/components/enhanced_bookmarks/
H A Dimage_store.cc15 void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) { argument
23 Insert(to, image_info.second, image_info.first);
/external/chromium_org/third_party/icu/source/i18n/
H A Dzonemeta.h20 const UChar *mzid; // const because it's a reference to a resource bundle string.
22 UDate to; member in struct:OlsonToMetaMappingEntry
41 * This overload method returns a persistent const UChar*, which is guranteed to persist
42 * (a pointer to a resource).
57 * @return A reference to the result country
75 * Returns the pointer to the persistent time zone ID string, or NULL if the given tzid is not in the
81 * Returns the pointer to the persistent meta zone ID string, or NULL if the given mzid is not available.
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_internal.h15 * contributors may be used to endorse or promote products derived from
46 // "from" to "to". It returns when it performs a transition where done==true.
49 int32 to; member in struct:base::internal::SpinLockWaitTransition
53 // Wait until *w can transition from trans[i].from to trans[i].to for some i
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_internal.h15 * contributors may be used to endorse or promote products derived from
46 // "from" to "to". It returns when it performs a transition where done==true.
49 int32 to; member in struct:base::internal::SpinLockWaitTransition
53 // Wait until *w can transition from trans[i].from to trans[i].to for some i
/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c5 long to; member in struct:Connection_Type
H A D2002-03-12-StructInitializer.c9 long to; member in struct:Connection_Type
/external/icu/icu4c/source/i18n/
H A Dzonemeta.h20 const UChar *mzid; // const because it's a reference to a resource bundle string.
22 UDate to; member in struct:OlsonToMetaMappingEntry
41 * This overload method returns a persistent const UChar*, which is guranteed to persist
42 * (a pointer to a resource).
57 * @return A reference to the result country
75 * Returns the pointer to the persistent time zone ID string, or NULL if the given tzid is not in the
81 * Returns the pointer to the persistent meta zone ID string, or NULL if the given mzid is not available.
/external/openssl/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
/external/mesa3d/src/glsl/
H A DAndroid.gen.mk6 # Permission is hereby granted, free of charge, to any person obtaining a
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
49 define local-l-or-ll-to-c-or-cpp
55 define local-y-to-c-and-h
61 define local-yy-to
[all...]
/external/ceres-solver/internal/ceres/
H A Dcasts.h14 // used to endorse or promote products derived from this software without
48 // - Performing arithmetic conversions (int32 to int64, int to double, etc.).
51 // In general, implicit_cast can be used to convert this code
52 // To to = from;
53 // DoSomething(to);
54 // to this
57 // base::identity_ is used to make a non-deduced context, which
58 // forces all callers to explicitly specify the template argument.
60 inline To implicit_cast(typename identity_<To>::type to) { argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist_state_fetcher_unittest.cc16 void Assign(BlacklistState* to, BlacklistState from) { argument
17 *to = from;
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dutils.cc13 // Converts a list of CharacteristicProperty to a base::ListValue of strings.
28 // Copy the properties. Use Characteristic::ToValue to generate the result
29 // dictionary without the properties, to prevent json_schema_compiler from
33 scoped_ptr<base::DictionaryValue> to = from->ToValue(); local
34 to->SetWithoutPathExpansion(
36 return to.Pass();
44 scoped_ptr<base::DictionaryValue> to = from->ToValue(); local
47 to->GetDictionaryWithoutPathExpansion("characteristic", &chrc_value);
51 return to.Pass();
/external/chromium_org/printing/
H A Dpage_range.h18 // Print range is inclusive. To select one page, set from == to.
21 int to; member in struct:printing::PageRange
24 return from == rhs.from && to == rhs.to;
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableVisibility.cpp15 * contributors may be used to endorse or promote products derived from
39 EVisibility to = toAnimatableVisibility(value)->m_visibility; local
40 return from != VISIBLE && to != VISIBLE;
46 EVisibility to = toAnimatableVisibility(value)->m_visibility; local
47 if (from != VISIBLE && to != VISIBLE)
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationUtilities.h38 inline int blend(int from, int to, double progress) argument
40 return lround(from + (to - from) * progress);
45 inline T blend(T from, T to, double progress) argument
48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
51 inline double blend(double from, double to, double progress) argument
53 return from + (to - from) * progress;
56 inline float blend(float from, float to, double progress) argument
58 return static_cast<float>(from + (to
61 blend(LayoutUnit from, LayoutUnit to, double progress) argument
66 blend(const IntPoint& from, const IntPoint& to, double progress) argument
71 blend(const FloatPoint& from, const FloatPoint& to, double progress) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperation* to, double progress) argument
36 ASSERT(from || to);
37 if (to)
38 return to->blend(from, progress);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DInterpolatedTransformOperation.h15 * contributors may be used to endorse or promote products derived from
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) argument
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
62 return from.dependsOnBoxSize() || to.dependsOnBoxSize();
65 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
67 , to(to)
72 const TransformOperations to; member in class:blink::InterpolatedTransformOperation
/external/chromium_org/third_party/icu/source/common/
H A Ddtintrv.cpp23 DateInterval::DateInterval(UDate from, UDate to) argument
25 toDate(to)
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dmucinvitesendtask.cc13 * 3. The name of the author may not be used to endorse or promote products
35 MucInviteSendTask::Send(const Jid& to, const Jid& invitee) { argument
40 message->AddAttr(QN_TO, to.Str());
/external/clang/
H A Dclang-host-build.mk29 ## Commands for running tblgen to compile a td file
31 define transform-host-clang-td-to-out
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { argument
7 case 0: do { *to++ = *from++;
8 case 7: *to++ = *from++;
9 case 6: *to++ = *from++;
10 case 5: *to++ = *from++;
11 case 4: *to++ = *from++;
12 case 3: *to++ = *from++;
13 case 2: *to++ = *from++;
14 case 1: *to++ = *from++;
/external/icu/icu4c/source/common/
H A Ddtintrv.cpp23 DateInterval::DateInterval(UDate from, UDate to) argument
25 toDate(to)
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFind.java10 * Unless required by applicable law or agreed to in writing, software
34 public void run(String from, String to, DepHandler handler) throws IOException { argument
38 ClassPathIterator cp = new ClassPathIterator(curDir, to, null);

Completed in 1394 milliseconds

1234567891011>>