Searched defs:self (Results 176 - 200 of 316) sorted by relevance

1234567891011>>

/external/skia/src/fonts/
H A DSkFontMgr_indirect.cpp153 void SkFontMgr_Indirect::set_up_family_names(const SkFontMgr_Indirect* self) { argument
154 self->fFamilyNames.reset(self->fProxy->getFamilyNames());
/external/srec/portable/src/
H A DPANSIFileImpl.c34 ESR_ReturnCode PANSIFileCreateImpl(const LCHAR* filename, ESR_BOOL isLittleEndian, PFile** self) argument
68 *self = &impl->Interface.Interface;
76 ESR_ReturnCode PANSIFileDestroyImpl(PFile* self) argument
80 CHK(rc, PFileDestroyImpl(self));
81 FREE(self);
114 ESR_ReturnCode PANSIFileOpenImpl(PFile* self, const LCHAR* mode) argument
116 PANSIFileImpl* impl = (PANSIFileImpl*) self;
143 ESR_ReturnCode PANSIFileCloseImpl(PFile* self) argument
145 PANSIFileImpl* impl = (PANSIFileImpl*) self;
159 ESR_ReturnCode PANSIFileReadImpl(PFile* self, voi argument
198 PANSIFileWriteImpl(PFile* self, void* buffer, size_t size, size_t* count) argument
256 PANSIFileFlushImpl(PFile* self) argument
271 PANSIFileSeekImpl(PFile* self, long offset, int origin) argument
286 PANSIFileGetPositionImpl(PFile* self, size_t* position) argument
316 PANSIFileIsOpenImpl(PFile* self, ESR_BOOL* isOpen) argument
332 PANSIFileIsEOFImpl(PFile* self, ESR_BOOL* isEof) argument
361 PANSIFileIsErrorSetImpl(PFile* self, ESR_BOOL* isError) argument
377 PANSIFileClearErrorImpl(PFile* self) argument
387 PANSIFileFgetsImpl(PFile* self, LCHAR* string, int n, LCHAR** result) argument
406 PANSIFileFgetcImpl(PFile* self, LINT* result) argument
422 PANSIFileHideMemoryAllocation(PFile* self) argument
[all...]
H A DPFile.c28 ESR_ReturnCode PFileDestroy(PFile* self) argument
30 if (self == NULL)
35 return self->destroy(self);
38 ESR_ReturnCode PFileOpen(PFile* self, const LCHAR* mode) argument
40 if (self == NULL)
45 return self->open(self, mode);
48 ESR_ReturnCode PFileClose(PFile* self) argument
50 if (self
58 PFileRead(PFile* self, void* buffer, size_t size, size_t* count) argument
68 PFileWrite(PFile* self, void* buffer, size_t size, size_t* count) argument
78 PFileFlush(PFile* self) argument
88 PFileSeek(PFile* self, long offset, int origin) argument
99 PFileGetPosition(PFile* self, size_t* position) argument
109 PFileIsOpen(PFile* self, ESR_BOOL* isOpen) argument
119 PFileIsEOF(PFile* self, ESR_BOOL* isEof) argument
129 PFileGetFilename(PFile* self, LCHAR* filename, size_t* len) argument
142 PFileIsErrorSet(PFile* self, ESR_BOOL* isError) argument
152 PFileClearError(PFile* self) argument
162 PFileVfprintf(PFile* self, int* result, const LCHAR* format, va_list args) argument
175 PFileFgetc(PFile* self, LINT* result) argument
185 PFileFgets(PFile* self, LCHAR* string, int n, LCHAR** result) argument
195 PFileReadInt(PFile* self, int* value) argument
270 PFileReadLCHAR(PFile* self, LCHAR* value, size_t len) argument
450 pfgets(LCHAR* string, int n, PFile* self) argument
461 pfgetc(PFile* self) argument
[all...]
H A DPFileSystem.c324 ESR_ReturnCode PFileSystemCreatePFile(const LCHAR* filename, ESR_BOOL littleEndian, PFile** self) argument
331 if (filename == NULL || self == NULL)
342 rc = fileSystem->createPFile(fileSystem, absolutePath, littleEndian, self);
H A Dplog.c80 * @param self the PLogger.
90 static ESR_ReturnCode FileLoggerPrintf(PLogger *self, const LCHAR *format, ...) argument
92 FileLogger *p = STATIC_CAST(self, FileLogger, base);
102 static ESR_ReturnCode FileLoggerFlush(PLogger *self) argument
104 FileLogger *p = STATIC_CAST(self, FileLogger, base);
114 static void FileLoggerDestroy(PLogger *self) argument
116 FileLogger *p = STATIC_CAST(self, FileLogger, base);
/external/srec/shared/src/
H A DESR_Session.c296 ESR_SHARED_API ESR_ReturnCode ESR_SessionAddListener(ESR_SessionType* self, ESR_SessionTypeListenerPair* listener) argument
302 ESR_SHARED_API ESR_ReturnCode ESR_SessionRemoveListener(ESR_SessionType* self, ESR_SessionTypeListenerPair* listener) argument
/external/srec/srec/AcousticModels/src/
H A DAcousticModelsImpl.c252 ESR_ReturnCode SR_AcousticModelsLoad(const LCHAR* filename, SR_AcousticModels** self) argument
412 *self = (SR_AcousticModels*) impl;
422 ESR_ReturnCode SR_AcousticModels_Destroy(SR_AcousticModels* self) argument
424 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
471 ESR_ReturnCode SR_AcousticModels_Save(SR_AcousticModels* self, const LCHAR* filename) argument
473 /*SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;*/
479 ESR_ReturnCode SR_AcousticModels_SetParameter(SR_AcousticModels* self, const LCHAR* key, LCHAR* value) argument
481 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
515 ESR_ReturnCode SR_AcousticModels_GetParameter(SR_AcousticModels* self, const LCHAR* key, LCHAR* value, size_t* len) argument
517 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
542 SR_AcousticModels_GetCount(SR_AcousticModels* self, size_t* size) argument
553 SR_AcousticModels_GetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id, size_t* size) argument
560 SR_AcousticModels_SetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id) argument
567 SR_AcousticModels_GetArbdata(SR_AcousticModels* self) argument
580 SR_AcousticModels_SetupPattern(SR_AcousticModels* self, SR_Recognizer* recognizer) argument
654 SR_AcousticModels_UnsetupPattern(SR_AcousticModels* self) argument
[all...]
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.c144 DelayEstimator* self = (DelayEstimator*) handle; local
146 if (self == NULL) {
150 if (self->mean_far_spectrum != NULL) {
151 free(self->mean_far_spectrum);
152 self->mean_far_spectrum = NULL;
154 if (self->mean_near_spectrum != NULL) {
155 free(self->mean_near_spectrum);
156 self->mean_near_spectrum = NULL;
159 WebRtc_FreeBinaryDelayEstimator(self->binary_handle);
161 free(self);
170 DelayEstimator* self = NULL; local
220 DelayEstimator* self = (DelayEstimator*) handle; local
248 DelayEstimator* self = (DelayEstimator*) handle; local
295 DelayEstimator* self = (DelayEstimator*) handle; local
329 DelayEstimator* self = (DelayEstimator*) handle; local
[all...]
/external/aac/libAACdec/src/
H A Daacdecoder_lib.cpp119 setConcealMethod ( const HANDLE_AACDECODER self,
123 LINKSPEC_CPP AAC_DECODER_ERROR aacDecoder_GetFreeBytes ( const HANDLE_AACDECODER self, UINT *pFreeBytes){ argument
129 if(!self)
133 HANDLE_FDK_BITSTREAM hBs = transportDec_GetBitstream(self->hInput, 0);
144 LINKSPEC_CPP AAC_DECODER_ERROR aacDecoder_Config(HANDLE_AACDECODER self, const CSAudioSpecificConfig *pAscStruct) argument
148 /* Initialize AAC core decoder, and update self->streaminfo */
149 err = CAacDecoder_Init(self, pAscStruct);
155 HANDLE_AACDECODER self,
161 UINT layer, nrOfLayers = self->nrOfLayers;
165 errTp = transportDec_OutOfBandConfig(self
154 aacDecoder_ConfigRaw( HANDLE_AACDECODER self, UCHAR *conf[], const UINT length[] ) argument
194 HANDLE_AACDECODER self = (HANDLE_AACDECODER)handle; local
233 aacDecoder_AncDataInit( HANDLE_AACDECODER self, UCHAR *buffer, int size ) argument
244 aacDecoder_AncDataGet( HANDLE_AACDECODER self, int index, UCHAR **ptr, int *size ) argument
256 setConcealMethod( const HANDLE_AACDECODER self, const INT method ) argument
392 aacDecoder_SetParam( const HANDLE_AACDECODER self, const AACDEC_PARAM param, const INT value) argument
702 aacDecoder_Fill( HANDLE_AACDECODER self, UCHAR *pBuffer[], const UINT bufferSize[], UINT *pBytesValid ) argument
730 aacDecoder_SignalInterruption(HANDLE_AACDECODER self) argument
772 aacDecoder_EstimateNumberOfLostFrames(HANDLE_AACDECODER self) argument
781 aacDecoder_DecodeFrame( HANDLE_AACDECODER self, INT_PCM *pTimeData, const INT timeDataSize, const UINT flags) argument
[all...]
/external/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp1004 TRANSPORTDEC_ERROR GaSpecificConfig_Parse( CSGaSpecificConfig *self, argument
1011 self->m_frameLengthFlag = FDKreadBits(bs,1);
1013 self->m_dependsOnCoreCoder = FDKreadBits(bs,1);
1015 if( self->m_dependsOnCoreCoder )
1016 self->m_coreCoderDelay = FDKreadBits(bs,14);
1018 self->m_extensionFlag = FDKreadBits(bs,1);
1025 self->m_layer = FDKreadBits(bs,3);
1028 if (self->m_extensionFlag) {
1030 self->m_numOfSubFrame = FDKreadBits(bs,5);
1031 self
1163 AudioSpecificConfig_ExtensionParse(CSAudioSpecificConfig *self, HANDLE_FDK_BITSTREAM bs, CSTpCallBacks *cb) argument
1237 AudioSpecificConfig_Parse( CSAudioSpecificConfig *self, HANDLE_FDK_BITSTREAM bs, int fExplicitBackwardCompatible, CSTpCallBacks *cb ) argument
[all...]
/external/bison/src/
H A DAnnotationList.c54 * - <tt>self != NULL</tt>.
55 * - <tt>0 <= ci < self->inadequacyNode->contributionCount</tt>.
57 * - \c result = true iff contribution \c ci in \c self represents an
61 AnnotationList__isContributionAlways (AnnotationList const *self, argument
64 aver (0 <= ci && ci < self->inadequacyNode->contributionCount);
65 return self->contributions[ci] == NULL;
70 * - \c self is a single node.
71 * - \c self annotates the same state as every other node in \c list, and
74 * - If the list \c list already contains an identical annotation to \c self,
75 * \c self wa
98 AnnotationList__insertInto(AnnotationList *self, AnnotationList **list, size_t nitems) argument
218 AnnotationList__computePredecessorAnnotations(AnnotationList *self, state *s, bitsetv follow_kernel_items, bitsetv always_follows, state ***predecessors, bitset **item_lookahead_sets, AnnotationList **annotation_lists, AnnotationIndex *annotation_counts, struct obstack *annotations_obstackp) argument
577 AnnotationList__debug(AnnotationList const *self, size_t nitems, int spaces) argument
632 AnnotationList__computeLookaheadFilter(AnnotationList const *self, size_t nitems, bitsetv lookahead_filter) argument
672 AnnotationList__stateMakesContribution(AnnotationList const *self, size_t nitems, ContributionIndex ci, bitset *lookaheads) argument
693 AnnotationList__computeDominantContribution(AnnotationList const *self, size_t nitems, bitset *lookaheads, bool require_split_stable) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dnetwork_screen_handler.cc249 NetworkScreenHandler* const self = context->handler.get(); local
253 self->selected_language_code_ = requested_locale;
255 self->selected_language_code_ =
259 self->selected_language_code_ = loaded_locale;
262 self->ReloadLocalizedContent();
268 self->selected_language_code_);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_version.h226 typedef ServiceWorkerVersion self; typedef in class:content::ServiceWorkerVersion
/external/chromium_org/dbus/
H A Dobject_manager.cc250 ObjectManager* self = reinterpret_cast<ObjectManager*>(user_data); local
251 return self->HandleMessage(connection, raw_message);
/external/chromium_org/ppapi/utility/
H A Dcompletion_callback_factory.h576 Self* self = static_cast<Self*>(user_data); local
577 T* object = self->back_pointer_->GetObject();
582 (*self->dispatcher_)(object, result);
584 delete self;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromisePropertyTest.cpp36 NotReached* self = new NotReached(scriptState); local
37 return self->bindToV8Function();
59 StubFunction* self = new StubFunction(scriptState, value, callCount); local
60 return self->bindToV8Function();
H A DV8NPObject.cpp236 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate) argument
238 NPObject* npObject = v8ObjectToNPObject(self);
299 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
302 v8SetReturnValue(info, npObjectGetProperty(self, identifier, name, info.GetIsolate()));
305 void npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
308 v8SetReturnValue(info, npObjectGetProperty(self, identifier, v8::Number::New(info.GetIsolate(), index), info.GetIsolate()));
319 static v8::Handle<v8::Value> npObjectSetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> value, v8::Isolate* isolate) argument
321 NPObject* npObject = v8ObjectToNPObject(self);
358 void npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
361 v8SetReturnValue(info, npObjectSetProperty(self, identifie
364 npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DAsyncCallStackTracker.cpp62 OwnPtrWillBeRawPtr<ExecutionContextData> self = m_tracker->m_executionContextDataMap.take(executionContext()); local
63 ASSERT_UNUSED(self, self == this);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderCounter.cpp59 Element* self = toElement(object.node()); local
60 ASSERT(self);
61 Element* previous = ElementTraversal::previousIncludingPseudo(*self);
71 Element* self = toElement(object.node()); local
72 ASSERT(self);
73 Element* previous = ElementTraversal::pseudoAwarePreviousSibling(*self);
78 previous = self->parentElement();
96 Element* self = toElement(object.node()); local
97 ASSERT(self);
98 Element* next = skipDescendants ? ElementTraversal::nextIncludingPseudoSkippingChildren(*self, stayWithi
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileDataGrid.js62 if (columnIdentifier === "self" && this._searchMatchedSelfColumn)
94 if (columnIdentifier !== "self" && columnIdentifier !== "total")
139 "self-percent": formatPercent(this.selfPercent),
140 "self": formatMilliseconds(this.selfTime),
H A DCPUProfileView.js40 columns.push({id: "self", title: WebInspector.UIString("Self"), width: "120px", sort: WebInspector.DataGrid.Order.Descending, sortable: true});
478 "self": "selfTime",
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCacheTest.cpp208 UnreachableFunction* self = new UnreachableFunction(scriptState); local
209 return self->bindToV8Function();
227 TestFunction* self = new TestFunction(scriptState, outValue); local
228 return self->bindToV8Function();
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DVisitor.h74 static void trampoline(Visitor* visitor, void* self) { (reinterpret_cast<T*>(self)->*method)(visitor); } argument
170 static void trace(Visitor* visitor, void* self) argument
172 static_cast<T*>(self)->trace(visitor);
450 static void handleWeakCell(Visitor* self, void* obj) argument
453 if (*cell && !self->isAlive(*cell))
519 static void mark(Visitor* visitor, const T* self) argument
521 if (!self)
527 BaseHeapPage* heapPage = pageHeaderFromObject(self);
532 self
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Decho_cancellation.c106 static int ProcessNormal(aecpc_t* self,
114 static void ProcessExtended(aecpc_t* self,
421 aecpc_t* self = (aecpc_t*)handle; local
422 if (self->initFlag != initCheck) {
423 self->lastError = AEC_UNINITIALIZED_ERROR;
428 self->lastError = AEC_BAD_PARAMETER_ERROR;
431 self->skewMode = config.skewMode;
436 self->lastError = AEC_BAD_PARAMETER_ERROR;
441 self->lastError = AEC_BAD_PARAMETER_ERROR;
446 self
456 aecpc_t* self = (aecpc_t*)handle; local
475 aecpc_t* self = (aecpc_t*)handle; local
569 aecpc_t* self = handle; local
760 ProcessExtended(aecpc_t* self, const float* near, const float* near_high, float* out, float* out_high, int16_t num_samples, int16_t reported_delay_ms, int32_t skew) argument
890 EstBufDelayExtended(aecpc_t* self) argument
[all...]
/external/chromium_org/tools/clang/plugins/
H A DFindBadConstructsConsumer.cpp470 FindBadConstructsConsumer* self = local
490 self->GetNamespace(decl) == "base") {

Completed in 410 milliseconds

1234567891011>>