Searched refs:method (Results 376 - 400 of 1813) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/glsl/
H A Dhir_field_selection.cpp74 /* Handle "method calls" in GLSL 1.20 - namely, array.length() */
81 const char *method; local
82 method = call->subexpressions[0]->primary_expression.identifier;
84 if (op->type->is_array() && strcmp(method, "length") == 0) {
86 _mesa_glsl_error(&loc, state, "length method takes no arguments.");
93 _mesa_glsl_error(&loc, state, "Unknown method: `%s'.", method);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_context.h61 /** Used to signal when transitioning from one kind of drawing method
130 vbo_draw_method(struct vbo_context *vbo, enum draw_method method) argument
132 if (vbo->last_draw_method != method) {
135 switch (method) {
150 vbo->last_draw_method = method;
/external/nist-sip/java/javax/sip/header/
H A DRAckHeader.java10 void setMethod(String method) throws ParseException; argument
/external/openssl/crypto/x509v3/
H A Dv3_bcons.c67 static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, BASIC_CONSTRAINTS *bcons, STACK_OF(CONF_VALUE) *extlist);
68 static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
89 static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
97 static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method,
H A Dv3_extku.c66 static void *v2i_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method,
69 static STACK_OF(CONF_VALUE) *i2v_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method,
102 i2v_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method, void *a,
117 static void *v2i_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method,
H A Dv3_pcons.c68 i2v_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *bcons,
70 static void *v2i_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method,
94 i2v_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method, void *a,
105 static void *v2i_POLICY_CONSTRAINTS(const X509V3_EXT_METHOD *method,
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DMoreZeroFrame.java78 public void additionalVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor) argument
82 additionalVariables[index].accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
95 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
97 stackMapFrameVisitor.visitMoreZeroFrame(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionCounter.java52 Method method,
51 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
/external/proguard/src/proguard/obfuscate/
H A DNameMarker.java130 // Small utility method.
153 * Ensures the name of the given method name will be kept.
155 private void keepMethodName(Clazz clazz, Method method) argument
157 String name = method.getName(clazz);
162 MemberObfuscator.setFixedNewMemberName(method,
163 method.getName(clazz));
/external/proguard/src/proguard/optimize/info/
H A DNonPrivateMemberMarker.java51 // Explicitly mark the <clinit> method.
56 // Explicitly mark the parameterless <init> method.
152 private static void markCanNotBeMadePrivate(Method method) argument
154 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
163 * Returns whether the given method can be made private.
165 public static boolean canBeMadePrivate(Method method) argument
167 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLinkMovementMethodTest.java3 import android.text.method.LinkMovementMethod;
/external/skia/src/core/
H A DSkBitmapScaler.h25 // They are translated into an algorithm-specific method that depends
38 // Note that the underlying resizing method may be determined
84 ResizeMethod method,
/external/smack/src/org/jivesoftware/smack/compression/
H A DJava7ZlibInputOutputStream.java29 * This class provides XMPP "zlib" compression with the help of the Deflater class of the Java API. Note that the method
35 * required deflate() method</a>
39 private final static Method method; field in class:Java7ZlibInputOutputStream
50 method = m;
51 supported = (method != null);
111 count = (Integer) method.invoke(def, buf, 0, buf.length, 2);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DANTLRFileStream.js15 var method;
17 method = "loadFileUsingJava";
24 var data = this[method](fileName, encoding);
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContentsIoThreadClient.java49 boolean hasUserGesture, String method, String[] requestHeaderNames,
56 params.method = method;
48 shouldInterceptRequest(String url, boolean isMainFrame, boolean hasUserGesture, String method, String[] requestHeaderNames, String[] requestHeaderValues) argument
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.cc17 const char kMethodParam[] = "method";
31 DevToolsProtocol::Message::Message(const std::string& method, argument
33 : method_(method),
38 const std::string& method,
40 : Message(method, params),
76 DevToolsProtocol::Notification::Notification(const std::string& method, argument
78 : Message(method, params) {
129 std::string method;
130 if (!command_dict->GetString(kMethodParam, &method))
135 return new Command(id, method, param
37 Command(int id, const std::string& method, base::DictionaryValue* params) argument
148 std::string method; local
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_manager_helper.cc42 const std::string& prefix, const std::string& method,
45 DCHECK(!prefix.empty() && !method.empty() &&
48 prefix.c_str(), method.c_str(),
41 ComposeUrl( const std::string& prefix, const std::string& method, const std::string& client_name, const std::string& version, const std::string& additional_query) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dframe_tracker.cc41 const std::string& method,
43 if (method == "Runtime.executionContextCreated") {
61 } else if (method == "Page.frameNavigated") {
40 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Djavascript_dialog_manager.cc58 const std::string& method,
60 if (method == "Page.javascriptDialogOpening") {
66 } else if (method == "Page.javascriptDialogClosing") {
57 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Dstub_devtools_client.cc28 Status StubDevToolsClient::SendCommand(const std::string& method, argument
31 return SendCommandAndGetResult(method, params, &result);
35 const std::string& method,
34 SendCommandAndGetResult( const std::string& method, const base::DictionaryValue& params, scoped_ptr<base::DictionaryValue>* result) argument
/external/chromium_org/remoting/webapp/
H A Dxhr_proxy.js45 method, url, async, user, password) {
49 this.sandbox_ipc.method = method;
/external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
H A DGAEChannelClient.m126 NSString* method = queuedMessageDict[@"type"];
127 NSAssert(method, @"Missing method: %@", queuedMessageDict);
130 if ([method isEqualToString:@"onopen"]) {
132 } else if ([method isEqualToString:@"onmessage"]) {
136 } else if ([method isEqualToString:@"onclose"]) {
138 } else if ([method isEqualToString:@"onerror"]) {
/external/doclava/src/com/google/doclava/
H A DSinceTagger.java49 * Specifies the apicheck XML file and the API version it holds. Calls to this method should be
203 for (MethodInfo method : doc.methods()) {
206 if (method.isDeprecated() && method.getDeprecatedSince() == null) {
207 // Find matching method from API spec
208 if (spec.allMethods().containsKey(method.getHashableName())) {
209 MethodInfo specMethod = spec.allMethods().get(method.getHashableName());
211 method.setDeprecatedSince(versionName);
216 if (method.getSince() != null) {
221 if (superclass.allMethods().containsKey(method
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAddInitTransformer.java36 public AddInitTransformer(Method method) { argument
37 info = ReflectUtils.getMethodInfo(method);
43 throw new IllegalArgumentException(method + " illegal signature");
/external/proguard/src/proguard/classfile/visitor/
H A DMethodImplementationTraveler.java48 * @param visitSuperMethods specifies whether to visit the method in
50 * @param visitInterfaceMethods specifies whether to visit the method in
52 * @param visitOverridingMethods specifies whether to visit the method in
121 private boolean isSpecial(Clazz clazz, Method method) argument
123 return (method.getAccessFlags() &
126 method.getName(clazz).equals(ClassConstants.INTERNAL_METHOD_NAME_INIT);

Completed in 429 milliseconds

<<11121314151617181920>>