HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 951 - 975 of 1682) sorted by null

<<31323334353637383940>>

  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 599 static const char *source = "<source>"; variable
600 static const char *close_source = "</source>\n";
606 static const char *bin_source = "<bin-source>\n";
607 static const char *close_bin_source = "</bin-source>\n";
637 write_utf8_file(out, UnicodeString(source));
669 write_utf8_file(out, UnicodeString(source));
755 write_utf8_file(out, UnicodeString(source));
786 write_utf8_file(out, UnicodeString(source));
1018 const char* fileStart = "<file xml:space = \"preserve\" source-language = \""
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationRegressionTest.java 12 * Source File: $ICU4CRoot/source/test/intltest/regcoll.cpp
172 String source = tests[i]; local
189 logln(source);
192 compareResult = c.compare(source, target);
199 sourceKey = c.getCollationKey(source);
201 errln("Couldn't get collationKey for source");
213 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult );
217 void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey,
242 logln(msg1 + source + msg2 + target + msg3 + sResult)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
TestCharsetDetector.java 165 "Sure would be nice if our source could contain Unicode directly!";
186 String source = local
190 byte[] beBytes = source.getBytes("UnicodeBig");
191 byte[] leBytes = source.getBytes("UnicodeLittle");
    [all...]
  /external/iproute2/include/netinet/
tcp.h 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
65 u_int16_t th_sport; /* source port */
92 u_int16_t source; member in struct:tcphdr
  /external/iputils/
