/prebuilts/ndk/7/sources/cxx-stl/stlport/ |
README.android | 5 * Do not use linux float functions in num_get_float.cpp as Android does not
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/ |
README.android | 5 * Do not use linux float functions in num_get_float.cpp as Android does not
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/ |
README.android | 5 * Do not use linux float functions in num_get_float.cpp as Android does not
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/ |
fix_parrot.py | 6 Change functions named 'parrot' to 'cheese'.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/ |
fix_parrot.py | 6 Change functions named 'parrot' to 'cheese'.
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
codec.h | 15 * and decoder functions. 49 /* initialization functions */ 65 /* transform functions */ 85 /* filterbank functions */ 130 /* TODO(kma): Remove the following functions into individual header files. */ 132 /* Internal functions in both C and ARM Neon versions */ 162 /* Function pointers associated with the above functions. */
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
FunctionTable.java | 24 import org.apache.xpath.functions.Function; 150 * The function table contains customized functions 155 * Table of function name to function ID associations for customized functions 160 * Number of built in functions. Be sure to update this as 161 * built-in functions are added. 166 * Number of built-in functions that may be added. 178 m_functions[FUNC_CURRENT] = org.apache.xpath.functions.FuncCurrent.class; 179 m_functions[FUNC_LAST] = org.apache.xpath.functions.FuncLast.class; 180 m_functions[FUNC_POSITION] = org.apache.xpath.functions.FuncPosition.class; 181 m_functions[FUNC_COUNT] = org.apache.xpath.functions.FuncCount.class [all...] |
/external/guava/guava/src/com/google/common/hash/ |
AbstractCompositeHashFunction.java | 8 * An abstract composition of multiple hash functions. {@linkplain #newHasher()} delegates to the 9 * {@code Hasher} objects of the delegate hash functions, and in the end, they are used by 15 final HashFunction[] functions; field in class:AbstractCompositeHashFunction 17 AbstractCompositeHashFunction(HashFunction... functions) { 18 this.functions = functions; 22 * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them 24 * the hashers are the same order as the functions given to the constructor. 31 final Hasher[] hashers = new Hasher[functions.length]; 33 hashers[i] = functions[i].newHasher() [all...] |
/external/chromium_org/content/child/npapi/ |
plugin_host.h | 19 // The Plugin Host implements the NPN_xxx functions for NPAPI plugins. 20 // These are the functions exposed from the Plugin Host for use 24 // necessary, but since the callback functions are all global C 25 // functions, there is really no point in having per-instance PluginHosts. 32 // The table of functions provided to the plugin.
|
/external/chromium_org/media/base/ |
serial_runner.h | 23 // Runs a series of bound functions accepting Closures or PipelineStatusCB. 31 // Serial queue of bound functions to run. 49 // Executes the bound functions in series, executing |done_cb| when finished. 51 // All bound functions are executed on the thread that Run() is called on, 62 // functions, including |done_cb|.
|
/external/tinyxml/docs/ |
functions_rela.html | 3 <title>TinyXml: Class Members - Related Functions</title> 7 <div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindexHL" href="functions.html">Class Members</a></div> 8 <div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindex" href="functions_func.html">Functions</a> | <a class="qindex" href="functions_vars.html">Variables</a> | <a class="qindex" href="functions_enum.html">Enumerations</a> | <a class="qindexHL" href="functions_rela.html">Related Functions</a></div>
|
/frameworks/base/services/java/com/android/server/usb/ |
UsbDeviceManager.java | 76 "/sys/class/android_usb/android0/functions"; 97 // We often get rapid connect/disconnect events when enabling USB functions, 223 String functions = null; local 226 functions = UsbManager.USB_FUNCTION_ACCESSORY + "," 229 functions = UsbManager.USB_FUNCTION_ACCESSORY; 231 functions = UsbManager.USB_FUNCTION_AUDIO_SOURCE; 234 if (functions != null) { 236 setCurrentFunctions(functions, false); 263 private static String addFunction(String functions, String function) { 264 if ("none".equals(functions)) { [all...] |
/prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/ |
jsilver-1.0.0-sources.jar | |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_schema_graph_test.py | 32 'functions': [ 69 empty_graph.Lookup('tabs', 'functions', 'get', 72 empty_graph.Lookup('tabs', 'functions', 'get', 92 api_schema_graph.Lookup('tabs', 'functions', 'get', 95 api_schema_graph.Lookup('tabs', 'functions', 'get', 98 api_schema_graph.Lookup('tabs', 'functions', 'get', 124 api_schema_graph.Lookup('tabs', 'functions', 'getById', 127 api_schema_graph.Lookup('tabs', 'functions', 'get', 154 'functions': { 179 difference.Lookup('tabs', 'functions', 'get' [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_driver.c | 149 nouveau_driver_functions_init(struct dd_function_table *functions) 151 functions->GetString = nouveau_get_string; 152 functions->Flush = nouveau_flush; 153 functions->Finish = nouveau_finish; 154 functions->Clear = nouveau_clear; 155 functions->DrawPixels = _mesa_meta_DrawPixels; 156 functions->CopyPixels = _mesa_meta_CopyPixels; 157 functions->Bitmap = _mesa_meta_Bitmap; 159 functions->BlitFramebuffer = _mesa_meta_BlitFramebuffer;
|
/external/clang/test/CXX/class.derived/class.virtual/ |
p3-0x.cpp | 10 virtual void f(long) override; // expected-error {{'f' marked 'override' but does not override any member functions}} 42 virtual void f(Args...) override; // expected-error {{'f' marked 'override' but does not override any member functions}} 71 void g() override; // expected-error {{only virtual member functions can be marked 'override'}} 72 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 85 void g(T...) override; // expected-error {{only virtual member functions can be marked 'override'}} 87 void i(T...) final; // expected-error {{only virtual member functions can be marked 'final'}} 97 void g() override; // expected-error {{only virtual member functions can be marked 'override'}} 98 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 121 // expected-error@-13 {{only virtual member functions can be marked 'override'}}
|
/external/libnfc-nxp/src/ |
phLlcNfc_Timer.h | 75 /********************** Callback functions **************************/ 77 /******************* End of Callback functions **********************/ 87 * \brief LLC timer functions \b Timer Init function 105 * \brief LLC timer functions \b Timer UnInit function 123 * \brief LLC timer functions \b Create timer function 135 * \brief LLC timer functions \b Start timer function 156 * \brief LLC timer functions \b Stop timer function 175 * \brief LLC timer functions \b Stop timer function 190 * \brief LLC timer functions \b Delete timer function
|
/external/llvm/test/DebugInfo/ |
dwarfdump-test.test | 2 RUN: --address=0x400559 --functions | FileCheck %s -check-prefix MAIN 4 RUN: --address=0x400528 --functions | FileCheck %s -check-prefix FUNCTION 6 RUN: --address=0x400586 --functions | FileCheck %s -check-prefix CTOR_WITH_SPEC 8 RUN: --address=0x4004e8 --functions | FileCheck %s -check-prefix MANY_CU_1 10 RUN: --address=0x4004f4 --functions | FileCheck %s -check-prefix MANY_CU_2 12 RUN: --address=0x640 --functions | FileCheck %s -check-prefix ABS_ORIGIN_1 14 RUN: --address=0x633 --functions | FileCheck %s -check-prefix INCLUDE_TEST_1 16 RUN: --address=0x62d --functions | FileCheck %s -check-prefix INCLUDE_TEST_2 18 RUN: --address=0x62c --functions \
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_driver.c | 149 nouveau_driver_functions_init(struct dd_function_table *functions) 151 functions->GetString = nouveau_get_string; 152 functions->Flush = nouveau_flush; 153 functions->Finish = nouveau_finish; 154 functions->Clear = nouveau_clear; 155 functions->DrawPixels = _mesa_meta_DrawPixels; 156 functions->CopyPixels = _mesa_meta_CopyPixels; 157 functions->Bitmap = _mesa_meta_Bitmap; 159 functions->BlitFramebuffer = _mesa_meta_BlitFramebuffer;
|
/libnativehelper/include/nativehelper/ |
JNIHelp.h | 18 * JNI helper functions. 123 * For C++ code, we provide inlines that map to the C functions. g++ always 128 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods); 132 return jniThrowException(&env->functions, className, msg); 144 return jniThrowExceptionFmt(&env->functions, className, fmt, args); 149 return jniThrowNullPointerException(&env->functions, msg); 153 return jniThrowRuntimeException(&env->functions, msg); 157 return jniThrowIOException(&env->functions, errnum); 161 return jniCreateFileDescriptor(&env->functions, fd); 165 return jniGetFDFromFileDescriptor(&env->functions, fileDescriptor) [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
ppapi_generator_test.py | 154 self.namespace.functions['function1'])) 156 self.namespace.functions['function2'])) 158 self.namespace.functions['function3'])) 160 self.namespace.functions['function4'])) 162 self.namespace.functions['function5'])) 164 self.namespace.functions['function6'])) 168 self.namespace.functions['function1'])) 170 self.namespace.functions['function2'])) 172 self.namespace.functions['function3'])) 174 self.namespace.functions['function4']) [all...] |
/external/compiler-rt/make/ |
lib_info.mk | 9 # CommonFunctions - The list of generic functions available. 10 # ArchFunctions.<arch> - The list of functions commonly available for 12 # functions. 36 # Compute common arch functions. 43 # Compute arch only functions. 56 CC CFLAGS LDFLAGS FUNCTIONS OPTIMIZED \
|
/external/compiler-rt/make/platform/ |
darwin_fat.mk | 47 FUNCTIONS.i386 := $(CommonFunctions) $(ArchFunctions.i386) 48 FUNCTIONS.ppc := $(CommonFunctions) $(ArchFunctions.ppc) 49 FUNCTIONS.x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64) 50 FUNCTIONS.armv5 := $(CommonFunctions) $(ArchFunctions.armv5) 51 FUNCTIONS.armv6 := $(CommonFunctions) $(ArchFunctions.armv6) 52 FUNCTIONS.armv7 := $(CommonFunctions) $(ArchFunctions.armv7)
|
/external/libcap-ng/libcap-ng-0.7/src/ |
cap-ng.h | 50 // These functions manipulate process capabilities 59 // These functions apply the capabilities previously setup to a process 64 // These functions are used for file based capabilities 68 // These functions check capability bits 72 // These functions printout capabilities 76 // These functions convert between numeric and text string
|
/frameworks/native/opengl/tools/glgen/src/ |
Jsr239CodeEmitter.java | 22 * <p> The Java interface will have Buffer and array variants for functions that 39 * @param java10InterfaceStream the PrintStream to which to emit the Java interface for GL 1.0 functions 40 * @param java10ExtInterfaceStream the PrintStream to which to emit the Java interface for GL 1.0 extension functions 41 * @param java11InterfaceStream the PrintStream to which to emit the Java interface for GL 1.1 functions 42 * @param java11ExtInterfaceStream the PrintStream to which to emit the Java interface for GL 1.1 Extension functions 43 * @param java11ExtPackInterfaceStream the PrintStream to which to emit the Java interface for GL 1.1 Extension Pack functions
|