OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Convert
(Results
1 - 25
of
34
) sorted by null
1
2
/external/openfst/src/script/
convert.cc
20
#include <fst/script/
convert
.h>
25
FstClass *
Convert
(const FstClass &ifst, const string &new_type) {
29
Apply<Operation<ConvertArgs> >("
Convert
", ifst.ArcType(),
35
REGISTER_FST_OPERATION(
Convert
, StdArc, ConvertArgs);
36
REGISTER_FST_OPERATION(
Convert
, LogArc, ConvertArgs);
37
REGISTER_FST_OPERATION(
Convert
, Log64Arc, ConvertArgs);
/external/chromium_org/content/common/
inter_process_time_ticks_converter.cc
47
DCHECK_EQ(target_range,
Convert
(source_range));
65
return LocalTimeDelta(
Convert
(remote_delta.value_));
68
int64 InterProcessTimeTicksConverter::
Convert
(int64 value) const {
/external/openfst/src/include/fst/script/
convert.h
32
void
Convert
(ConvertArgs *args) {
36
Fst<Arc> *result =
Convert
(fst, new_type);
42
%newobject
Convert
;
44
FstClass *
Convert
(const FstClass& f, const string &new_type);
fst-class.h
232
static FstClassImplBase *
Convert
(const FstClass &other) {
233
LOG(ERROR) << "Doesn't make sense to
convert
any class to type FstClass.";
313
static MutableFstClass *Read(const string &fname, bool
convert
= false);
325
static FstClassImplBase *
Convert
(const FstClass &other) {
326
LOG(ERROR) << "Doesn't make sense to
convert
any class to type "
369
static FstClassImplBase *
Convert
(const FstClass &other) {
/external/chromium_org/tools/cygprofile/
mergetraces.py
95
def
Convert
(call_lines, startAddr, endAddr):
167
trace_calls =
Convert
(trace_calls, trace_start, trace_end)
/external/chromium_org/media/base/
audio_converter.cc
158
void AudioConverter::
Convert
(AudioBus* dest) {
/external/openfst/src/include/fst/
register.h
104
&FstRegisterer<F>::
Convert
);
107
static Fst<Arc> *
Convert
(const Fst<Arc> &fst) { return new F(fst); }
118
Fst<A> *
Convert
(const Fst<A> &fst, const string &ftype) {
124
LOG(ERROR) << "Fst::
Convert
: Unknown FST type \"" << ftype
/external/chromium_org/components/policy/core/browser/
policy_error_map.cc
131
Convert
(error);
137
void PolicyErrorMap::
Convert
(const PendingError& error) {
163
Convert
(pending_[i]);
configuration_policy_handler.cc
159
Convert
(value, NULL, errors);
169
if (value &&
Convert
(value, list.get(), NULL))
173
bool StringToIntEnumListPolicyHandler::
Convert
(const base::Value* input,
/external/chromium_org/third_party/libjingle/source/talk/media/base/
screencastid.h
67
static cricket::ScreencastIdList
Convert
(const std::vector<T>& list) {
/external/chromium_org/chrome/browser/local_discovery/
pwg_raster_converter.cc
115
void
Convert
(base::RefCountedMemory* data,
154
void PwgUtilityProcessHostClient::
Convert
(
279
utility_client_->
Convert
(data, callback_.callback());
/external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc
148
static v8::Handle<v8::Value>
Convert
(int32_t value, v8::Isolate* isolate) {
153
static v8::Handle<v8::Value>
Convert
(float value, v8::Isolate*) {
158
static v8::Handle<v8::Value>
Convert
(double value, v8::Isolate*) {
177
v8::Handle<v8::Value> expected =
Convert
(value, helper->isolate_);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h
101
///
Convert
- Create a new persistent APSInt with the same value as 'From'
103
const llvm::APSInt &
Convert
(const llvm::APSInt& To,
109
return getValue(TargetType.
convert
(From));
112
const llvm::APSInt &
Convert
(QualType T, const llvm::APSInt &From) {
117
return getValue(TargetType.
convert
(From));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h
141
entry.converter = &FstRegisterer<F>::
Convert
;
147
static Fst<Arc> *
Convert
(const Fst<Arc> &fst) { return new F(fst); }
158
Fst<A> *
Convert
(const Fst<A> &fst, const string &ftype) {
164
LOG(ERROR) << "Fst::
Convert
: Unknown FST type \"" << ftype
/external/chromium_org/base/json/
json_value_converter.h
44
//
Convert
() method.
47
// converter.
Convert
(json, &message);
49
//
Convert
() returns false when it fails. Here "fail" means that the value is
52
// Also note that
Convert
() will modify the passed |message| even when it
72
// and specify a function to
convert
a StringPiece to your type.
111
virtual bool
Convert
(const base::Value& value, FieldType* field) const = 0;
127
return value_converter_->
Convert
(value, &(dst->*field_pointer_));
144
virtual bool
Convert
(const base::Value& value, int* field) const OVERRIDE {
157
virtual bool
Convert
(
171
virtual bool
Convert
(
[
all
...]
json_parser.cc
43
// First deep copy to
convert
JSONStringValue to std::string and swap that
67
// to
convert
any JSONStringValues to std::string.
93
// First deep copy to
convert
JSONStringValue to std::string and swap that
113
// to
convert
any JSONStringValues to std::string.
315
void JSONParser::StringBuilder::
Convert
() {
333
Convert
();
598
string.
Convert
();
630
string.
Convert
();
745
// Used to
convert
the UTF-16 code units to a code point and then to a UTF-8
799
dest->
Convert
();
[
all
...]
/external/chromium_org/content/renderer/media/
media_stream_audio_processor.cc
64
// And it must be the same thread as calling
Convert
().
69
bool
Convert
(webrtc::AudioFrame* out) {
78
//
Convert
10ms data to the output format, this will trigger ProvideInput().
79
audio_converter_.
Convert
(audio_wrapper_.get());
108
// TODO(xians): Figure out why the first
Convert
() triggers ProvideInput
174
while (render_converter_->
Convert
(&render_frame_))
185
if (!capture_converter_->
Convert
(&capture_frame_))
/external/chromium_org/ppapi/proxy/
serialized_var.cc
376
SerializedVar SerializedVarReturnValue::
Convert
(Dispatcher* dispatcher,
428
//
Convert
the array written by the pepper code to the serialized structure.
/external/chromium/base/
string_number_conversions.cc
99
// Utility to
convert
a character to a digit in a given base
106
static bool
Convert
(CHAR c, uint8* digit) {
118
static bool
Convert
(CHAR c, uint8* digit) {
133
return BaseCharToDigit<CHAR, BASE, BASE <= 10>::
Convert
(c, digit);
498
//
convert
to 8-bit and then use the 8-bit version.
/external/chromium_org/base/strings/
string_number_conversions.cc
102
// Utility to
convert
a character to a digit in a given base
109
static bool
Convert
(CHAR c, uint8* digit) {
121
static bool
Convert
(CHAR c, uint8* digit) {
136
return BaseCharToDigit<CHAR, BASE, BASE <= 10>::
Convert
(c, digit);
485
//
convert
to 8-bit and then use the 8-bit version.
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp
36
struct
Convert
{
37
constexpr
Convert
(T v) : v(v) {}
41
template<typename T>
Convert
<T> ConvertVar();
59
Agg<char> ce1 = {
Convert
<float>(1.0) }; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{override}}
105
Agg<float> ce1 = {
Convert
<double>(1e300) }; // expected-warning {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{override}}
126
Agg<float> ce1 = {
Convert
<int>(123456789) }; // expected-warning {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{override}}
169
Agg<short> ce1 = {
Convert
<int>(100000) }; // expected-warning {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{override}} expected-warning {{changes value from 100000 to -31072}}
p7-0x.cpp
35
struct
Convert
{
36
constexpr
Convert
(T v) : v(v) {}
40
template<typename T>
Convert
<T> ConvertVar();
58
Agg<char> ce1 = {
Convert
<float>(1.0) }; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{override}}
104
Agg<float> ce1 = {
Convert
<double>(1e300) }; // expected-error {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{override}}
125
Agg<float> ce1 = {
Convert
<int>(123456789) }; // expected-error {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{override}}
168
Agg<short> ce1 = {
Convert
<int>(100000) }; // expected-error {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{override}} expected-warning {{changes value from 100000 to -31072}}
/external/chromium_org/content/browser/speech/
speech_recognizer_impl.cc
43
scoped_refptr<AudioChunk>
Convert
(const uint8* data, size_t size);
134
scoped_refptr<AudioChunk> SpeechRecognizerImpl::OnDataConverter::
Convert
(
142
audio_converter_.
Convert
(output_bus_.get());
159
// to
Convert
(). If so, we have a serious issue in our design since we might
275
//
Convert
audio from native format to fixed format used by WebSpeech.
277
event_args.audio_data = audio_converter_->
Convert
(data, size);
545
// and the idea is to simplify the audio conversion since each
Convert
()
/external/chromium_org/v8/src/
api.h
284
static inline Local<To>
Convert
(v8::internal::Handle<From> obj) {
328
return Utils::
Convert
<v8::internal::Object, T>(obj);
336
return
Convert
<v8::internal::From, v8::To>(obj); \
344
return
Convert
<v8::internal::JSTypedArray, v8::TypedArray>(obj); \
/external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py
632
# If the callee does not care about tabs we simply
convert
them to
[
all
...]
Completed in 474 milliseconds
1
2