arping.c 79 char *source; variable
120 "Usage: arping [-fqbDUAV] [-c count] [-w timeout] [-I device] [-s source] destination\n"
135 " -s source : source ip address\n"
1047 source = optarg;
1114 if (source && inet_aton(source, &src) != 1) {
1115 fprintf(stderr, "arping: invalid source %s\n", source);
1200 fprintf(stderr, "arping: no source address in not-DAD mode\n")
    [all...]
  /external/kernel-headers/original/uapi/linux/
media.h 230 struct media_pad_desc source; member in struct:media_link_desc
  /external/libpcap/msdos/
pktdrvr.c 238 "Source hit"
1366 UCHAR *source; \/* source pointer for copy *\/ local
    [all...]
  /external/libtextclassifier/annotator/
types.h 2 * Copyright (C) 2018 The Android Open Source Project
258 enum class Source { OTHER, KNOWLEDGE, DURATION, DATETIME };
266 // The source of the annotation, used in conflict resolution.
267 Source source = Source::OTHER; member in struct:libtextclassifier3::AnnotatedSpan
  /external/libxml2/
xinclude.c 58 xmlNodePtr ref; /* the node making the reference in the source */
67 xmlDocPtr doc; /* the source document */
805 xmlDocPtr source, xmlNodePtr elem);
811 * @source: the document source
819 xmlDocPtr source, xmlNodePtr elem) {
822 if ((ctxt == NULL) || (target == NULL) || (source == NULL) ||
828 result = xmlXIncludeCopyNodeList(ctxt, target, source, elem->children);
838 * @source: the document source
1346 xmlDtdPtr target, source; local
    [all...]
  /external/lua/src/
lua.h 446 const char *source; /* (S) */ member in struct:lua_Debug
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_driver.h 96 const void *source; member in struct:nv50_ir_prog_info::__anon33402
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 465 * their source registers read from before any of the
469 * to one of the committed instruction's source register can be
546 /* If free_source < 0 then there are no free source
568 * source is already in the correct place. */
573 * presubtract source in the correct place. */
575 /*If this arg does not read from an rgb source,
582 if (dst_full->RGB.Arg[arg].Source == srcp_src)
583 dst_full->RGB.Arg[arg].Source = free_source;
587 else if(dst_full->RGB.Arg[arg].Source == free_source
589 dst_full->RGB.Arg[arg].Source = srcp_src
633 int source; local
    [all...]
  /external/mesa3d/src/glx/
glxcmds.c 553 ** Copy the source context to the destination context using the
560 struct glx_context *source = (struct glx_context *) source_user; local
567 if(apple_glx_copy_context(gc->driContext, source->driContext, dest->driContext,
590 ** If the source is the current context, send its tag so that the context
593 if (source == gc && dpy == gc->currentDpy) {
605 req->source = source ? source->xid : None;
    [all...]
  /external/mesa3d/src/mesa/main/
debug_output.c 75 enum mesa_debug_source source; member in struct:gl_debug_message
185 * client to filter in/out messages based on source, type, and ID. Of course,
215 enum mesa_debug_source source,
233 msg->source = source;
244 msg->source = MESA_DEBUG_SOURCE_OTHER;
544 * Sets the state of the given message source/type/ID tuple.
548 enum mesa_debug_source source,
556 ns = &debug->Groups[gstack]->Namespaces[source][type];
563 * 'source', 'type', and 'severity'. The _COUNT enum can be used fo
1112 enum mesa_debug_source source = gl_enum_to_debug_source(gl_source); local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 497 pixels, /* data source */
509 pixels, /* data source */
817 const void *source = _mesa_image_address2d(&clippedUnpack, pixels, local
822 type, source, &clippedUnpack,
831 (1 << 24) - 1, type, source,
    [all...]
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
JavaApiConverterTest.java 663 final Buffer source = new Buffer().writeUtf8(bodyText); local
664 final long contentLength = source.size();
674 @Override public BufferedSource source() { method in class:JavaApiConverterTest
675 return source;
  /external/openssh/
scp.c 21 * Redistribution and use in source and binary forms, with or without
24 * 1. Redistributions of source code must retain the above copyright
48 * Redistribution and use in source and binary forms, with or without
51 * 1. Redistributions of source code must retain the above copyright
365 void source(int, char *[]);
506 source(argc, argv);
699 source(1, argv + i);
758 source(int argc, char **argv) function
911 source(1, vect);
  /external/ppp/pppd/
options.c 6 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
86 const char *source; member in struct:option_value
672 opt->name, optopt, mainopt->source);
801 ovp->source = option_source;
829 mainopt->source = option_source;
839 * and source of the option value. Otherwise returns 0.
842 override_value(option, priority, source)
845 const char *source;
857 opt->source = source
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
MapForProto2Test.java 5 // Redistribution and use in source and binary forms, with or without
9 // * Redistributions of source code must retain the above copyright
80 private void copyMapValues(TestMap source, TestMap.Builder destination) {
82 .putAllInt32ToInt32Field(source.getInt32ToInt32Field())
83 .putAllInt32ToStringField(source.getInt32ToStringField())
84 .putAllInt32ToBytesField(source.getInt32ToBytesField())
85 .putAllInt32ToEnumField(source.getInt32ToEnumField())
86 .putAllInt32ToMessageField(source.getInt32ToMessageField())
87 .putAllStringToInt32Field(source.getStringToInt32Field());
325 TestMap source = sourceBuilder.build() local
    [all...]
UnknownFieldSetTest.java 5 // Redistribution and use in source and binary forms, with or without
9 // * Redistributions of source code must retain the above copyright
166 TestEmptyMessage source = local
189 .mergeFrom(source)
  /external/protobuf/src/google/protobuf/
api.pb.cc 2 // source: google/protobuf/api.proto
605 const Api* source = local
608 if (source == NULL) {
613 MergeFrom(*source);
1349 const Method* source = local
1862 const Mixin* source = local
    [all...]
struct.pb.cc 2 // source: google/protobuf/struct.proto
414 const Struct* source = local
417 if (source == NULL) {
422 MergeFrom(*source);
880 const Value* source = local
883 if (source == NULL) {
888 MergeFrom(*source);
1405 const ListValue* source = local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 2 // source: google/protobuf/compiler/plugin.proto
455 const CodeGeneratorRequest* source = local
458 if (source == NULL) {
463 MergeFrom(*source);
966 const CodeGeneratorResponse_File* source = local
1273 const CodeGeneratorResponse* source = local
    [all...]
  /external/python/cpython2/Modules/_ctypes/
callproc.c 1008 BSTR descr=NULL, helpfile=NULL, source=NULL; local
1039 pei->lpVtbl->GetSource(pei, &source);
1060 descr, source, helpfile, helpcontext,
1072 if (source)
1073 SysFreeString(source);
    [all...]
  /external/python/cpython2/Modules/
almodule.c 1362 int source, dest, nprops = 0, id, i; local
    [all...]

Completed in 1741 milliseconds

<<31323334353637383940>>