Searched refs:target (Results 276 - 300 of 1714) sorted by relevance

<<11121314151617181920>>

/external/icu4c/common/
H A Dunistr_cnv.cpp131 char *target,
133 return extract(start, length, target, dstSize, 0);
142 char *target,
147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
156 // Also, dstSize==0xffffffff means "unlimited" but if we use target+dstSize
158 // that compares less-than target.
165 char *targetLimit = (char *)U_MAX_PTR(target);
166 // U_MAX_PTR(target) returns a targetLimit that is at most 0x7fffffff
167 // greater than target and does not wrap around the top of the address space.
168 capacity = (int32_t)(targetLimit - target);
129 extract(int32_t start, int32_t length, char *target, uint32_t dstSize) const argument
140 extract(int32_t start, int32_t length, char *target, uint32_t dstSize, const char *codepage) const argument
[all...]
H A Ducnvmbcs.c590 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
956 * else return 0 after output has been written to the target
962 uint8_t **target, const uint8_t *targetLimit,
974 (char **)target, (char *)targetLimit,
1008 bytes, 4, (char **)target, (char *)targetLimit,
1023 * else return 0 after output has been written to the target
1029 UChar **target, const UChar *targetLimit,
1039 target, targetLimit,
1064 ucnv_toUWriteCodePoint(cnv, linear, target, targetLimit, offsets, sourceIndex, pErrorCode);
1888 UChar *target; local
959 _extFromU(UConverter *cnv, const UConverterSharedData *sharedData, UChar32 cp, const UChar **source, const UChar *sourceLimit, uint8_t **target, const uint8_t *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) argument
1026 _extToU(UConverter *cnv, const UConverterSharedData *sharedData, int8_t length, const uint8_t **source, const uint8_t *sourceLimit, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) argument
2040 UChar *target; local
2320 UChar *target; local
3261 uint8_t *target; local
3493 uint8_t *target; local
3669 uint8_t *target; local
3926 uint8_t *target; local
4865 uint8_t *target; local
5168 uint8_t *target; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DFASerializer.java97 // and then ordered by edge labels then by target state number :)
125 walkFANormalizingStateNumbers(edge.target); // keep walkin'
166 if ( edge.target instanceof DFAState ) {
169 ((DFAState)edge.target).getGatedPredicatesInNFAConfigurations();
180 int normalizedTargetStateNumber = edge.target.stateNumber;
183 (Integer)stateNumberTranslator.get(edge.target);
186 buf.append(getStateString(normalizedTargetStateNumber, edge.target));
191 walkSerializingFA(lines, edge.target);
/external/chromium/net/http/
H A Dhttp_auth_handler_mock.cc146 HttpAuthHandler* handler, HttpAuth::Target target) {
147 EXPECT_TRUE(handlers_[target].get() == NULL);
148 handlers_[target].reset(handler);
153 HttpAuth::Target target,
159 if (!handlers_[target].get())
161 scoped_ptr<HttpAuthHandler> tmp_handler(handlers_[target].release());
163 !tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
145 set_mock_handler( HttpAuthHandler* handler, HttpAuth::Target target) argument
151 CreateAuthHandler( HttpAuth::ChallengeTokenizer* challenge, HttpAuth::Target target, const GURL& origin, CreateReason reason, int nonce_count, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
/external/dbus/test/
H A Dunused-code-gc.py120 target = None
130 target = match.group(1)
154 elif target and current_sym:
155 match = funcname_re.match(target)
158 target = match.group(1)
159 if target == current_sym[0]:
162 current_sym[2].append (target)
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6_tables.h84 stuff 3) the target to perform if the rule matches */
93 /* Size of ipt_entry + matches + target */
102 /* The matches (if any), then the target. */
109 struct ip6t_standard_target target; member in struct:ip6t_standard
113 struct ip6t_entry_target target; member in struct:ip6t_error_target
119 struct ip6t_error_target target; member in struct:ip6t_error
131 .target = XT_TARGET_INIT(IP6T_STANDARD_TARGET, \
133 .target.verdict = -(__verdict) - 1, \
139 .target = XT_TARGET_INIT(IP6T_ERROR_TARGET, \
141 .target
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraint.java27 /** The constraint's target. */
28 protected final Feature target; field in class:Constraint
64 Spatial target = (Spatial) objectHelper.toObject(targetStructure, blenderContext);
65 this.target = new Feature(target, targetSpace, targetOMA, blenderContext);
67 this.target = null;
82 if(this.target != null) {
83 this.target.update();
116 * The space of target or owner transformation.
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.h77 void bindBuffer(GC3Denum target, WebGLBuffer*, ExceptionCode&);
78 void bindFramebuffer(GC3Denum target, WebGLFramebuffer*, ExceptionCode&);
79 void bindRenderbuffer(GC3Denum target, WebGLRenderbuffer*, ExceptionCode&);
80 void bindTexture(GC3Denum target, WebGLTexture*, ExceptionCode&);
87 void bufferData(GC3Denum target, GC3Dsizeiptr size, GC3Denum usage, ExceptionCode&);
88 void bufferData(GC3Denum target, ArrayBuffer* data, GC3Denum usage, ExceptionCode&);
89 void bufferData(GC3Denum target, ArrayBufferView* data, GC3Denum usage, ExceptionCode&);
90 void bufferSubData(GC3Denum target, GC3Dintptr offset, ArrayBuffer* data, ExceptionCode&);
91 void bufferSubData(GC3Denum target, GC3Dintptr offset, ArrayBufferView* data, ExceptionCode&);
93 GC3Denum checkFramebufferStatus(GC3Denum target);
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssembler.h108 void branchPtr(Condition cond, RegisterID op1, TrustedImmPtr imm, Label target) argument
110 branchPtr(cond, op1, imm).linkTo(target, this);
113 void branch32(Condition cond, RegisterID op1, RegisterID op2, Label target) argument
115 branch32(cond, op1, op2).linkTo(target, this);
118 void branch32(Condition cond, RegisterID op1, TrustedImm32 imm, Label target) argument
120 branch32(cond, op1, imm).linkTo(target, this);
123 void branch32(Condition cond, RegisterID left, Address right, Label target) argument
125 branch32(cond, left, right).linkTo(target, this);
128 void branch16(Condition cond, BaseIndex left, RegisterID right, Label target) argument
130 branch16(cond, left, right).linkTo(target, thi
133 branchTestPtr(Condition cond, RegisterID reg, Label target) argument
138 jump(Label target) argument
[all...]
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPluginContainerCheck.mm51 - (id)initWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)contextInfo /*optional*/
57 _target = [target copy];
68 + (id)checkWithRequest:(NSURLRequest *)request target:(NSString *)target resultObject:(id)obj selector:(SEL)selector controller:(id <WebPluginContainerCheckController>)controller contextInfo:(id)contextInfo /*optional*/
70 return [[[self alloc] initWithRequest:request target:target resultObject:obj selector:selector controller:controller contextInfo:contextInfo] autorelease];
142 // would target existing frame
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DInternal.h93 void bindBuffer(GC3Denum target, Platform3DObject);
94 void bindFramebuffer(GC3Denum target, Platform3DObject);
95 void bindRenderbuffer(GC3Denum target, Platform3DObject);
96 void bindTexture(GC3Denum target, Platform3DObject);
103 void bufferData(GC3Denum target, GC3Dsizeiptr size, GC3Denum usage);
104 void bufferData(GC3Denum target, GC3Dsizeiptr size, const void* data, GC3Denum usage);
105 void bufferSubData(GC3Denum target, GC3Dintptr offset, GC3Dsizeiptr size, const void* data);
107 GC3Denum checkFramebufferStatus(GC3Denum target);
115 void copyTexImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Dint border);
116 void copyTexSubImage2D(GC3Denum target, GC3Din
[all...]
/external/libxml2/
H A Dtriostr.c167 Append @p source at the end of @p target.
169 @param target Target string.
173 @pre @p target must point to a memory chunk with sufficient room to
174 contain the @p target string and @p source string.
177 @post @p target will be zero terminated.
181 TRIO_ARGS2((target, source),
182 char *target,
185 assert(target);
188 return (strcat(target, source) != NULL);
194 Append at most @p max characters from @p source to @p target
180 trio_append(target, source), char *target, TRIO_CONST char *source argument
209 trio_append_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
268 trio_copy(target, source), char *target, TRIO_CONST char *source argument
297 trio_copy_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
322 char *target; local
595 trio_format_date_max(target, max, format, datetime), char *target, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
702 trio_lower(target), char *target argument
829 trio_span_function(target, source, Function), char *target, TRIO_CONST char *source, int (*Function) TRIO_PROTO((int)) argument
1237 trio_upper(target), char *target argument
[all...]
/external/icu4c/samples/ucnv/
H A Dconvsamp.cpp174 targetSize must be set to the amount of space available in the target
176 len will contain the number of bytes in target[] which were
209 char target[100]; local
219 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
230 printBytes("targ", target, len);
301 UChar *target; local
336 target = uBuf;
339 ucnv_toUnicode(conv, &target, targetLimit,
347 // simply ran out of space - we'll reset the target ptr the next
361 for(p = uBuf; p<target;
532 UChar target[100]; local
572 UChar32 target; local
882 UChar *target; local
987 char *target; local
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebGraphicsContext3D.h138 // Copies the contents of the off-screen render target used by the WebGL
155 virtual void* mapBufferSubDataCHROMIUM(WGC3Denum target, WGC3Dintptr offset, WGC3Dsizeiptr size, WGC3Denum access) = 0;
157 virtual void* mapTexSubImage2DCHROMIUM(WGC3Denum target, WGC3Dint level, WGC3Dint xoffset, WGC3Dint yoffset, WGC3Dsizei width, WGC3Dsizei height, WGC3Denum format, WGC3Denum type, WGC3Denum access) = 0;
169 virtual void renderbufferStorageMultisampleCHROMIUM(WGC3Denum target, WGC3Dsizei samples, WGC3Denum internalformat, WGC3Dsizei width, WGC3Dsizei height) = 0;
183 virtual void bindBuffer(WGC3Denum target, WebGLId buffer) = 0;
184 virtual void bindFramebuffer(WGC3Denum target, WebGLId framebuffer) = 0;
185 virtual void bindRenderbuffer(WGC3Denum target, WebGLId renderbuffer) = 0;
186 virtual void bindTexture(WGC3Denum target, WebGLId texture) = 0;
193 virtual void bufferData(WGC3Denum target, WGC3Dsizeiptr size, const void* data, WGC3Denum usage) = 0;
194 virtual void bufferSubData(WGC3Denum target, WGC3Dintpt
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dtabs.js86 var target = e.target;
87 if (e.newValue && getTabBox(target) == this) {
88 var index = Array.prototype.indexOf.call(target.parentElement.children,
89 target);
/external/chromium-trace/src/shared/js/cr/ui/
H A Dtabs.js86 var target = e.target;
87 if (e.newValue && getTabBox(target) == this) {
88 var index = Array.prototype.indexOf.call(target.parentElement.children,
89 target);
H A Doverlay.js30 if (!page || page.contains(e.target))
93 // Only pulse if the overlay was the target of the click.
94 if (this != e.target)
103 e.target.classList.remove('pulse');
/external/icu4c/i18n/unicode/
H A Dcoll.h217 * LESS is returned if source string is compared to be less than target
219 * EQUAL is returned if source string is compared to be equal to target
222 * target string in the compare() method.
344 * @param target the string that is to be compared with the source string.
346 * than target; EQUAL if source is equal to target; LESS if source is less
347 * than target
351 const UnicodeString& target) const;
358 * @param target the string that is to be compared with the source string.
361 * than target; UCOL_EQUA
[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, United States, VALLEY, " local
108 test_assert_equal(target, temp);
151 const char *target = "English (Traditional, United States, VALLEY, " local
159 test_assert_equal(target, str);
227 const char *target = "Root (Sort Order=Phonebook Sort Order)"; local
229 test_assert_equal(target, tem
[all...]
/external/icu4c/test/perf/
H A DMakefile.in60 target=`echo $@ | sed s/-recursive//`; \
62 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
65 local_target="$$target-local"; \
67 local_target="$$target"; \
72 $(MAKE) "$$target-local" || exit; \
/external/skia/src/ports/
H A DSkFontHost_FONTPATH.cpp138 const FontFamilyRec* find_family_rec(const char target[]) argument
146 TRACE_FONT_NAME(printf("----------------- font request <%s>", target);)
148 if (contains_only_ascii(target))
152 target, sizeof(gMatches[0]));
163 if (strstr(target, "sans") || strstr(target, "Sans"))
168 if (strstr(target, "serif") || strstr(target, "Serif"))
173 if (strstr(target, "mono") || strstr(target, "Mon
[all...]
/external/srec/portable/src/
H A DLCHAR.c43 ESR_ReturnCode lstrinsert(const LCHAR* source, LCHAR* target, size_t offset, size_t* len) argument
47 if (source == NULL || target == NULL || len == NULL)
53 if (LSTRLEN(source) + LSTRLEN(target) + 1 > *len)
55 *len = LSTRLEN(source) + LSTRLEN(target) + 1;
60 memmove(target + offset + LSTRLEN(source), target + offset, LSTRLEN(target + offset) + 1);
61 LSTRNCPY(target + offset, source, LSTRLEN(source));
67 ESR_ReturnCode lstrreplace(LCHAR* text, const LCHAR source, const LCHAR target) argument
76 *index = target;
[all...]
/external/webkit/Source/WebCore/plugins/
H A Dnpapi.cpp72 NPError NPN_GetURLNotify(NPP instance, const char* url, const char* target, void* notifyData) argument
74 return pluginViewForInstance(instance)->getURLNotify(url, target, notifyData);
77 NPError NPN_GetURL(NPP instance, const char* url, const char* target) argument
79 return pluginViewForInstance(instance)->getURL(url, target);
82 NPError NPN_PostURLNotify(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) argument
84 return pluginViewForInstance(instance)->postURLNotify(url, target, len, buf, file, notifyData);
87 NPError NPN_PostURL(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file) argument
89 return pluginViewForInstance(instance)->postURL(url, target, len, buf, file);
92 NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream) argument
94 return pluginViewForInstance(instance)->newStream(type, target, strea
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DACyclicDFACodeGenerator.java89 description = parentGenerator.target.getTargetStringLiteralFromString(description);
100 //System.out.println("edge "+s.stateNumber+"-"+edge.label.toString()+"->"+edge.target.stateNumber);
104 EOTTarget = (DFAState)edge.target;
108 edge.target.stateNumber+" predicates alt "+
132 DFAState target = (DFAState)edge.target;
134 target.getGatedPredicatesInNFAConfigurations();
136 //System.out.println("preds="+target.getGatedPredicatesInNFAConfigurations());
147 (DFAState)edge.target,
166 // Note: these predicates emanate from the EOT target stat
[all...]
/external/icu4c/i18n/
H A Dbms.cpp73 const UChar *target, int32_t targetLength,
86 if (target != NULL) {
87 bms->targetString = new UnicodeString(target, targetLength);
136 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status) argument
146 if (target != NULL) {
147 bms->targetString = new UnicodeString(target, targetLength);
71 bms_open(UCD *ucd, const UChar *pattern, int32_t patternLength, const UChar *target, int32_t targetLength, UErrorCode *status) argument

Completed in 688 milliseconds

<<11121314151617181920>>