/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...] |
/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, 218 String functions = null; local 221 functions = UsbManager.USB_FUNCTION_ACCESSORY + "," 224 functions = UsbManager.USB_FUNCTION_ACCESSORY; 226 functions = UsbManager.USB_FUNCTION_AUDIO_SOURCE; 229 if (functions != null) { 230 setCurrentFunctions(functions, false); 257 private static String addFunction(String functions, String function) { 258 if ("none".equals(functions)) { 561 String[] functions = mCurrentFunctions.split(","); local 621 String functions = (String)msg.obj; local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
JsValidateUnquotedLiteral.java | 17 package com.google.clearsilver.jsilver.functions.escape; 19 import com.google.clearsilver.jsilver.functions.TextFilter;
|
UrlEscapeFunction.java | 17 package com.google.clearsilver.jsilver.functions.escape; 19 import com.google.clearsilver.jsilver.functions.TextFilter;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/ |
AddFunction.java | 17 package com.google.clearsilver.jsilver.functions.operators; 20 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
CrcFunction.java | 17 package com.google.clearsilver.jsilver.functions.string; 19 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
FirstFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure; 20 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
LastFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure; 20 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
NameFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure; 20 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
SubcountFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure; 20 import com.google.clearsilver.jsilver.functions.NonEscapingFunction;
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FuncBoolean.java | 21 package org.apache.xpath.functions;
|
FuncCeiling.java | 21 package org.apache.xpath.functions;
|
FuncFalse.java | 21 package org.apache.xpath.functions;
|
FuncFloor.java | 21 package org.apache.xpath.functions;
|
FuncNot.java | 21 package org.apache.xpath.functions;
|
FuncNumber.java | 21 package org.apache.xpath.functions;
|
FuncString.java | 21 package org.apache.xpath.functions;
|
FuncStringLength.java | 21 package org.apache.xpath.functions;
|
FuncTrue.java | 21 package org.apache.xpath.functions;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
CssUrlValidateFunction.java | 17 package com.google.clearsilver.jsilver.functions.html;
|
/frameworks/compile/mclinker/ |
mcld-device-build.mk | 9 -finline-functions \ 10 -fno-inline-functions-called-once \
|
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
ExpressionVisitor.java | 26 import org.apache.xpath.functions.FuncExtFunction; 27 import org.apache.xpath.functions.FuncExtFunctionAvailable; 28 import org.apache.xpath.functions.Function; 33 * visits the XPath expression. For any extension functions it 37 * This mechanism is required to locate extension functions
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
FunctionRegistry.java | 17 package com.google.clearsilver.jsilver.functions; 29 * Simple implementation of FunctionFinder that you can register your own functions with. 35 protected Map<String, Function> functions = new HashMap<String, Function>(); field in class:FunctionRegistry 44 Function function = functions.get(name); 70 Function function = functions.get(name); 78 * Subclasses can override this to register their own functions. 86 functions.put(name, function);
|
/external/valgrind/main/massif/tests/ |
basic2.post.exp | 39 00.00% (0B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 45 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 52 98.04% (7,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 59 98.04% (10,800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 66 98.04% (14,400B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 73 98.04% (11,200B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 80 98.04% (8,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 87 98.04% (4,800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 94 98.04% (1,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
|
/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 \
|