HomeSort by relevance Sort by last modified time
    Searched defs:prefix (Results 126 - 150 of 3101) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBenchmark.java 43 String prefix = local
45 String className = prefix + queueType + "BlockingQueue";
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
ConstantAffixModifier.java 8 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
12 // TODO: Avoid making a new instance by default if prefix and suffix are empty
15 private final String prefix; field in class:ConstantAffixModifier
26 * @param prefix
27 * The prefix string.
36 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) {
38 // TODO: Consider returning a null modifier if both prefix and suffix are empty.
39 this.prefix = (prefix == null ? "" : prefix);
    [all...]
  /external/libpcap/msdos/
makefile 66 bison --name-prefix=pcap_ --yacc --defines grammar.y
  /external/perf_data_converter/src/quipper/
scoped_temp_path_test.cc 28 // Temporary paths use this prefix by default. Copied from scoped_temp_path.cc.
89 const string prefix = "/tmp/foobar."; local
90 ScopedTempFile temp_file(prefix);
93 EXPECT_EQ(prefix.size() + kTemplateSuffixSize, path.size());
94 EXPECT_EQ(prefix, path.substr(0, prefix.size()));
134 const string prefix = "/tmp/foobar."; local
135 ScopedTempDir temp_path(prefix);
139 // Check prefix matches:
140 EXPECT_EQ(prefix.size() + kTemplateSuffixSize + 1, path.size())
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
field_mask_utility.cc 52 // Appends a FieldMask path segment to a prefix.
53 string AppendPathSegmentToPrefix(StringPiece prefix, StringPiece segment) {
54 if (prefix.empty()) {
58 return prefix.ToString();
60 // If the segment is a map key, appends it to the prefix without the ".".
62 return StrCat(prefix, segment);
64 return StrCat(prefix, ".", segment);
115 stack<string> prefix; local
184 string current_prefix = prefix.empty() ? "" : prefix.top()
    [all...]
  /external/skia/src/gpu/gl/
GrGLUniformHandler.cpp 44 // exactly what name it wants to use for the uniform view matrix. If we prefix anythings, then
48 char prefix = 'u'; local
50 prefix = '\0';
52 fProgramBuilder->nameVariable(uni.fVariable.accessName(), prefix, name, mangleName);
73 char prefix = 'u'; local
74 fProgramBuilder->nameVariable(&mangleName, prefix, name, true);
96 char prefix = 'u'; local
97 fProgramBuilder->nameVariable(&mangleName, prefix, name, true);
  /external/skqp/src/gpu/gl/
GrGLUniformHandler.cpp 44 // exactly what name it wants to use for the uniform view matrix. If we prefix anythings, then
48 char prefix = 'u'; local
50 prefix = '\0';
52 fProgramBuilder->nameVariable(uni.fVariable.accessName(), prefix, name, mangleName);
73 char prefix = 'u'; local
74 fProgramBuilder->nameVariable(&mangleName, prefix, name, true);
96 char prefix = 'u'; local
97 fProgramBuilder->nameVariable(&mangleName, prefix, name, true);
  /external/tensorflow/tensorflow/core/graph/
graph_constructor.h 63 // Name prefix to use for nodes imported from the GraphDef. For example, if
64 // prefix="animals" and GraphDef contains a node "bunny" then the node will be
66 // prefix in the graph.
67 string prefix; member in struct:tensorflow::ImportGraphDefOptions
71 // that this option has no effect if `prefix` is specified, since `prefix`
75 // If true, `prefix` will be modified if it already exists as a node name or
76 // prefix in the graph. If false, a conflicting prefix will be treated as an
77 // error. This option has no effect if `prefix` isn't specified
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
obfuscate_names.cc 81 string prefix; local
84 NodeNamePartsFromInput(input_name, &prefix, &input_node_name, &suffix);
89 string new_input_name = prefix + new_names[input_node_name] + suffix;
  /external/webrtc/webrtc/libjingle/xmllite/
xmlprinter.cc 68 std::pair<std::string, bool> prefix; local
69 prefix = ns_stack_->AddNewPrefix(element->Name().Namespace(), false);
70 if (prefix.second) {
71 new_ns.push_back(prefix.first);
76 prefix = ns_stack_->AddNewPrefix(attr->Name().Namespace(), true);
77 if (prefix.second) {
78 new_ns.push_back(prefix.first);
  /external/wpa_supplicant_8/src/eap_peer/
eap_gtc.c 16 int prefix; member in struct:eap_gtc_data
29 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
31 data->prefix = 1;
63 if (data->prefix &&
66 "expected prefix");
94 ret->methodState = data->prefix ? METHOD_MAY_CONT : METHOD_DONE;
102 if (data->prefix)
108 if (data->prefix) {
  /hardware/interfaces/media/omx/1.0/vts/functional/master/
VtsHalMediaOmxV1_0TargetMasterTest.cpp 109 // get node prefix
111 description("get node prefix");
112 hidl_string prefix; local
114 [&prefix](hidl_string const& _nl) { prefix = _nl; });
115 if (prefix.empty()) ALOGV("Warning, Node Prefix empty");
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS02.java 78 String prefix; local
84 prefix = newElement.getPrefix();
85 assertEquals("prefix", "emp", prefix);
prefix02.java 35 * returns the namespace prefix of this node, or null if unspecified.
72 String prefix; local
78 prefix = textNode.getPrefix();
79 assertNull("textNodePrefix", prefix);
prefix03.java 35 * returns the namespace prefix of this node, or null if it is unspecified.
74 String prefix; local
79 prefix = testEmployee.getPrefix();
80 assertEquals("prefix", "emp", prefix);
prefix04.java 35 * returns the namespace prefix of this node, or null if it is unspecified.
68 String prefix; local
72 prefix = testEmployee.getPrefix();
73 assertNull("throw_Null", prefix);
  /system/core/property_service/libpropertyinfoserializer/
property_info_serializer_test.cpp 68 auto prefix = test_node.prefix(0); local
69 EXPECT_STREQ("test", serialized_trie.data() + prefix->name_offset);
70 EXPECT_EQ(4U, prefix->namelen);
71 EXPECT_STREQ("2nd", property_info_area->context(prefix->context_index));
72 EXPECT_STREQ("2nd", property_info_area->type(prefix->type_index));
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
aarch64-reloc-property.cc 148 const char* prefix = NULL; local
152 prefix = arp->is_implemented() ? _("reloc ") : _("unimplemented reloc ");
155 prefix = _("dynamic reloc ");
160 return std::string(prefix) + arp->name();
  /bionic/libc/kernel/android/uapi/linux/netfilter_ipv4/
ipt_ULOG.h 36 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
49 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_shader.cpp 25 std::string prefix = "#version 100\n"; local
26 std::string string_with_prefix = prefix + shader_string;
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetConfigure.java 93 // Push widget update to surface with newly set prefix
106 // Write the prefix to the SharedPreferences object for this widget
113 // Read the prefix from the SharedPreferences object for this widget.
117 String prefix = prefs.getString(PREF_PREFIX_KEY + appWidgetId, null); local
118 if (prefix != null) {
119 return prefix;
  /device/google/contexthub/util/nanotool/
log.cpp 131 char prefix[20]; local
132 snprintf(prefix, sizeof(prefix), "%c %6.03f: ", Log::LevelAbbrev(level),
135 Log::logger_->Output(prefix);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Makefile 17 # make install prefix=$HOME
42 prefix = /usr/local macro
43 exec_prefix = ${prefix}
45 includedir = ${prefix}/include
46 mandir = ${prefix}/share/man
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
StaticInitMerger.java 48 private String prefix; field in class:StaticInitMerger
52 public StaticInitMerger(final String prefix, final ClassVisitor cv) {
54 this.prefix = prefix;
79 String n = prefix + counter++;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 72 String prefix = (indexOfNSSep >= 0) local
76 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);

Completed in 1277 milliseconds

1 2 3 4 56 7 8 91011>>