Searched refs:function (Results 76 - 100 of 1935) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dgen-dwarf.s16 .type foo, @function
H A Dsymbol-names.s7 .type foo?bar, @function
H A Dcomdat-reloc.s5 .type hello,@function
11 .type world,@function
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DBuiltInFunctionEmulator.cpp13 // we use macros here instead of function definitions to work around more GLSL
282 TBuiltInFunction function = IdentifyFunction(op, param); local
283 return SetFunctionCalled(function);
289 TBuiltInFunction function = IdentifyFunction(op, param1, param2); local
290 return SetFunctionCalled(function);
294 BuiltInFunctionEmulator::TBuiltInFunction function) {
295 if (function == TFunctionUnknown || mFunctionMask[function] == false)
298 if (mFunctions[i] == function)
301 mFunctions.push_back(function);
293 SetFunctionCalled( BuiltInFunctionEmulator::TBuiltInFunction function) argument
332 unsigned int function = TFunctionUnknown; local
364 unsigned int function = TFunctionUnknown; local
[all...]
/external/chromium_org/tools/gn/
H A Dfunctions_target.cc29 const FunctionCallNode* function,
33 if (!EnsureNotProcessingImport(function, scope, err) ||
34 !EnsureNotProcessingBuildConfig(function, scope, err))
37 if (!FillTargetBlockScope(scope, function, target_type, block,
45 TargetGenerator::GenerateTarget(&block_scope, function, args,
147 const FunctionCallNode* function,
151 return ExecuteGenericTarget(functions::kAction, scope, function, args,
227 const FunctionCallNode* function,
231 return ExecuteGenericTarget(functions::kActionForEach, scope, function, args,
279 Value RunCopy(const FunctionCallNode* function, argument
27 ExecuteGenericTarget(const char* target_type, Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
146 RunAction(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
226 RunActionForEach(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
305 RunExecutable(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
345 RunGroup(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
374 RunSharedLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
421 RunSourceSet(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
451 RunStaticLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Dfunction_template.cc20 " A template defines a custom name that acts like a function. It\n"
23 " The template() function is used to declare a template. To invoke the\n"
149 const FunctionCallNode* function,
153 // TODO(brettw) determine if the function is built-in and throw an error if
156 *err = Err(function->function(),
166 *err = Err(function, "Duplicate template definition.",
173 scope->AddTemplate(template_name, new Template(scope, function));
148 RunTemplate(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonToken.as54 public function CommonToken(type:int, text:String = null) {
59 public static function createFromStream(input:CharStream, type:int, channel:int, start:int, stop:int):CommonToken {
68 public static function cloneToken(oldToken:Token):CommonToken {
81 public function get type():int {
85 public function set line(line:int):void {
89 public function get text():String {
105 public function set text(text:String):void {
109 public function get line():int {
113 public function get charPositionInLine():int {
117 public function se
[all...]
H A DParser.as37 public function Parser(input:TokenStream, state:RecognizerSharedState = null) {
42 public override function reset():void {
49 protected override function getCurrentInputSymbol(input:IntStream):Object {
53 protected override function getMissingSymbol(input:IntStream,
72 public function set tokenStream(input:TokenStream):void {
78 public function get tokenStream():TokenStream {
82 public override function get sourceName():String {
86 public function set treeAdaptor(adaptor:TreeAdaptor):void {
90 public function get treeAdaptor():TreeAdaptor {
95 public function traceI
[all...]
H A DMismatchedNotSetException.as32 public function MismatchedNotSetException(expecting:BitSet, input:IntStream) {
H A DMismatchedRangeException.as33 public function MismatchedRangeException(a:int, b:int, input:IntStream) {
39 public function toString():String {
H A DMismatchedSetException.as33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
38 public function toString():String {
H A DMismatchedTokenException.as34 public function MismatchedTokenException(expecting:int, input:IntStream) {
39 public function toString():String {
H A DCommonTokenStream.as65 public function CommonTokenStream(tokenSource:TokenSource = null, channel:int = TokenConstants.DEFAULT_CHANNEL) {
71 public function set tokenSource(tokenSource:TokenSource):void {
82 protected function fillBuffer():void {
120 public function consume():void {
130 protected function skipOffTokenChannels(i:int):int {
138 protected function skipOffTokenChannelsReverse(i:int):int {
151 public function setTokenTypeChannel(ttype:int, channel:int):void {
158 public function discardTokenType(ttype:int):void {
165 public function discardOffChannelTokens(discardOffChannelTokens:Boolean):void {
169 public function getToken
[all...]
/external/chromium_org/extensions/browser/
H A Dapi_test_utils.cc63 virtual void OnSendResponse(UIThreadExtensionFunction* function,
87 UIThreadExtensionFunction* function,
92 function, args, context, dispatcher.Pass(), NONE);
96 UIThreadExtensionFunction* function,
101 scoped_refptr<ExtensionFunction> function_owner(function);
102 // Without a callback the function will not generate a result.
103 function->set_has_callback(true);
104 RunFunction(function, args, context, dispatcher.Pass(), flags);
105 EXPECT_TRUE(function->GetError().empty())
106 << "Unexpected error: " << function
86 RunFunctionWithDelegateAndReturnSingleResult( UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context, scoped_ptr<extensions::ExtensionFunctionDispatcher> dispatcher) argument
95 RunFunctionWithDelegateAndReturnSingleResult( UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context, scoped_ptr<extensions::ExtensionFunctionDispatcher> dispatcher, RunFunctionFlags flags) argument
115 RunFunctionAndReturnSingleResult( UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context) argument
122 RunFunctionAndReturnSingleResult( UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context, RunFunctionFlags flags) argument
135 RunFunctionAndReturnError(UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context) argument
141 RunFunctionAndReturnError(UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context, RunFunctionFlags flags) argument
156 RunFunction(UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context) argument
165 RunFunction(UIThreadExtensionFunction* function, const std::string& args, content::BrowserContext* context, scoped_ptr<extensions::ExtensionFunctionDispatcher> dispatcher, RunFunctionFlags flags) argument
177 RunFunction(UIThreadExtensionFunction* function, scoped_ptr<base::ListValue> args, content::BrowserContext* context, scoped_ptr<extensions::ExtensionFunctionDispatcher> dispatcher, RunFunctionFlags flags) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteCardinalityException.as37 public function RewriteCardinalityException(elementDescription:String) {
42 public function getMessage():String {
H A DRewriteEarlyExitException.as33 public function RewriteEarlyExitException(elementDescription:String = null) {
H A DRewriteEmptyStreamException.as32 public function RewriteEmptyStreamException(elementDescription:String) {
H A DRewriteRuleElementStream.as72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
92 public function reset():void {
97 public function add(el:Object):void {
122 public function nextTree():Object {
141 protected function _next():Object {
169 protected function dup(el:Object):Object {
176 protected function toTree(el:Object):Object {
180 public function get hasNext():Boolean {
185 public function get size():int {
196 public function ge
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/github_file_system/
H A Dexpected_read.txt7 chrome.app.runtime.onLaunched.addListener(function() {
/external/chromium_org/remoting/client/plugin/
H A Dpepper_plugin_thread_delegate.cc19 base::TimeDelta delay, void(CDECL function)(void*), void* data) {
20 // It is safe to cast |function| to PP_CompletionCallback_Func,
27 reinterpret_cast<PP_CompletionCallback_Func>(function), data), 0);
18 RunOnPluginThread( base::TimeDelta delay, void(CDECL function)(void*), void* data) argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dmediaengine.cc46 MediaEngineFactory::SetCreateFunction(MediaEngineCreateFunction function) { argument
48 create_function_ = function;
/external/chromium_org/third_party/skia/tools/lua/
H A Dchars-vs-glyphs.lua3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
21 function sk_scrape_accumulate(t)
31 function sk_scrape_summarize()
H A Ddumpops.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
25 function sk_scrape_accumulate(t)
33 function sk_scrape_summarize() end
/external/llvm/test/MC/Mips/
H A Delf_st_other.s5 .type f1, @function
16 .type f2, @function
/external/skia/tools/lua/
H A Dchars-vs-glyphs.lua3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
21 function sk_scrape_accumulate(t)
31 function sk_scrape_summarize()

Completed in 1666 milliseconds

1234567891011>>