HomeSort by relevance Sort by last modified time
    Searched refs:Concat (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/chromium_org/tools/json_schema_compiler/
code_test.py 47 .Concat(b)
61 a.Concat(d)
63 a.Concat(c)
77 self.assertRaises(TypeError, c.Concat, d)
80 self.assertRaises(TypeError, c.Concat, d)
82 self.assertRaises(TypeError, c.Concat, d)
159 d.Concat(c)
features_h_generator.py 45 .Concat(cpp_util.OpenNamespace(self._namespace))
52 .Concat(self._GeneratePublicBody())
56 .Concat(self._GeneratePrivateBody())
72 .Concat(self._GenerateEnumConstants())
cpp_bundle_generator.py 73 c.Concat(body_code)
128 c.Concat(self._GenerateRegisterFunctions(namespace.name, function))
136 c.Concat(self._GenerateRegisterFunctions(namespace_types_name,
159 c.Concat(cpp_util.OpenNamespace(self._bundle._cpp_namespace))
167 c.Concat(cpp_util.CloseNamespace(self._bundle._cpp_namespace))
211 c.Concat(cpp_util.OpenNamespace(self._bundle._cpp_namespace))
213 c.Concat(self._bundle._GenerateFunctionRegistryRegisterAll())
215 c.Concat(cpp_util.CloseNamespace(self._bundle._cpp_namespace))
232 c.Concat(cpp_util.OpenNamespace(self._bundle._cpp_namespace))
243 c.Concat(cpp_util.CloseNamespace(self._bundle._cpp_namespace)
    [all...]
cc_generator.py 55 .Concat(cpp_util.OpenNamespace(self._cpp_namespace))
94 (c.Concat(self._type_helper.GetNamespaceEnd())
205 .Concat(self._GeneratePopulateVariableFromValue(
214 (c.Concat(self._GenerateError(
221 .Concat(self._GenerateError(
233 c.Concat(self._InitializePropertyToDefault(prop, 'out'))
237 c.Concat(self._GenerateTypePopulateProperty(prop, 'dict', 'out'))
243 .Concat(self._GenerateError('"found unexpected key \'" + '
257 .Concat(self._GeneratePopulateVariableFromValue(
290 .Concat(self._GeneratePopulatePropertyFromValue
    [all...]
h_generator.py 61 c.Concat(cpp_util.OpenNamespace(self._cpp_namespace))
73 c.Concat(self._type_helper.GetNamespaceStart())
112 (c.Concat(self._type_helper.GetNamespaceEnd())
113 .Concat(cpp_util.CloseNamespace(self._cpp_namespace))
295 .Concat(self._GenerateEventNameConstant(event))
296 .Concat(self._GenerateCreateCallbackArguments(event))
387 .Concat(self._GenerateCreateCallbackArguments(callback))
code.py 35 def Concat(self, obj):
63 self.Concat(code).Append()
features_cc_generator.py 40 .Concat(cpp_util.OpenNamespace(self._namespace))
dart_generator.py 112 (c.Concat(self._GenerateDocumentation(type_))
156 c.Concat(override if override is not None
204 c.Concat(self._GenerateDocumentation(prop))
279 c.Concat(self._GenerateDocumentation(f))
287 .Concat(self._GenerateProxiedFunction(f.callback, f.callback.name))
426 (c.Concat(self._GenerateDocumentation(event))
442 .Concat(self._GenerateProxiedFunction(event, 'callback'))
627 c.Concat(self._GenerateDocumentation(document_with))
  /external/chromium_org/extensions/renderer/
activity_log_converter_strategy.cc 129 v8::String::Concat(name, v8::String::NewFromUtf8(isolate, "Function"));
133 name = v8::String::Concat(name, v8::String::NewFromUtf8(isolate, " "));
134 name = v8::String::Concat(name, v8::Handle<v8::String>::Cast(fname));
135 name = v8::String::Concat(name, v8::String::NewFromUtf8(isolate, "()"));
138 name = v8::String::Concat(name, object->GetConstructorName());
140 name = v8::String::Concat(name, v8::String::NewFromUtf8(isolate, "]"));
  /external/chromium_org/third_party/re2/re2/
set.cc 57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
63 re = re2::Regexp::Concat(sub, 2, pf);
prefilter.cc 206 static Info* Concat(Info* a, Info* b);
303 Prefilter::Info* Prefilter::Info::Concat(Info* a, Info* b) {
566 info = Concat(info, LiteralLatin1(re->runes()[i]));
571 info = Concat(info, Literal(re->runes()[i]));
578 // Exact is concat of recent contiguous exact nodes.
592 exact = Concat(exact, ci);
  /external/regex-re2/re2/
set.cc 57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
63 re = re2::Regexp::Concat(sub, 2, pf);
prefilter.cc 206 static Info* Concat(Info* a, Info* b);
311 Prefilter::Info* Prefilter::Info::Concat(Info* a, Info* b) {
574 info = Concat(info, LiteralLatin1(re->runes()[i]));
579 info = Concat(info, Literal(re->runes()[i]));
586 // Exact is concat of recent contiguous exact nodes.
600 exact = Concat(exact, ci);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptString.cpp 72 return ScriptString(nonNullIsolate, v8::String::Concat(v8Value(), targetString));
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_path.cpp 21 m_Matrix.Concat(matrix);
fpdf_page_image.cpp 37 m_Matrix.Concat(matrix);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
concat.h 0 // concat.h
17 // Functions and classes to compute the concat of two FSTs.
39 void Concat(MutableFst<Arc> *fst1, const Fst<Arc> &fst2) {
85 void Concat(RationalFst<Arc> *fst1, const Fst<Arc> &fst2) {
rational.h 38 template <class A> void Concat(RationalFst<A> *fst1, const Fst<A> &fst2);
151 // Implementation of Concat(Fst &, RationalFst *)
161 Concat(&rfst_, afst);
193 friend void Concat<>(RationalFst<A> *fst1, const Fst<A> &fst2);
  /external/chromium_org/third_party/re2/re2/testing/
regexp_test.cc 35 Regexp* re = Regexp::Concat(&v[0], v.size(), Regexp::NoParseFlags);
  /external/llvm/unittests/ADT/
TwineTest.cpp 50 TEST(TwineTest, Concat) {
54 // Concat with null.
56 repr(Twine("hi").concat(Twine::createNull())));
58 repr(Twine::createNull().concat(Twine("hi"))));
60 // Concat with empty.
62 repr(Twine("hi").concat(Twine())));
64 repr(Twine().concat(Twine("hi"))));
68 repr(Twine("a").concat(Twine("b"))));
72 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))))
    [all...]
  /external/regex-re2/re2/testing/
regexp_test.cc 35 Regexp* re = Regexp::Concat(&v[0], v.size(), Regexp::NoParseFlags);
  /external/chromium_org/components/rappor/
byte_vector_utils.cc 24 std::string Concat(const ByteVector& value, char c, const std::string& data) {
64 if (!HMAC_Rotate(hmac1, Concat(*value, 0x00, provided_data), hmac2))
73 if (!HMAC_Rotate(*hmac2, Concat(*value, 0x01, provided_data), out_hmac))
  /external/chromium_org/third_party/skia/src/core/
SkRecordDraw.cpp 40 DRAW(Concat, concat(r.matrix));
41 DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
  /external/skia/src/core/
SkRecordDraw.cpp 40 DRAW(Concat, concat(r.matrix));
41 DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 135 image_matrix.Concat(text_matrix);
278 device_matrix.Concat(*pObj2Device);
299 text_matrix.Concat(*pObj2Device);
413 matrix.Concat(text_matrix);
414 matrix.Concat(*pObj2Device);
485 image_matrix.Concat(matrix);
744 matrix.Concat(font_size, 0, 0, font_size, charpos.m_OriginX, charpos.m_OriginY);

Completed in 1467 milliseconds

1 2 3 4