Searched defs:target (Results 101 - 125 of 690) sorted by relevance

1234567891011>>

/external/chromium/net/http/
H A Dhttp_auth_handler_basic.cc95 HttpAuth::Target target,
104 if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
93 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
H A Dhttp_auth_handler_factory_unittest.cc25 HttpAuth::Target target,
120 EXPECT_EQ(HttpAuth::AUTH_SERVER, handler->target());
147 EXPECT_EQ(HttpAuth::AUTH_PROXY, handler->target());
163 EXPECT_EQ(HttpAuth::AUTH_SERVER, handler->target());
179 EXPECT_EQ(HttpAuth::AUTH_SERVER, handler->target());
24 CreateAuthHandler(HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
H A Dhttp_auth_handler_ntlm_win.cc57 HttpAuth::Target target,
78 if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
55 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int digest_nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
/external/collada/include/dae/
H A DdaeSIDResolver.h52 * resolver will also do this if the sid target points to a <source> element which has a <float_array> as
53 * a child. If the sid target specifies a value, i.e. blah.X or blah(6), the resolver will attempt to
65 /** No target specified */
67 /** target specified but not resolved */
69 /** Resolution failed because target was not found */
81 * @param container The element which contains the target that you want to resolve.
82 * @param target The target string which needs to be resolved.
85 daeSIDResolver( daeElement *container, daeString target, daeString platform = NULL );
88 * Gets the target strin
147 std::string target; member in class:daeSIDResolver
[all...]
/external/emma/core/java12/com/vladium/util/
H A DFiles.java245 * Renames 'source' to 'target' [intermediate directories are created if necessary]. If
246 * 'target' exists and 'overwrite' is false, the method is a no-op. No exceptions are
253 * @param target target file descriptor [an existing target may get deleted
255 * @param overwrite if 'true', forces an existing target to be deleted
258 * @throws IllegalArgumentException if 'target' is null
260 public static boolean renameFile (final File source, final File target, final boolean overwrite) argument
264 if (target == null)
265 throw new IllegalArgumentException ("null input: target");
[all...]
H A DIntSet.java119 public void values (final int [] target, final int offset) argument
129 target [scan ++] = entry.m_key;
/external/freetype/src/base/
H A Dftglyph.c98 FT_BitmapGlyph target = (FT_BitmapGlyph)bitmap_target; local
101 target->left = source->left;
102 target->top = source->top;
104 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
163 FT_Outline* target = &glyph->outline; local
179 FT_Outline_Copy( source, target );
201 FT_OutlineGlyph target = (FT_OutlineGlyph)outline_target; local
207 source->outline.n_contours, &target->outline );
209 FT_Outline_Copy( &source->outline, &target->outline );
307 FT_Glyph *target )
[all...]
/external/guava/src/com/google/common/collect/
H A DEmptyImmutableSet.java45 @Override public boolean contains(Object target) { argument
H A DRegularImmutableList.java58 @Override public boolean contains(Object target) { argument
59 return indexOf(target) != -1;
91 @Override public int indexOf(Object target) { argument
92 if (target != null) {
94 if (array[i].equals(target)) {
102 @Override public int lastIndexOf(Object target) { argument
103 if (target != null) {
105 if (array[i].equals(target)) {
/external/icu4c/common/unicode/
H A Ducnv_err.h198 char *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon4716
199 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
214 UChar *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member in struct:__anon4717
215 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
/external/icu4c/common/
H A Dustr_cnv.c133 UChar *target = ucs1; local
139 &target,
151 if(target < (ucs1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
152 *target = 0; /* terminate */
205 char *target = s1; local
211 &target,
223 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
224 *target = 0; /* terminate */
/external/icu4c/i18n/
H A Dbms.cpp71 const UChar *target, int32_t targetLength,
84 if (target != NULL) {
85 bms->targetString = new UnicodeString(target, targetLength);
134 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status) argument
144 if (target != NULL) {
145 bms->targetString = new UnicodeString(target, targetLength);
69 bms_open(UCD *ucd, const UChar *pattern, int32_t patternLength, const UChar *target, int32_t targetLength, UErrorCode *status) argument
/external/icu4c/samples/numfmt/
H A Dutil.cpp31 // Append a hex string to the target
34 UnicodeString& target) {
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
40 return target;
46 UnicodeString target; local
47 target += (UChar)U_DQUOTE;
51 (target += (UChar)U_BACKSLASH) += (UChar)U_SMALL_U;
52 appendHex(ch, 4, target);
54 target += ch;
57 target
32 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/external/icu4c/test/intltest/
H A Dlocnmtst.cpp46 #define test_assert_equal(target,value) \
48 if (UnicodeString(target)!=(value)) { \
50 dataerrln("FAIL: " #target " == " #value " was not true. In " __FILE__ " on line %d", __LINE__); \
52 logln("PASS: asserted " #target " == " #value); \
104 const char *target = "English (Traditional Han, United States, VALLEY, " local
108 test_assert_equal(target, temp);
151 const char *target = "English (Traditional Han, United States, VALLEY, " local
159 test_assert_equal(target, str);
227 const char *target = "Root (Collation=Phonebook Sort Order)"; local
229 test_assert_equal(target, tem
[all...]
/external/iptables/extensions/
H A Dlibip6t_HL.c4 * Based on HW's ttl target
38 "HL target options\n"
69 static void HL_save(const void *ip, const struct xt_entry_target *target) argument
72 (struct ip6t_HL_info *) target->data;
89 static void HL_print(const void *ip, const struct xt_entry_target *target, argument
93 (struct ip6t_HL_info *) target->data;
H A Dlibip6t_REJECT.c58 "REJECT target options:\n"
97 static void REJECT_print(const void *ip, const struct xt_entry_target *target, argument
101 = (const struct ip6t_reject_info *)target->data;
110 static void REJECT_save(const void *ip, const struct xt_entry_target *target) argument
113 = (const struct ip6t_reject_info *)target->data;
H A Dlibipt_MASQUERADE.c19 "MASQUERADE target options:\n"
104 MASQUERADE_print(const void *ip, const struct xt_entry_target *target, argument
107 const struct nf_nat_multi_range *mr = (const void *)target->data;
122 MASQUERADE_save(const void *ip, const struct xt_entry_target *target) argument
124 const struct nf_nat_multi_range *mr = (const void *)target->data;
H A Dlibipt_NETMAP.c26 printf(MODULENAME" target options:\n"
65 static void NETMAP_print(const void *ip, const struct xt_entry_target *target, argument
68 const struct nf_nat_multi_range *mr = (const void *)target->data;
83 static void NETMAP_save(const void *ip, const struct xt_entry_target *target) argument
86 NETMAP_print(ip, target, 0);
H A Dlibipt_REDIRECT.c19 "REDIRECT target options:\n"
78 struct nf_nat_multi_range *mr = (void *)(*cb->target)->data;
107 static void REDIRECT_print(const void *ip, const struct xt_entry_target *target, argument
110 const struct nf_nat_multi_range *mr = (const void *)target->data;
123 static void REDIRECT_save(const void *ip, const struct xt_entry_target *target) argument
125 const struct nf_nat_multi_range *mr = (const void *)target->data;
H A Dlibipt_REJECT.c71 "REJECT target options:\n"
117 static void REJECT_print(const void *ip, const struct xt_entry_target *target, argument
121 = (const struct ipt_reject_info *)target->data;
130 static void REJECT_save(const void *ip, const struct xt_entry_target *target) argument
133 = (const struct ipt_reject_info *)target->data;
H A Dlibipt_SAME.c18 "SAME target options:\n"
103 static void SAME_print(const void *ip, const struct xt_entry_target *target, argument
107 const struct ipt_same_info *mr = (const void *)target->data;
134 static void SAME_save(const void *ip, const struct xt_entry_target *target) argument
137 const struct ipt_same_info *mr = (const void *)target->data;
H A Dlibipt_TTL.c1 /* Shared library add-on to iptables for the TTL target
37 "TTL target options\n"
68 static void TTL_save(const void *ip, const struct xt_entry_target *target) argument
71 (struct ipt_TTL_info *) target->data;
88 static void TTL_print(const void *ip, const struct xt_entry_target *target, argument
92 (struct ipt_TTL_info *) target->data;
H A Dlibxt_NFLOG.c34 printf("NFLOG target options:\n"
74 static void NFLOG_print(const void *ip, const struct xt_entry_target *target, argument
77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data;
82 static void NFLOG_save(const void *ip, const struct xt_entry_target *target) argument
84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data;
H A Dlibxt_TCPMSS.c1 /* Shared library add-on to iptables to add TCPMSS target support.
24 "TCPMSS target mutually-exclusive options:\n"
69 "TCPMSS target: At least one parameter is required");
72 static void TCPMSS_print(const void *ip, const struct xt_entry_target *target, argument
76 (const struct xt_tcpmss_info *)target->data;
83 static void TCPMSS_save(const void *ip, const struct xt_entry_target *target) argument
86 (const struct xt_tcpmss_info *)target->data;
H A Dlibxt_TCPOPTSTRIP.c2 * Shared library add-on to iptables to add TCPOPTSTRIP target support.
45 "TCPOPTSTRIP target options:\n"
131 tcpoptstrip_tg_print(const void *ip, const struct xt_entry_target *target, argument
135 (const void *)target->data;
142 tcpoptstrip_tg_save(const void *ip, const struct xt_entry_target *target) argument
145 (const void *)target->data;

Completed in 419 milliseconds

1234567891011>>