/external/webkit/WebCore/platform/qt/ |
CursorQt.cpp | 113 static Cursors* self(); 143 Cursors* Cursors::self() function in class:WebCore::__anon6522::Cursors 155 return Cursors::self()->PointerCursor; 160 return Cursors::self()->MoveCursor; 165 return Cursors::self()->CrossCursor; 170 return Cursors::self()->PointingHandCursor; 175 return Cursors::self()->IBeamCursor; 180 return Cursors::self()->WaitCursor; 185 return Cursors::self()->WhatsThisCursor; 190 return Cursors::self()->SizeHorCursor [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
abstractsequencedcommand.py | 35 def __init__(self): 36 self._sequence = StepSequence(self.steps) 37 AbstractDeclarativeCommand.__init__(self, self._sequence.options()) 39 def _prepare_state(self, options, args, tool): 42 def execute(self, options, args, tool): 43 self._sequence.run_and_handle_errors(tool, options, self._prepare_state(options, args, tool))
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
run_chromium_webkit_tests.py | 92 def __init__(self, port, filename, timeout): 98 self.filename = filename 99 self.uri = port.filename_to_uri(filename) 100 self.timeout = timeout 103 self.image_hash = open(expected_hash_file, "r").read() 107 self.image_hash = None 116 def __init__(self, expectations, test_files): 117 self.total = len(test_files) 118 self.remaining = self.tota [all...] |
/external/srec/shared/include/ |
HashMapImpl.h | 50 ESR_SHARED_API ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value); 54 ESR_SHARED_API ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key); 58 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFree(HashMap* self, const LCHAR* key); 62 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAtIndex(HashMap* self, const size_t index); 66 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAll(HashMap* self); 70 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFreeAll(HashMap* self); 74 ESR_SHARED_API ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists); 78 ESR_SHARED_API ESR_ReturnCode HashMap_Get(HashMap* self, const LCHAR* key, void** value); 82 ESR_SHARED_API ESR_ReturnCode HashMap_GetKeyAtIndex(HashMap* self, const size_t index, LCHAR** key); 86 ESR_SHARED_API ESR_ReturnCode HashMap_GetValueAtIndex(HashMap* self, const size_t index, void** value) [all...] |
/external/srec/srec/Grammar/include/ |
SR_GrammarImpl.h | 55 * @param self SR_Grammar handle 58 // ESR_ReturnCode(*setupAcousticModels)(SR_Grammar* self, SR_AcousticModels* models); 59 ESR_ReturnCode(*setupRecognizer)(SR_Grammar* self, SR_Recognizer* recognizer); 63 * @param self SR_Grammar handle 65 ESR_ReturnCode(*unsetupRecognizer)(SR_Grammar* self); 118 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_CompileRule(SR_Grammar* self, const LCHAR* name); 122 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_AddRuleFromList(SR_Grammar* self, SR_Vocabulary* vocabulary, const LCHAR* name); 126 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_Compile(SR_Grammar* self); 130 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_AddRule(SR_Grammar* self, const LCHAR* name, const LCHAR* value); 134 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_DeleteRule(SR_Grammar* self, const LCHAR* name) [all...] |
SR_Grammar.h | 92 * @param self SR_Grammar handle 95 ESR_ReturnCode(*compile)(struct SR_Grammar_t* self); 100 * @param self SR_Grammar handle 102 * @return ESR_INVALID_ARGUMENT if self or filename are null; ESR_INVALID_STATE if could not save the grammar 104 ESR_ReturnCode(*save)(struct SR_Grammar_t* self, const LCHAR* filename); 109 * @param self SR_Grammar handle 113 * @return ESR_INVALID_ARGUMENT if self or transcription are null; ESR_INVALID_STATE if an internal error has occured. 115 ESR_ReturnCode(*checkParse)(struct SR_Grammar_t* self, const LCHAR* transcription, SR_SemanticResult** result, size_t* resultCount); 120 * @param self SR_Grammar handle 126 * @return ESR_INVALID_ARGUMENT if self is null; ESR_INVALID_STATE if the vocabulary is missing, [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebWindowAnimation.m | 58 self = [super init]; 59 if (!self) 62 [self setAnimationBlockingMode:NSAnimationNonblockingThreaded]; 64 [self setFrameRate:60.]; 65 return self; 70 self = [self init]; 71 if (!self) 78 return self; 99 return 0.5 - 0.5 * cos(M_PI * (1 - [self currentProgress])) [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetFile.py | 94 def __init__ (self, segname, filename, start=None, end=None, length=None, output=None, quantize=None, jetevents=[], dlsfile=None, dump_file=None, transpose=0, repeat=0, mute_flags=0):
95 self.segname = segname
96 self.filename = filename
97 self.dlsfile = dlsfile
98 self.start = start
99 self.end = end
100 self.length = length
101 self.output = output
102 self.quantize = quantize
103 self.dump_file = dump_file [all...] |
/external/webkit/WebCore/bindings/objc/ |
WebScriptObject.mm | 110 WebCoreObjCFinalizeOnMainThread(self); 148 WebCore::addJSWrapper(self, imp); 178 self = [super init]; 180 [self _setImp:imp originRootObject:originRootObject rootObject:rootObject]; 182 return self; 190 [self _initializeScriptDOMNodeImp]; 191 return [self _rootObject] ? _private->imp : 0; 213 RootObject *root = [self _rootObject]; 228 if (WebCoreObjCScheduleDeallocateOnMainThread([WebScriptObject class], self)) 280 if (![self _isSafeScript] [all...] |
/external/srec/portable/src/ |
PFileWrap.c | 32 ESR_ReturnCode PFileClose( PFile *self ) 35 fclose ( (FILE *)self ); 41 ESR_ReturnCode PFileRead ( PFile *self, void *buffer, size_t size, size_t *count ) 47 items_read = fread ( buffer, size, *count, (FILE *)self ); 56 ferror_status = ferror ( (FILE *)self ); 73 ESR_ReturnCode PFileWrite ( PFile *self, const void *buffer, size_t size, size_t *count ) 78 items_written = fwrite ( buffer, size, *count, (FILE *)self ); 94 ESR_ReturnCode PFileFlush ( PFile *self ) 99 flush_ok = fflush ( (FILE *)self ); 114 ESR_ReturnCode PFileSeek ( PFile *self, long offset, int origin [all...] |
/external/srec/srec/Semproc/src/ |
SymbolTable.c | 53 ESR_ReturnCode ST_Free(SymbolTable *self) 57 if (self == NULL) 65 ST_reset(self); 68 if (self->hashmap) 69 CHKLOG(rc, HashMapDestroy(self->hashmap)); 72 if (self != NULL) 73 FREE(self); 79 ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value) 85 if (self == NULL || key == NULL || value == NULL) 92 rc = HashMapGet(self->hashmap, key, (void**) & buf) [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/ |
test_failures.py | 78 def result_html_output(self, filename): 82 def should_kill_test_shell(self): 87 def relative_output_filename(self, filename, modifier): 111 def __init__(self, test_type): 112 TestFailure.__init__(self) 114 self._test_type = test_type 119 def output_links(self, filename, out_names): 131 uris = [self.relative_output_filename(filename, fn) for 143 def result_html_output(self, filename): 144 return self.message() + self.output_links(filename, self.OUT_FILENAMES [all...] |
/external/srec/portable/include/ |
PANSIFileImpl.h | 52 PORTABLE_API ESR_ReturnCode PANSIFileCreateImpl(const LCHAR* filename, ESR_BOOL isLittleEndian, PFile** self); 57 PORTABLE_API ESR_ReturnCode PANSIFileDestroyImpl(PFile* self); 62 PORTABLE_API ESR_ReturnCode PANSIFileOpenImpl(PFile* self, const LCHAR* mode); 67 PORTABLE_API ESR_ReturnCode PANSIFileCloseImpl(PFile* self); 72 PORTABLE_API ESR_ReturnCode PANSIFileReadImpl(PFile* self, void* buffer, size_t size, size_t* count); 77 PORTABLE_API ESR_ReturnCode PANSIFileWriteImpl(PFile* self, void* buffer, size_t size, size_t* count); 82 PORTABLE_API ESR_ReturnCode PANSIFileFlushImpl(PFile* self); 87 PORTABLE_API ESR_ReturnCode PANSIFileSeekImpl(PFile* self, long offset, int origin); 92 PORTABLE_API ESR_ReturnCode PANSIFileGetPositionImpl(PFile* self, size_t* position); 97 PORTABLE_API ESR_ReturnCode PANSIFileIsOpenImpl(PFile* self, ESR_BOOL* isOpen) [all...] |
ArrayListImpl.h | 68 PORTABLE_API ESR_ReturnCode ArrayList_Add(ArrayList* self, void* element); 73 PORTABLE_API ESR_ReturnCode ArrayList_InsertAt(ArrayList* self, size_t index, void* element); 78 PORTABLE_API ESR_ReturnCode ArrayList_Remove(ArrayList* self, const void* element); 83 PORTABLE_API ESR_ReturnCode ArrayList_RemoveAtIndex(ArrayList* self, size_t index); 88 PORTABLE_API ESR_ReturnCode ArrayList_RemoveAll(ArrayList* self); 93 PORTABLE_API ESR_ReturnCode ArrayList_Contains(ArrayList* self, const void* element, ESR_BOOL* exists); 98 PORTABLE_API ESR_ReturnCode ArrayList_Get(ArrayList* self, size_t index, void** element); 103 PORTABLE_API ESR_ReturnCode ArrayList_Set(ArrayList* self, size_t index, void* element); 108 PORTABLE_API ESR_ReturnCode ArrayList_GetSize(ArrayList* self, size_t* size); 113 PORTABLE_API ESR_ReturnCode ArrayList_Clone(ArrayList* self, ArrayList* clone) [all...] |
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
standalone.py | 110 def __init__(self, request_handler): 116 self._request_handler = request_handler 118 def get_local_addr(self): 120 return (self._request_handler.server.server_name, 121 self._request_handler.server.server_port) 124 def get_remote_addr(self): 129 return self._request_handler.client_address 132 def write(self, data): 134 return self._request_handler.wfile.write(data) 136 def read(self, length) [all...] |
msgutil.py | 149 def __init__(self, request, onmessage=None): 160 threading.Thread.__init__(self) 161 self._request = request 162 self._queue = Queue.Queue() 163 self._onmessage = onmessage 164 self._stop_requested = False 165 self.setDaemon(True) 166 self.start() 168 def run(self): 169 while not self._stop_requested [all...] |
/external/srec/shared/src/ |
IntArrayListImpl.c | 29 ESR_ReturnCode IntArrayListCreate(IntArrayList** self) 33 if (self == NULL) 55 *self = (IntArrayList*) impl; 59 ESR_ReturnCode IntArrayListImport(int* value, IntArrayList** self) 64 if (self == NULL) 66 CHK(rc, IntArrayListCreate(self)); 67 impl = (IntArrayListImpl*) self; 74 ESR_ReturnCode IntArrayList_Add(IntArrayList* self, const int element) 76 IntArrayListImpl* impl = (IntArrayListImpl*) self; 92 ESR_ReturnCode IntArrayList_Remove(IntArrayList* self, const int element [all...] |
HashMapImpl.c | 30 HashMap **self) 35 if (self == NULL) 60 *self = (HashMap*) impl; 64 ESR_ReturnCode HashMapCreate(HashMap** self) 66 return HashMapCreate_Internal(NULL, self); 69 ESR_ReturnCode HashMapCreateBins(size_t nbBins, HashMap** self) 76 return HashMapCreate_Internal(&hashArgs, self); 79 ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value) 81 HashMapImpl* impl = (HashMapImpl*) self; 129 ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key [all...] |
/external/webkit/WebKitTools/Scripts/ |
webkit-patch | 56 def __init__(self): 57 MultiCommandTool.__init__(self) 59 self.bugs = Bugzilla() 60 self.buildbot = BuildBot() 61 self.executive = Executive() 62 self.user = User() 63 self._scm = None 64 self.status_server = StatusServer() 66 def scm(self): 69 if not self._scm [all...] |
/external/v8/tools/ |
jsmin.py | 53 def __init__(self): 57 self.seen_identifiers = {"do": True, "in": True} 58 self.identifier_counter = 0 59 self.in_comment = False 60 self.map = {} 61 self.nesting = 0 63 def LookAtIdentifier(self, m): 74 self.seen_identifiers[identifier] = True 76 def Push(self): 78 self.nesting += [all...] |
/external/gtest/test/ |
gtest_help_test.py | 93 def TestHelpFlag(self, flag): 98 self.assertEquals(0, exit_code) 99 self.assert_(HELP_REGEX.search(output), output) 101 self.assert_(CATCH_EXCEPTIONS_FLAG in output, output) 103 self.assert_(CATCH_EXCEPTIONS_FLAG not in output, output) 105 def testPrintsHelpWithFullFlag(self): 106 self.TestHelpFlag('--help') 108 def testPrintsHelpWithShortFlag(self): 109 self.TestHelpFlag('-h') 111 def testPrintsHelpWithQuestionFlag(self) [all...] |
/external/srec/srec/AcousticModels/include/ |
SR_AcousticModelsImpl.h | 49 * @param self SR_AcousticModels handle 52 ESR_ReturnCode(*setupPattern)(SR_AcousticModels* self, SR_Recognizer* recognizer); 57 * @param self SR_AcousticModels handle 59 ESR_ReturnCode(*unsetupPattern)(SR_AcousticModels* self); 98 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_Destroy(SR_AcousticModels* self); 102 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_Save(SR_AcousticModels* self, 107 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_SetParameter(SR_AcousticModels* self, 113 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_GetParameter(SR_AcousticModels* self, 119 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_GetCount(SR_AcousticModels* self, 124 SREC_ACOUSTICMODELS_API ESR_ReturnCode SR_AcousticModels_GetID(SR_AcousticModels* self, [all...] |
/external/srec/srec/Semproc/include/ |
SR_SemanticProcessor.h | 47 ESR_ReturnCode(*checkParse)(struct SR_SemanticProcessor_t* self, SR_SemanticGraph* semgraph, const LCHAR* transcription, SR_SemanticResult** result, size_t* resultCount); 55 ESR_ReturnCode(*checkParseByWordID)(struct SR_SemanticProcessor_t* self, SR_SemanticGraph* semgraph, wordID* wordIDs, SR_SemanticResult** result, size_t* resultCount); 59 * @param self SR_SemanticProcessor handle 61 ESR_ReturnCode(*destroy)(struct SR_SemanticProcessor_t* self); 66 * @param self SR_SemanticProcessor handle 70 ESR_ReturnCode(*setParam)(struct SR_SemanticProcessor_t* self, const LCHAR* key, const LCHAR* value); 75 * @param self SR_SemanticProcessor handle 77 ESR_ReturnCode(*flush)(struct SR_SemanticProcessor_t* self); 86 * @param self SR_SemanticProcessor handle 88 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticProcessorCreate(SR_SemanticProcessor** self); [all...] |
/external/webkit/WebKit/mac/Plugins/Hosted/ |
WebTextInputWindowController.m | 47 [[NSNotificationCenter defaultCenter] removeObserver:self]; 56 self = [super initWithContentRect:NSZeroRect styleMask:WKGetInputPanelWindowStyle() backing:NSBackingStoreBuffered defer:YES]; 57 if (!self) 64 [self setFrame:frame display:NO]; 66 _inputTextView = [[NSTextView alloc] initWithFrame:[self.contentView frame]]; 69 NSScrollView* scrollView = [[NSScrollView alloc] initWithFrame:[self.contentView frame]]; 71 self.contentView = scrollView; 74 [self setFloatingPanel:YES]; 76 [[NSNotificationCenter defaultCenter] addObserver:self 81 return self; [all...] |
/external/webkit/WebKit/mac/Misc/ |
WebNSEventExtras.m | 35 int type = [self type]; 39 NSString *chars = [self charactersIgnoringModifiers]; 54 return [self _web_isKeyEvent:deleteKey] || [self _web_isKeyEvent:deleteForwardKey]; 60 return [self _web_isKeyEvent:escapeKey]; 65 return ([self modifierFlags] & NSAlternateKeyMask) && [self _web_isTabKeyEvent]; 72 return [self _web_isKeyEvent:enterKey] || [self _web_isKeyEvent:returnKey]; 79 return [self _web_isKeyEvent:tabKey] || [self _web_isKeyEvent:shiftTabKey] [all...] |